/* ==============================================
   HILL QUEEN TEA - MASTER CSS FILE
   Complete site styles - Shop, Category, Single Product
   No duplicates, fully optimized
   ============================================== */

/* ===== ROOT VARIABLES ===== */
:root {
    --green-primary: #2d5016;
    --green-secondary: #3d6b1f;
    --green-light: #4a7f24;
    --primary-color: #2c3e50;
    --accent-color: #f4a261;
    --text-light: #6c757d;
    --background-light: #f8f9fa;
    --border-light: #e9ecef;
    --shadow-light: 0 4px 20px rgba(0,0,0,0.08);
}

/* ===== COMMON CONTAINER ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.coustom-container {
    max-width: 960px;
    margin: 0 auto;
}

/* ===== SWIPER COMMON STYLES ===== */
.swiper-scrollbar {
    top: 20px !IMPORTANT;
    background: #eee;
    border-radius: 10px;
    height: 6px;
    margin-top: 10px;
    position: relative !important;
}

.swiper-scrollbar-drag {
    background: var(--accent-color);
    border-radius: 10px;
}

.swiper-horizontal>.swiper-scrollbar, 
.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: unset;
    width: 50%;
    margin: 0 auto;
    margin-top: 35px;
}

/* ===== Scrollbar Styling ===== */
.category-swiper .swiper-scrollbar {
    height: 4px;
    width: 30% !important;
    margin: 20px auto 0;
    background: #e9ecef;
    border-radius: 10px;
    position: relative !important;
    left: auto !important;
    right: auto !important;
}

.category-swiper .swiper-scrollbar-drag {
    background: linear-gradient(90deg, #f4a261, #e76f51) !important;
    border-radius: 10px;
    transition: background 0.3s ease;
}

/* ===== Loading State ===== */
.category-image.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 2s infinite;
}


/* ===== SHOP PAGE STYLES ===== */
.top-slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.header-section {
    text-align: center;
    margin-bottom: 30px;
}
.product-title a {
    text-decoration: none;
    color: inherit;
    transition: color .3s ease;
}

.header-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.header-section p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

/* ===== CATEGORY GRID (Shop Page) ===== */
.category-swiper {
    margin-top: 25px;
    padding: 10px 0 20px;
    overflow: hidden;
}

.category-item {
    text-align: center;
    padding: 10px 5px;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.category-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    margin: 0 auto 12px;
    transition: all 0.3s ease;
    position: relative;
    background: var(--background-light);
}

.category-image:hover {
    border-color: #e76f51;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(244, 162, 97, 0.3);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-name {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    transition: color 0.3s ease;
}

/* ===== HERO BANNER ===== */
.container3 {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== BEST SELLER SECTION ===== */
.most-selling {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0 0 0;
    position: relative;
    overflow: hidden;
}

.best-seller-products {
    padding-top: 50px !important;
    display: flex;
    gap: 15px;
    flex-direction: column;
    position: relative;
}

.best-seller-products .swiper-scrollbar {
    height: 3px;
    width: 20% !important;
    margin: 0 auto 0;
}

.swiper-slide {
    height: auto !important;
    
}

.product-card {
    position: relative;
    /*background: #ebe8e440;*/
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 20PX;
    transition: all 0.4s ease;
    padding-top: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--accent-color);
}

.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
}

.custom-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 5;
}

.product-info {
    text-align: center;
    flex-grow: 1;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.product-meta {
    margin-top: auto;
}

.product-meta .price {
    font-size: 1rem;
    color: #314837;
    font-weight: 700;
}



/*hero section*/


 /*.container {*/
 /*       max-width: 1400px;*/
 /*       margin: 0 auto;*/
 /*       padding: 20px;*/
 /*   }*/
    
    .woocommerce-product-gallery {
        width: 50%;
        overflow: hidden;
    }
    .hero-banner {
        max-width: 960px;
        margin: 0 auto;
        padding: 20px;
    }
    .container.hero-banner {
        padding: 0px;
        margin: 0 auto;
    }
    .sticky-variation-cards .woocommerce-variation-add-to-cart.variations_button {
        opacity: 0;
    }
    .sticky-variation-cards .variation-card {
        height: auto;
    }
    .sticky-variation-box div#deliverySection {
        display: none;
    }
    .sticky-variation-box .action-buttons {
        display: none !important;
    }
    .coustom-container {
        max-width: 960px;
        margin: 0 auto;
    }
    /* Hide WooCommerce default variation form UI */
    .variations_form .variations {
        display: none !important;
    }
    /* Keep hidden inputs and other necessary elements */
    .variations_form .single_variation_wrap,
    .variations_form .woocommerce-variation-price,
    .variations_form .woocommerce-variation-description,
    .variations_form .woocommerce-variation-availability {
        display: block !important;
    }
    .variations_form input[type="hidden"] {
        display: block !important;
    }
    /* Show variation form properly */
    .variations_form {
        display: block !important;
    }
    .single_variation_wrap {
        display: block !important;
    }
    .woocommerce-variation-add-to-cart {
        margin-bottom: 10px;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .breadcrumb a {
        color: #64748b;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .breadcrumb a:hover {
        color: #8B4513;
    }
    .product-container {
        display: flex;
        gap: 35px;
        overflow: hidden;
    }
    .btn-add-cart .single_add_to_cart_button {
        background: linear-gradient(135deg, #22c55e, #16a34a) !important;
        color: white !important;
        width: 100% !important;
        padding: 18px 35px !important;
        border: none !important;
        border-radius: 14px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        cursor: pointer !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        position: relative !important;
        overflow: hidden !important;
    }
    .btn-add-cart .single_add_to_cart_button:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4) !important;
        background: linear-gradient(135deg, #16a34a, #15803d) !important;
    }
    /* Disabled state styling */
    .btn-add-cart .single_add_to_cart_button:disabled,
    .btn-add-cart .single_add_to_cart_button.disabled {
        background: #e2e8f0 !important;
        color: #94a3b8 !important;
        cursor: not-allowed !important;
        transform: none !important;
        box-shadow: none !important;
    }
    
    /*.product-container::before {*/
    /*    content: '';*/
    /*    position: absolute;*/
    /*    top: 0;*/
    /*    left: 0;*/
    /*    right: 0;*/
    /*    height: 1px;*/
    /*    background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.3), transparent);*/
    /*}*/
    /* Product Info */
    .hero-banner .product-info {
        text-align: left !important;
        width: 55%;
        overflow: hidden;
    }
    .hero-banner .product-title {
        font-size: 32px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 20px;
        line-height: 1.2;
        background: linear-gradient(135deg, #1a1a1a, #4a5568);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
   .hero-banner .product-description {
        font-size: 16px;
        color: #64748b;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    
    small.woocommerce-price-suffix {
        display: none;
    }
    /* Dynamic Price Display */
    .woocommerce-variation-price {
        margin: 0 0 15px 0 !important;
        padding: 4px !important;
        background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(139, 69, 19, 0.1)) !important;
        border-radius: 16px !important;
        border: 1px solid rgba(139, 69, 19, 0.2) !important;
        text-align: center !important;
        /*display: none !important;*/
    }
    .woocommerce-variation-price.show {
        display: block !important;
    }
    .woocommerce-variation-price .price {
        font-size: 26px !important;
        font-weight: 800 !important;
        color: #8B4513 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        margin: 0 !important;
    }
    .woocommerce-variation-price .price del {
        color: #94a3b8 !important;
        font-size: 22px !important;
        font-weight: 600 !important;
        text-decoration: line-through !important;
    }
    /* Simple product price styling */
    .simple-product-price {
        margin: 20px 0;
        padding: 20px;
        background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(139, 69, 19, 0.1));
        border-radius: 16px;
        border: 1px solid rgba(139, 69, 19, 0.2);
        text-align: center;
    }
    .simple-product-price .price {
        font-size: 32px;
        font-weight: 800;
        color: #8B4513;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    /* Rating Section */
    .rating-section {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
        padding: 20px;
        background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(139, 69, 19, 0.1));
        border-radius: 16px;
        border: 1px solid rgba(139, 69, 19, 0.1);
    }
    .rating-text {
        background: linear-gradient(135deg, #8B4513, #a0522d);
        color: white;
        padding: 10px 16px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    }
    .stars {
        color: #fbbf24;
        font-size: 20px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .rating-count {
        color: #64748b;
        font-size: 14px;
        font-weight: 500;
    }
    /* Features Grid */
    .features-grid {
        display: flex;
        margin-bottom: 30px;
        flex-direction: row;
    }
    .feature-item {
        display: flex;
        align-items: center;
        padding: 0px;
        background: rgba(255, 255, 255, 0.8);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        justify-content: flex-start;
        flex-direction: row;
        margin-top: 30px;
    }
    /* Action Buttons */
    .action-buttons {
        display: flex;
        gap: 20px;
        margin-top: 30px;
        align-items: flex-start;
    }
    .btn-add-cart {
        flex: 1;
    }
    .quantity {
        margin-right: 20px;
    }
    .woocommerce-js .quantity .qty {
        width: 3.631em;
        text-align: center;
        max-height: 45px;
    }
    .quantity input.qty {
        width: 90px;
        height: 56px;
        text-align: center;
        border: 2px solid #e2e8f0;
        border-radius: 4px;
        font-size: 16px;
        font-weight: 700;
        color: #1a1a1a;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    .quantity input.qty:focus {
        outline: none;
        border-color: #8B4513;
        box-shadow: 0 0 0 4px rgba(139, 69, 19, 0.1);
    }
    /* Stock Status */
    .stock {
        padding: 12px 18px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 700;
        margin: 15px 0;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    .stock.in-stock {
        background: linear-gradient(135deg, #dcfce7, #bbf7d0);
        color: #166534;
        border: 1px solid #22c55e;
    }
    .stock.out-of-stock {
        background: linear-gradient(135deg, #fef2f2, #fecaca);
        color: #991b1b;
        border: 1px solid #ef4444;
    }
    
    .sticky-variation-box h1 {
        display: none;
    }
    /* Modern Sticky Variation Box with Dynamic Cards */
    .sticky-variation-box {
        position: fixed;
        top: 108px;
        right: 0;
        width: 310px;
        max-height: 50vh;
        overflow-y: auto;
        z-index: 1000;
        background: #fff;
        border-radius: 6px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        padding: 48px 10px 0 10px;
        transition: transform 0.5s ease, opacity 0.3s ease;
        opacity: 0;
        pointer-events: none;
        padding-bottom:0px;
    }
    .sticky-variation-box.show,
    .sticky-variation-box.active {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }
    .sticky-variation-box h1 {
        font-size: 18px !important;
        margin-bottom: 15px !important;
        color: #1a1a1a;
        font-weight: 700;
    }
    
    .sticky-variation-box .savings-info {
        display: none;
    }

    .sticky-variation-box .price-per-unit {
        display: none;
    }
    .sticky-variation-box .close-btn {
        position: absolute;
        top: -5px;
        right: 0px;
        background: transparent;
        border: none;
        font-size: 29px;
        font-weight: 900;
        color: #e53e3e;
        cursor: pointer;
        box-shadow: none;
        transition: color 0.3s ease;
    }
    .sticky-variation-box .close-btn:hover {
        color: #8B4513;
    }
    button.single_add_to_cart_button {
        width: 100%;
    }
    /* Dynamic Variation Cards Styling */
    .sticky-variation-cards {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-bottom: 15px;
    }
    .variation-card {
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        padding: 20px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: white;
        position: relative;
        overflow: visible;
    }
    .variation-card:hover {
        border-color: #cbd5e0;
    }
    .variation-card.selected {
        border-color: #38a169;
    }
    .variation-card.out-of-stock {
        opacity: 0.6;
        cursor: not-allowed;
    }
    .variation-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 12px;
    }
    .discount-badge {
        background: linear-gradient(135deg, #38a169 0%, #48bb78 100%);
        color: white;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        box-shadow: 0 2px 8px rgba(56, 161, 105, 0.3);
        position: absolute;
        top: -16px;
    }
    .variation-details {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .variation-info {
        flex: 1;
        text-align: left;
    }
    .variation-name {
        font-size: 16px;
        font-weight: 600;
        color: #2d3748;
        text-align: left;
    }
    .price-container {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .current-price {
        font-size: 20px;
        font-weight: 700;
        color: #e53e3e;
    }
    .original-price {
        font-size: 14px;
        color: #a0aec0;
        text-decoration: line-through;
    }
    .out-of-stock-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: #e53e3e;
        border-radius: 12px;
        font-size: 16px;
    }
    .selected-indicator {
        position: absolute;
        top: -8px;
        right: -8px;
        width: 24px;
        height: 24px;
        background: #38a169;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 12px;
        font-weight: bold;
        opacity: 0;
        transform: scale(0);
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    .variation-card.selected .selected-indicator {
        opacity: 1;
        transform: scale(1);
    }
    .sticky-variation-box .add-to-cart-section {
        margin-top: 0px;
        padding-top: 24px;
        border-top: 2px solid #f1f5f9;
        text-align: center;
        position: sticky;
        bottom: 0;
        background: #fff;
        z-index: 10;
        margin-bottom:-77px;
        padding-bottom: 15px;
    }
    .woocommerce-variation.single_variation {
        display: none;
    }
    .total-price {
        font-size: 24px;
        font-weight: 700;
        color: #2d3748;
        margin-bottom: 16px;
        display:none;
    }
    .add-to-cart-btn {
        background: linear-gradient(135deg, #38a169 0%, #48bb78 100%);
        color: white;
        border: none;
        padding: 16px 32px;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 4px 16px rgba(56, 161, 105, 0.3);
        width: 100%;
    }
    .add-to-cart-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(56, 161, 105, 0.4);
    }
    .add-to-cart-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }
    
    /* Hide WooCommerce error notices on product page */
    .single-product .woocommerce-error {
        display: none !important;
    }
    
    /* Mobile responsive */
    @media (max-width: 768px) {
        .woocommerce-product-gallery {
            width: auto !important;
        }
        .sticky-variation-box {
            display: block;
            width: 100%;
            max-width: none;
            position: relative;
            top: auto;
            right: auto;
            display: none;
        }
        .product-container {
            display: flex;
            flex-direction: column;
        }
        .product-info {
            width: 100% !important;
        }
        .product-container {
            padding: 25px;
            gap: 25px;
        }
        .hero-banner .product-info {
            padding: 0;
        }
        .quantity {
            margin-right: 0;
            margin-bottom: 0px; 
        }
    }




/* ===== Base Reset ===== */
.tea-process-section * {
    box-sizing: border-box;
}

/* ===== Section Wrapper ===== */
.tea-process-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0px;
}

.tea-process-section .header {
    text-align: center;
    margin-bottom: 60px;
}

.tea-process-section .header h2 {
    font-size: clamp(32px, 5vw, 40px) !important;
    font-family: 'Playfair Display', 'Georgia', serif !important;
    margin: 0;
    font-weight: 700;
}

/* ===== DESKTOP LAYOUT - Horizontal ===== */
.process-timeline-desktop {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0px;
}

.process-step-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
}

/* Icon Circle */
.step-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    border: 3px solid #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
    overflow: hidden;
}


.step-icon-circle img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Step Title */
.step-title-desktop {
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    line-height: 1.4;
    max-width: 140px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

/* Step Date Desktop */
.step-date-desktop {
    font-size: 12px;
    color: #4caf50;
    font-weight: 500;
    margin-top: 5px;
}

/* Arrow Between Steps */
.arrow-connector {
    width: 50px;
    height: 3px;
    background: #4caf50;
    position: relative;
    margin: 0 10px;
    position: relative;
    top: 47px;
}

.arrow-connector::after {
    content: '';
    position: absolute;
    right: -8px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 10px solid #4caf50;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* Info Icon (i) */
.info-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #9e9e9e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #9e9e9e;
    font-weight: bold;
    margin-left: 5px;
    cursor: help;
    font-style: italic;
}

/* ===== MOBILE LAYOUT - Vertical List ===== */
.process-timeline-mobile {
    display: none;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background: #f1f8e9;
    border-radius: 12px;
}

.process-step-mobile {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed #c8e6c9;
    position: relative;
}

.process-step-mobile:last-child {
    border-bottom: none;
}

.step-icon-mobile {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    border: 2px solid #4caf50;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.15);
}

.step-icon-mobile img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.step-content-mobile {
    flex: 1;
}

.step-title-mobile {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.step-date-mobile {
    font-size: 13px;
    color: #4caf50;
    font-weight: 500;
}

/* ===== Responsive Breakpoints ===== */
@media (max-width: 768px) {
    .tea-process-section {
        padding: 40px 15px;
    }
    
    .tea-process-section .header {
        margin-bottom: 40px;
    }
    
    /* Hide Desktop, Show Mobile */
    .process-timeline-desktop {
        display: none !important;
    }
    
    .process-timeline-mobile {
        display: block;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .arrow-connector {
        width: 50px;
        margin: 0 5px;
    }
    
    .step-icon-circle {
        width: 85px;
        height: 85px;
    }
    
    .step-icon-circle img {
        width: 42px;
        height: 42px;
    }
    
    .step-title-desktop {
        font-size: 13px;
        max-width: 120px;
    }
    
    .step-date-desktop {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .process-timeline-mobile {
        padding: 15px;
    }
    
    .step-icon-mobile {
        width: 45px;
        height: 45px;
    }
    
    .step-icon-mobile img {
        width: 24px;
        height: 24px;
    }
    
   .step-title-mobile {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px 0;
    text-transform: capitalize;
}
}

/* ===== Loading State ===== */
.step-icon-circle.loading,
.step-icon-mobile.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 2s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== Smooth Animations ===== */
.process-step-desktop {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.process-step-desktop:nth-child(odd) { animation-delay: 0.1s; }
.process-step-desktop:nth-child(even) { animation-delay: 0.2s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step-mobile {
    animation: slideInLeft 0.5s ease-out forwards;
    opacity: 0;
}

.process-step-mobile:nth-child(1) { animation-delay: 0.1s; }
.process-step-mobile:nth-child(2) { animation-delay: 0.2s; }
.process-step-mobile:nth-child(3) { animation-delay: 0.3s; }
.process-step-mobile:nth-child(4) { animation-delay: 0.4s; }
.process-step-mobile:nth-child(5) { animation-delay: 0.5s; }
.process-step-mobile:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* ===== CATEGORY PAGE STYLES ===== */
.woocommerce-category-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.category-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-primary);
    margin-bottom: 15px;
}

.category-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.category-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.product-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* ===== SINGLE PRODUCT HERO ===== */
.hero-banner {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

.product-container {
    display: flex;
    gap: 35px;
    overflow: hidden;
}

.woocommerce-product-gallery {
    width: 50%;
    overflow: hidden;
}

.product-info {
    /*width: 55%;*/
    overflow: hidden;
}

.product-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* ===== RATING SECTION ===== */
.rating-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(139, 69, 19, 0.1));
    border-radius: 16px;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.rating-text {
    background: linear-gradient(135deg, #8B4513, #a0522d);
    color: white;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.stars {
    color: #fbbf24;
    font-size: 20px;
}

/* ===== STICKY VARIATION BOX ===== */
.sticky-variation-box {
    position: fixed;
    top: 108px;
    right: 0;
    width: 310px;
    max-height: 50vh;
    overflow-y: auto;
    z-index: 1000;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 48px 10px 0 10px;
    transition: transform 0.5s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    padding-bottom: 0;
}

.sticky-variation-box.show,
.sticky-variation-box.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.variation-card {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.variation-card.selected {
    border-color: #38a169;
}

/* ===== ACTION BUTTONS ===== */
.action-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: flex-start;
}

.btn-add-cart .single_add_to_cart_button {
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
    color: white !important;
    width: 100% !important;
    padding: 18px 35px !important;
    border: none !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    text-transform: uppercase !important;
}

.btn-add-cart .single_add_to_cart_button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4) !important;
}

/* ===== FAQ SECTION ===== */
.faq-main {
    max-width: 100%;
    margin: 0 auto;
    background: #FFFAF5;
    padding: 25px 0;
}

.faq-section {
    max-width: 960px;
    margin: 40px auto;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.faq-title .highlight {
    color: #00D084;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question:hover,
.faq-question.active {
    background-color: #38a169;
    color: white;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-icon.active {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fafafa;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 20px 20px 20px;
}

/* ===== VIDEO TEST CONTAINER ===== */
.test-container {
    max-width: 960px;
    margin: 0 auto;
    background-color: #fffaf0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.test-container .video-container {
    width: 100%;
    height: 400px;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
}

.test-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== MORE INFORMATION ===== */
.more-infomain {
    background: #FFFAF5;
    padding: 40px 0;
}

.more-info {
    max-width: 625px;
    margin: 0 auto;
}

.info-card {
    background: white;
    border: 2px dashed #ccc;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-row {
    display: flex;
    margin-bottom: 18px;
    align-items: flex-start;
    border-bottom: 1px solid #d0cacaa1;
    padding: 6px 0;
}

.info-row:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.info-label {
    color: #b8860b;
    font-weight: 500;
    width: 120px;
    flex-shrink: 0;
    font-size: 14px;
}

.info-value {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

/* ===== INGREDIENTS SECTION ===== */
.Ingredientsmain {
    max-width: 100%;
    margin: 0 auto;
    background: #FFFAF5;
    padding: 0;
    overflow: hidden;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    max-width: 960px;
    margin: 40px auto;
    padding: 0 20px;
}

.reviews-container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.reviews-header {
    background: linear-gradient(135deg, #66bb6a, #388e3c, #e8f5e9);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.review-item {
    background: #fff;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

/* ===== TEA PROCESS TIMELINE ===== */
.tea-process-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.process-timeline-desktop {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.step-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    border: 3px solid #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

.arrow-connector {
    width: 50px;
    height: 3px;
    background: #4caf50;
    position: relative;
    margin: 0 10px;
    top: 47px;
}

/* ===== USAGE & SUITABILITY ===== */
    .usagesuitability {
        max-width: 100%;
        margin: 0 auto;
        background:#FFFAF5;
        padding:25px 0;
    }    
    
    .usagesuitability .container{
        max-width: 960px;
        margin: 0 auto;
    }
    
    .usagesuitability .header {
        background: transparent;
        text-align: left;
    }
    .usagesuitability .header h1 {
            font-size: 40px !important;
    font-family: 'Playfair Display',serif !important;
        font-weight: 700;
        margin-bottom: 0px;
        letter-spacing: 2px;
        color:black;
    }
   
    .usagesuitability .tab-container {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        padding: 0;
        display: inline-flex;
        margin-top: 30px;
        margin-bottom: 25px;
    }

    .usagesuitability .tab {
        padding: 12px 30px;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 500;
        color: #8f5a17;
    }

    .usagesuitability .tab.active {
        background: #8B4513;
        color: white;
    }

    .content {
        padding: 40px 0;
    }

    .tab-content {
        display: none;
    }

    .tab-content.active {
        display: block;
    }

    .steps-grid {
        display: grid;
        /*grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));*/
        grid-template-columns: repeat(3, 1fr);

        gap: 40px;
    }

    @media (max-width: 768px) {
        
        .usagesuitability .header h1 {
    font-size: 28px !important;
}
        .steps-grid {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding-bottom: 10px;
        }
        .steps-grid::-webkit-scrollbar {
            height: 6px;
        }
        .steps-grid::-webkit-scrollbar-thumb {
            background: #8B4513;
            border-radius: 10px;
        }
        .step-card {
            flex: 0 0 80%;
            scroll-snap-align: start;
        }

        .suitability-grid {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding-bottom: 10px;
        }
        .suitability-grid::-webkit-scrollbar {
            height: 6px;
        }
        .suitability-grid::-webkit-scrollbar-thumb {
            background: #8B4513;
            border-radius: 10px;
        }
        .suitability-item {
            flex: 0 0 80%;
            scroll-snap-align: start;
        }
    }

    .usagesuitability .step-card {
        border-radius: 15px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        background: #fff;
        /*max-width:32%;*/
    }

    .usagesuitability .step-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

    .step-content {
        padding: 20px;
        text-align: center;
    }

    .step-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: #2d3436;
        margin-bottom: 10px;
    }

    .step-description {
        color: #636e72;
        line-height: 1.6;
        font-size: 15px;
    }

    .suitability-section {
        background: white;
        border-radius: 15px;
        padding: 20px;
        border: 1px dashed #8F5A17;
        margin-top: 30px;
    }
    .suitability-title {
        font-size: 18px;
        color: #ae8655;
        margin-bottom: 20px;
        font-weight: 600;
    }
    .suitability-grid {
        display: grid;
        gap: 20px;
    }
    .suitability-item {
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }
    .suitability-icon {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #8B4513, #A0522D);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: bold;
        flex-shrink: 0;
    }
/* ===== CATEGORIES (Single Product) ===== */
.single-catergory {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px !important;
    position: relative;
}

/* ===== LAZY LOADING ===== */
.lazy-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lazy-section.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 480px) {
    .faq-title {
        font-size: 28px;
    }
    
    .category-image {
        width: 70px;
        height: 70px;
    }
    
    .product-container {
        flex-direction: column;
    }
    
    .product-info {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .woocommerce-product-gallery {
        width: auto !important;
    }
    
    .product-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 25px;
    }
    
    .most-selling h2 {
        font-size: 28px !important;
        text-align: center;
    }
    
    .container.best-seller-wrapper {
        padding: 35px 15px !important;
    }
    
    .sticky-variation-box {
        display: none;
    }
    
    .process-timeline-desktop {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .process-timeline-mobile {
        display: none;
    }
    
  .product-card {
    height: auto;
    flex-direction: column;
    max-height: max-content;
}

    
}

/* ===== MOBILE PRODUCT CARD HEIGHT FIX ===== */

/* Mobile devices (phones) */
@media (max-width: 768px) {
    
    .product-card {
        padding: 15px !important;
        padding-top: 40px !important;
        min-height: auto !important;
        max-height: none !important;
        height: auto !important;
    }
    
    /* Swiper slide mobile fix */
    .swiper-slide {
        height: auto !important;
        display: flex !important;
    }
    
    .best-seller-products .swiper-slide {
        height: auto !important;
    }
    .best-seller-products{
        padding: 0px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    
    .product-card {
        padding: 12px !important;
        padding-top: 35px !important;
    }
    
    .faq-main {
    padding: 25px 15px;
}

div#single-catergory {
    overflow: hidden;
    padding: 35px 15px;
}
}
    
  
@media (min-width: 769px) and (max-width: 1024px) {
    
    .product-card {
        padding: 18px !important;
        padding-top: 45px !important;
    }
 
}

.Ingredientsmain .swiper-slide {
    height: auto !important;
    flex-direction: column;
}
























/* ===== ADD TO CART BUTTON STATES ===== */
.single_add_to_cart_button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.single_add_to_cart_button.added {
    background: linear-gradient(135deg, #16a34a, #15803d) !important;
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Disabled state */
.single_add_to_cart_button:disabled,
.single_add_to_cart_button.disabled {
    background: #e2e8f0 !important;
    color: #94a3b8 !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

/* Variation card selected state */
.variation-card.selected {
    border-color: #38a169 !important;
    background: #f0fdf4 !important;
    box-shadow: 0 4px 12px rgba(56, 161, 105, 0.2);
}

.variation-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.variation-card:not(.out-of-stock):hover {
    transform: translateY(-2px);
    border-color: #cbd5e0;
}















/* ========================================
   MODERN QUANTITY DESIGN (Like Image)
======================================== */

.quantity {
    margin-bottom: 20px;
}

/* Quantity Label */
.quantity::before {
    content: 'Quantity';
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
}

/* Quantity Input Wrapper */
.quantity {
    display: inline-block;
}

.quantity input.qty {
    width: 160px !important;
    height: 48px !important;
    text-align: center;
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    background: #fff !important;
    padding: 0 40px !important; /* Space for buttons */
    margin: 0 !important;
}

.quantity input.qty:focus {
    outline: none !important;
    border-color: #cbd5e0 !important;
}

/* Hide default arrows */
.quantity input.qty::-webkit-outer-spin-button,
.quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity input.qty[type=number] {
    -moz-appearance: textfield;
}


button.qty-btn {
    padding: 0px;
    box-shadow: none;
    margin-top: -5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .woocommerce-product-gallery {
        position: relative !important;
        top: auto !important;
        width: 100% !important;
    }
    
    .product-info {
        width: 100% !important;
    }
    
    .product-container {
        flex-direction: column;
    }
}





















