.product-details-dropdown {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 20px 0;
    background: #fff;
    overflow: hidden; /* Importante para as animações */
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background: #34c91a78;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    user-select: none; /* Evita seleção de texto ao clicar */
}

.dropdown-header:hover {
    background: #e9ecef;
}

.dropdown-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.dropdown-toggle {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: #666;
}

/* Remove esta classe pois vamos controlar via JS */
/* .product-details-dropdown.active .dropdown-toggle {
    transform: rotate(180deg);
} */

.dropdown-content {
    display: none;
    padding: 0;
}

/* Remove esta também */
/* .product-details-dropdown.active .dropdown-content {
    display: block;
} */

.detail-section {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px;
}

.detail-section:last-child {
    border-bottom: none;
}

.detail-section h4 {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #444;
    font-weight: 600;
}

.detail-content {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.detail-content p:last-child {
    margin-bottom: 0;
}

/* Resto do CSS permanece igual */
.shop_attributes {
    width: 100%;
    border-collapse: collapse;
}

.shop_attributes th,
.shop_attributes td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.shop_attributes th {
    width: 30%;
    font-weight: 600;
    background: #f9f9f9;
}

.single-review {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.single-review:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.star-rating {
    font-size: 14px;
}

.review-content {
    font-style: italic;
    color: #555;
}

@media (max-width: 768px) {
    .dropdown-header {
        padding: 12px 15px;
    }
    
    .dropdown-title {
        font-size: 16px;
    }
    
    .detail-section {
        padding: 15px;
    }
    
    .review-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}