/* Premium Styling for Vrajana Variant Buttons */
.variant-btn {
    font-size: 13px !important;
    border: 1px solid #ddd !important;
    padding: 5px 15px !important;
    border-radius: 4px !important;
    background: #fff !important;
    color: #111 !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
    font-weight: 500 !important;
}
.variant-btn:hover {
    border-color: var(--primary, #111) !important;
    background: #fdfdfd !important;
}
.variant-btn.active {
    background-color: var(--primary, #111) !important;
    color: #fff !important;
    border-color: var(--primary, #111) !important;
    font-weight: 600 !important;
}
.variant-btn:disabled {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
    background: #f5f5f5 !important;
    color: #999 !important;
    border-color: #eee !important;
}

/* High-Converting Bundle Box CTA Styles */
#addBundleBtn {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%) !important;
    color: #101010 !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    border-radius: 6px !important;
    height: 42px !important;
    line-height: 42px !important;
    padding: 0 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.25) !important;
    transition: all 0.3s ease-in-out !important;
}

#addBundleBtn:hover {
    background: linear-gradient(135deg, #FFD54F 0%, #FFA726 100%) !important;
    box-shadow: 0 6px 16px rgba(255, 152, 0, 0.35) !important;
    transform: translateY(-2px) !important;
}

#addBundleBtn.added-state {
    background: #E8F5E9 !important;
    color: #2E7D32 !important;
    border: 1px solid #C8E6C9 !important;
    border-radius: 6px !important;
    box-shadow: none !important;
}

#addBundleBtn.added-state:hover {
    background: #C8E6C9 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1) !important;
}

/* Volume Discount Style Rules */
.bulk-pricing-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.bulk-pricing-card .bulk-header-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.bulk-pricing-card .bulk-icon-box {
    background: rgba(255, 156, 0, 0.08); 
    color: #FF9C00; 
    width: 28px; 
    height: 28px; 
    border-radius: 6px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-right: 10px;
    font-size: 12px;
}
.bulk-pricing-card .bulk-title {
    font-weight: 700; 
    color: #1C1C1C; 
    font-size: 14px;
    margin-bottom: 0;
}
.bulk-pricing-table thead th {
    color: #9CA3AF;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 8px;
    letter-spacing: 0.5px;
}
.bulk-pricing-table tbody tr {
    transition: all 0.2s ease; 
    cursor: pointer; 
    border-bottom: 1px solid #F9FAFB;
}
.bulk-pricing-table tbody tr:hover {
    background-color: #fafafa;
}
.bulk-pricing-table tbody tr.active-row {
    background-color: rgba(86, 178, 95, 0.05) !important;
}
.bulk-pricing-table tbody td {
    padding: 8px 8px;
    vertical-align: middle;
}
.bulk-pricing-table .SelectItmQty {
    margin-right: 8px;
    accent-color: var(--primary, #56b25f);
    width: 14px;
    height: 14px;
    cursor: pointer;
}
.bulk-pricing-table .qty-range-text {
    font-weight: 600; 
    color: #374151;
    font-size: 12.5px;
}
.bulk-pricing-table .unit-price-text {
    font-weight: 500; 
    color: #4B5563;
    font-size: 12.5px;
}
.bulk-pricing-table .badge {
    background: #DCFCE7;
    color: #15803D;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 10px;
    text-transform: uppercase;
}
.bulk-pricing-table strong {
    color: var(--primary, #56b25f);
    font-size: 13.5px;
    font-weight: 700;
}
.bulk-pricing-table .cashback-text {
    font-size: 10px;
    color: #059669;
    font-weight: 500;
    margin-top: 1px;
}
.bulk-pricing-card .bulk-footer-note {
    font-size: 11px; 
    color: #9CA3AF; 
    font-style: italic;
    margin-top: 8px;
}


/* Mobile Responsiveness for Volume Discount */
@media (max-width: 575px) {
    .bulk-pricing-card {
        padding: 12px 14px;
        border-radius: 8px;
    }
    .bulk-pricing-table thead {
        display: none !important;
    }
    .bulk-pricing-table, 
    .bulk-pricing-table tbody, 
    .bulk-pricing-table tr, 
    .bulk-pricing-table td {
        display: block !important;
        width: 100% !important;
    }
    .bulk-pricing-table tbody tr {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        grid-template-rows: auto auto !important;
        gap: 8px 6px !important;
        padding: 10px 12px !important;
        border: 1px solid #E5E7EB !important;
        border-radius: 8px !important;
        margin-bottom: 8px !important;
        background: #FDFDFD !important;
    }
    .bulk-pricing-table tbody tr:last-child {
        margin-bottom: 0 !important;
    }
    .bulk-pricing-table tbody tr.active-row {
        border-color: var(--primary, #56b25f) !important;
        background-color: rgba(86, 178, 95, 0.04) !important;
        box-shadow: 0 2px 6px rgba(86, 178, 95, 0.08) !important;
    }
    .bulk-pricing-table tbody td {
        display: flex !important;
        align-items: center !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
    }
    /* Cell 1: Quantity Range and Radio Input */
    .bulk-pricing-table tbody tr td:nth-child(1) {
        grid-column: 1 !important;
        grid-row: 1 !important;
        justify-content: flex-start !important;
    }
    /* Cell 2: Unit Price */
    .bulk-pricing-table tbody tr td:nth-child(2) {
        grid-column: 1 !important;
        grid-row: 2 !important;
        justify-content: flex-start !important;
        font-size: 11.5px !important;
        color: #6B7280 !important;
    }
    .bulk-pricing-table tbody tr td:nth-child(2)::before {
        content: "Unit: " !important;
        font-weight: 500 !important;
        color: #9CA3AF !important;
        margin-right: 3px !important;
    }
    /* Cell 3: Discount Badge */
    .bulk-pricing-table tbody tr td:nth-child(3) {
        grid-column: 2 !important;
        grid-row: 1 !important;
        justify-content: flex-end !important;
    }
    /* Cell 4: Final Price */
    .bulk-pricing-table tbody tr td:nth-child(4) {
        grid-column: 2 !important;
        grid-row: 2 !important;
        justify-content: flex-end !important;
        text-align: right !important;
        flex-direction: column !important;
        align-items: flex-end !important;
    }
    .bulk-pricing-table .qty-range-text {
        font-size: 13px !important;
    }
    .bulk-pricing-table strong {
        font-size: 14px !important;
    }
    .bulk-pricing-table .badge {
        padding: 2.5px 5px !important;
        font-size: 9.5px !important;
    }
    .bulk-pricing-table .cashback-text {
        font-size: 9.5px !important;
        margin-top: 2px !important;
    }
}


/* Support & Inquiry Section Styles */
.support-item-box {
    padding: 15px 10px;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    height: 100%;
}
.support-item-box:hover {
    background: #fff;
    border-color: var(--primary, #56b25f);
    box-shadow: 0 5px 15px rgba(86, 178, 95, 0.12);
    transform: translateY(-3px);
}
.icon-circle {
    width: 45px;
    height: 45px;
    background: rgba(86, 178, 95, 0.08);
    color: var(--primary, #56b25f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}
.support-item-box:hover .icon-circle {
    background: var(--primary, #56b25f);
    color: #fff;
}
.support-item-box span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #4B5563;
    line-height: 1.2;
}

/* Modal Styling */
#callbackModal .modal-content {
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}
#callbackModal .form-control:focus {
    border-color: var(--primary, #56b25f) !important;
    background: #fff !important;
    box-shadow: none !important;
}
#callbackModal .invalid-feedback {
    font-size: 11px;
    margin-top: 5px;
    font-weight: 500;
}

/* 1:1 Square Product Gallery Aspect Ratio */
.tf-product-media-main {
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02) !important;
}
.tf-product-media-main .swiper-slide,
.tf-product-media-main .swiper-slide a,
.tf-product-media-main .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
}

/* Swiper Native Disabled Arrow State */
.thumbs-prev-arrow.swiper-button-disabled,
.thumbs-next-arrow.swiper-button-disabled {
    opacity: 0.15 !important;
    pointer-events: none;
    cursor: default;
}

/* Thumbs Navigation Wrapper */
.thumbs-nav-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    height: 100%;
    user-select: none;
    justify-content: space-between;
}
@media (max-width: 1199px) {
    .thumbs-nav-wrap {
        width: 100%;
        flex-direction: row;
        margin-top: 12px;
        justify-content: flex-start;
        align-items: center !important;
    }
    .thumbs-arrow {
        display: none !important;
    }
}

.tf-product-media-thumbs {
    flex-grow: 1;
    height: calc(100% - 64px) !important;
    width: 100% !important;
    overflow: hidden;
}
@media (max-width: 1199px) {
    .tf-product-media-thumbs {
        width: 100% !important;
        height: auto !important;
    }
}

/* Gorgeous Active Thumbnail Micro-interaction */
.tf-product-media-thumbs .swiper-slide .item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 2px solid transparent !important;
    background: #fff;
    cursor: pointer;
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    height: auto !important;
    opacity: 0.5 !important;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08) !important;
}
.tf-product-media-thumbs .swiper-slide:hover .item {
    opacity: 0.85 !important;
}
.tf-product-media-thumbs .swiper-slide-thumb-active .item {
    border-color: #111 !important;
    opacity: 1 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
    transform: none !important;
}

@media (max-width: 767px) {
    .tf-product-media-thumbs .swiper-slide .item {
        aspect-ratio: 1 / 1 !important;
    }
}

.thumbs-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    color: #555;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.thumbs-arrow svg {
    transition: transform 0.2s ease;
}
.thumbs-prev-arrow:hover svg {
    transform: translateY(-1px);
}
.thumbs-next-arrow:hover svg {
    transform: translateY(1px);
}
.thumbs-arrow:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* Responsive vertical flex setup */
@media (min-width: 1200px) {
    .product-thumbs-slider.style-row {
        display: flex !important;
        align-items: stretch !important;
        height: auto !important;
        gap: 16px !important;
    }
    .flat-wrap-media-product {
        height: auto !important;
        width: calc(100% - 96px) !important;
    }
}

/* ── Premium Compact Sticky Add To Cart Bar ── */
.tf-sticky-btn-atc {
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.tf-sticky-btn-atc .tf-height-observer {
    padding: 8px 0 !important; /* Extremely sleek and thin padding */
}

/* Make font sizes sleek and modern */
.tf-sticky-btn-atc .name__prd {
    font-size: 13px !important;
    line-height: 1.4 !important;
    font-weight: 600 !important;
    color: #1a1a1a;
    margin-bottom: 1px;
}
.tf-sticky-btn-atc .distribute__prd {
    font-size: 11px !important;
    opacity: 0.8;
}
.tf-sticky-btn-atc .price__prd {
    font-size: 14px !important;
    color: var(--primary, #56b25f) !important;
    font-weight: 700 !important;
}

/* Sleek Inputs and Selects inside sticky bar */
.tf-sticky-btn-atc select#sticky-variant-select {
    padding: 6px 30px 6px 12px !important;
    font-size: 13px !important;
    height: 38px !important;
    border-radius: 8px !important;
    border: 1px solid #e5e7eb !important;
    background-color: #f9fafb !important;
    font-weight: 500;
}
.tf-sticky-btn-atc .tf-sticky-atc-infos form {
    gap: 15px !important; /* Compact gaps between elements */
}
.tf-sticky-btn-atc .tf-product-info-quantity .wg-quantity {
    height: 38px !important;
    border-radius: 8px !important;
    border: 1px solid #e5e7eb !important;
    background-color: #f9fafb !important;
    padding: 0 12px !important;
    min-width: unset !important;
}
.tf-sticky-btn-atc .btn-add-to-cart {
    height: 38px !important;
    line-height: 38px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 0 25px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--primary, #56b25f) !important;
    border: none !important;
}
.tf-sticky-btn-atc .btn-add-to-cart:hover {
    filter: brightness(0.95);
}

/* Mobile responsive optimization for ultra-thin layout */
@media (max-width: 767px) {
    .tf-sticky-btn-atc {
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        background: rgba(255, 255, 255, 0.96) !important;
        backdrop-filter: blur(8px);
    }
    
    .tf-sticky-btn-atc .tf-height-observer {
        padding: 6px 0 !important;
    }
    
    /* Hide descriptive text titles to save max space */
    .tf-sticky-btn-atc .tf-sticky-atc-variant-price .title,
    .tf-sticky-btn-atc .tf-product-info-quantity .title {
        display: none !important;
    }
    
    .tf-sticky-btn-atc .tf-sticky-atc-infos {
        width: 100% !important;
    }
    
    .tf-sticky-btn-atc .tf-sticky-atc-infos form {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important; /* Absolutely no wrapping */
        justify-content: space-between !important;
        align-items: center !important;
        gap: 6px !important; /* High-density grid gap */
        width: 100% !important;
    }
    
    /* Scale inputs perfectly to fit one-line grid */
    .tf-sticky-btn-atc select#sticky-variant-select {
        flex: 1 1 auto !important;
        max-width: 120px !important;
        min-width: 80px !important;
        font-size: 12px !important;
        height: 36px !important;
        padding: 4px 20px 4px 8px !important;
    }
    
    .tf-sticky-btn-atc .tf-product-info-quantity .wg-quantity {
        flex: 0 0 auto !important;
        width: 105px !important;
        height: 36px !important;
    }
    
    .tf-sticky-btn-atc .tf-product-info-quantity .wg-quantity input {
        width: 42px !important;
        font-size: 13px !important;
    }
    
    .tf-sticky-btn-atc .btn-add-to-cart {
        flex: 1 1 auto !important;
        height: 36px !important;
        line-height: 36px !important;
        padding: 0 10px !important;
        font-size: 12px !important;
        border-radius: 6px !important;
        white-space: nowrap !important;
    }
}

/* Enable manual typing and expand input width on quantity fields to fit large numbers */
.wg-quantity .quantity-product.input-qty {
    pointer-events: auto !important;
    width: 65px !important;
}

/* Force sticky bar to stay stuck to the absolute bottom on mobile/tablet view (max-width: 1199px) */
@media (max-width: 1199px) {
    .tf-sticky-btn-atc {
        bottom: 0 !important;
    }
}

/* Fix select overlay arrow blocking click events on dropdowns */
.tf-select::after {
    pointer-events: none !important;
}

/* ==========================================================================
   PREMIUM CUSTOMER REVIEWS REDESIGN
   ========================================================================== */

.premium-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 25px;
}

@media (min-width: 992px) {
    .premium-reviews-grid {
        grid-template-columns: 350px 1fr;
    }
}

.premium-summary-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.015);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.premium-rating-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(86,178,95,0.06), rgba(86,178,95,0.12));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 2px solid rgba(86,178,95,0.15);
}

.premium-rating-val {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary, #56b25f);
    line-height: 1.1;
}

.premium-rating-scale {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.premium-stars-row {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 8px;
}

.premium-stars-row i {
    color: #f59e0b;
    font-size: 18px;
}

.premium-total-ratings {
    text-align: center;
    font-size: 13.5px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 25px;
}

.premium-progress-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.premium-progress-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 10px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.premium-progress-item:hover {
    background: #f9fafb;
    border-color: #f3f4f6;
}

.premium-progress-item.active-filter {
    background: rgba(86,178,95,0.06);
    border: 1px dashed var(--primary, #56b25f);
}

.premium-star-label {
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    width: 45px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.premium-star-label i {
    color: #f59e0b;
    font-size: 12px;
}

.premium-bar-container {
    flex: 1;
    height: 8px;
    background: #f3f4f6;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.premium-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary, #56b25f), #82d18a);
    border-radius: 10px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-bar-percent {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    width: 32px;
    text-align: right;
}

.premium-action-btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.premium-reviews-feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f3f4f6;
    flex-wrap: wrap;
    gap: 15px;
}

.premium-feed-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0;
}

.premium-sort-select {
    padding: 8px 30px 8px 16px !important;
    border-radius: 10px !important;
    border: 1px solid #e5e7eb !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    background-color: #ffffff !important;
    color: #4b5563 !important;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    height: 38px !important;
}

.premium-reviews-feed {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.premium-review-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.005), 0 2px 4px -1px rgba(0,0,0,0.003);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-review-card:hover {
    transform: translateY(-2px) scale(1.002);
    box-shadow: 0 12px 25px rgba(0,0,0,0.02);
    border-color: #e5e7eb;
}

.premium-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.premium-user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    box-shadow: inset 0 -2px 4px rgba(0,0,0,0.1);
}

.premium-user-info {
    flex: 1;
    margin-left: 15px;
}

.premium-user-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.premium-user-name {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
}

.premium-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(86,178,95,0.08);
    color: var(--primary, #56b25f);
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.premium-review-date {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

.premium-card-stars {
    display: flex;
    gap: 2px;
}

.premium-card-stars i {
    color: #f59e0b;
    font-size: 14px;
}

.premium-review-body {
    font-size: 14.5px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 0;
    font-weight: 400;
}

.premium-empty-state {
    text-align: center;
    padding: 50px 20px;
    background: #f9fafb;
    border-radius: 16px;
    border: 1px dashed #e5e7eb;
}

.premium-empty-state i {
    font-size: 44px;
    color: #cbd5e1;
    margin-bottom: 16px;
    display: block;
}

.premium-active-filter-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f3f4f6;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
}

.premium-reset-filter-btn {
    background: none;
    border: none;
    color: var(--primary, #56b25f);
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
}

.premium-reset-filter-btn:hover {
    text-decoration: underline;
}

/* Write review styling */
.premium-write-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.015);
}

.premium-star-rating-select {
    display: flex;
    gap: 8px;
    font-size: 32px;
    cursor: pointer;
    color: #e5e7eb;
}

.premium-star-rating-select i {
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-star-rating-select i:hover {
    transform: scale(1.2);
}

/* Mobile Responsiveness for Bundle Box Widget */
@media (max-width: 575px) {
    .bundle-box-wrapper .bulk-pricing-card {
        padding: 12px !important;
    }
    
    .bundle-box-wrapper .bulk-title {
        font-size: 15px !important;
    }
    
    .bundle-box-wrapper .badge {
        font-size: 10px !important;
        padding: 4px 8px !important;
    }
    
    .bundle-box-wrapper .row.align-items-center {
        text-align: center;
        background: #fdfdfd;
        border-radius: 8px;
        padding: 10px 0;
        margin: 0 0 12px 0 !important;
        border: 1px solid #f1f1f1;
    }
    
    .bundle-box-wrapper .row.align-items-center > div {
        padding: 4px 10px !important;
    }
    
    .bundle-box-wrapper .row.align-items-center > div:first-child {
        border-bottom: 1px solid #f1f1f1;
        padding-bottom: 8px !important;
        margin-bottom: 6px !important;
    }

    .bundle-box-wrapper .b2b-exclusive-badge {
        font-size: 10.5px !important;
        padding: 8px 10px !important;
        line-height: 1.4 !important;
    }

    .bundle-box-wrapper .bundle-items-box {
        padding: 10px !important;
    }
    
    .bundle-box-wrapper .bundle-items-box p {
        font-size: 12px !important;
    }
    
    .bundle-box-wrapper .bundle-items-box .col-12 > div {
        padding: 6px 8px !important;
    }
    
    .bundle-box-wrapper #addBundleBtn {
        height: 46px !important;
        font-size: 13px !important;
    }
}

