/* Affiliate Product Display Styles */
.affiliate-product {
    margin: 15px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.affiliate-product-inner {
    text-align: center;
}

.affiliate-product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f8f8;
    margin: 0 auto 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.affiliate-product-image img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.affiliate-product-title {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.affiliate-product-title a {
    text-decoration: none;
    color: #333;
}

.affiliate-product-price {
    font-size: 16px;
    font-weight: bold;
    color: #B12704;
    margin: 8px 0;
}

.affiliate-product-button {
    margin-top: 10px;
}

.affiliate-button {
    display: inline-block;
    background: #FFA41C;
    color: #000 !important;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    font-size: 13px;
    border: 1px solid #FF8F00;
    transition: all 0.3s ease;
}

.affiliate-button:hover {
    background: #FA8900;
}

/* Loading state */
.apd-track-click.loading {
    pointer-events: none;
    opacity: 0.7;
}