/* Best Seller Badge */
.best-seller-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6b6b;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

/* Product Accordion Styles */
.woocommerce-tabs.accordion {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    background: #f8f8f8;
    padding: 15px 20px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background: #e8e8e8;
}

.accordion-header.active {
    background: #612d0f;
    color: white;
}

.accordion-header h3 {
    margin: 0;
    font-size: 16px;
}

.accordion-header img {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.accordion-header.active img {
    transform: rotate(90deg);
}

.accordion-content {
    padding: 20px;
    display: none;
    border-bottom: 1px solid #ddd;
}

.accordion-content:last-child {
    border-bottom: none;
}

/* Short Description Styles */
.astra-short-description {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    line-height: 1.5;
} 