* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.affiliate-products {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
    align-items: center;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-image-container {
    flex: 0 0 30%;
    max-width: 220px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
}

.product-image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.03);
}

.product-content {
    flex: 1 1 70%;
    padding: 15px;
}

.product-tema {
    display: inline-block;
    background: #00BCD4;
    color: white;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 12px;
    margin-right: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

.product-codigo {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 12px;
}

.product-title {
    margin: 10px 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-title a:hover {
    color: #F57C00;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: #B12704;
    margin: 8px 0;
}

.amazon-button {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: none;
    cursor: pointer;
}

.amazon-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.amazon-button:active {
    transform: translateY(0);
}

.product-disclaimer {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.disclaimer-preco {
    font-size: 12px;
    color: #999;
    font-style: italic;
    margin: 5px 0;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.disclaimer-preco:hover {
    color: #666;
}

.divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 15px 0;
    border: none;
}

@media (max-width: 600px) {
    .product-card {
        flex-direction: column;
        padding: 15px;
    }

    .product-image-container {
        flex: 0 0 auto;
        width: 100%;
        max-width: 200px;
        margin: 0 auto 15px;
        min-height: 120px;
    }

    .product-content {
        padding: 0;
        width: 100%;
    }

    .product-title {
        font-size: 16px;
    }

    .product-price {
        font-size: 20px;
    }

    .amazon-button {
        width: 100%;
        text-align: center;
    }

    .disclaimer-preco {
        font-size: 11px;
    }
}