:root {
        --soft-bg: #f9fbf9;
        --border-color: #e8eee8;
        --offer-bg: #fff9eb;
        --offer-accent: #d4a748;
        --benefit-blue-bg: #f0f7ff;
        --benefit-blue-border: #007bff;
    }

    .product-page-wrapper {
        background: #ffffff;
        padding-bottom: 100px;
    }

    .product-container {
        padding: 30px 5%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
        max-width: 1400px;
        margin: 0 auto;
        background-color: white;
    }

    /* Image Card */
    .product-image-section {
        position: sticky;
        top: 100px;
        z-index: 10;
    }

    .image-card {
        width: 100%;
        background: var(--soft-bg);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .image-card img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Content Area */
    .product-info-section {
        display: flex;
        flex-direction: column;
    }

    .product-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.7rem;
        color: #000;
        line-height: 1.2;
        margin-bottom: 6px;
    }

    .product-description {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.5;
        margin-bottom: 15px;
        font-weight: 400;
    }

    /* Benefits - Light Blue Theme */
    .benefits-highlight-box {
        background: var(--benefit-blue-bg);
        border-radius: 10px;
        padding: 15px 20px;
        margin-bottom: 20px;
        border-left: 4px solid var(--benefit-blue-border);
    }

    .benefits-highlight-box h4 {
        margin: 0 0 8px 0;
        font-size: 0.8rem;
        text-transform: uppercase;
        color: #004085;
        letter-spacing: 1px;
        font-weight: 800;
    }

    .benefits-list {
        margin: 0;
        padding-left: 18px;
        list-style-type: disc;
    }

    .benefits-list li {
        font-size: 0.9rem;
        color: #334455;
        margin-bottom: 4px;
        line-height: 1.4;
    }

    .price-row {
        margin-bottom: 15px;
    }

    .product-price {
        font-size: 1.5rem;
        color: #000;
        font-weight: 700;
    }

    .old-price {
        text-decoration: line-through;
        color: #ccc;
        font-size: 1.1rem;
        margin-left: 8px;
    }

    /* Multiple Offers Section */
    .offers-wrapper {
        margin-bottom: 25px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .offer-item {
        background: var(--offer-bg);
        border: 1px dashed var(--offer-accent);
        padding: 12px 15px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: transform 0.2s;
    }

    .offer-item:hover {
        transform: translateX(5px);
    }

    .offer-item i {
        color: var(--offer-accent);
        font-size: 1rem;
    }

    .offer-text {
        font-size: 0.85rem;
        font-weight: 600;
        color: #444;
    }

    /* size section */

    /* Size Selection Styling */
    .size-section-title {
        font-size: 0.85rem;
        font-weight: 800;
        text-transform: uppercase;
        color: #333;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }

    .size-cards-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
        margin-bottom: 25px;
    }

    .size-card {
        border: 2px solid var(--border-color);
        border-radius: 10px;
        padding: 12px;
        cursor: pointer;
        transition: all 0.2s ease;
        background: #fff;
        position: relative;
    }

    .size-card:hover {
        border-color: var(--benefit-blue-border);
    }

    .size-card.selected {
        border-color: #1a4a36;
        /* Deep Herbal Green */
        background-color: #f0fdf4;
        /* Very light green tint */
    }

    .size-card .pack-text {
        font-size: 0.7rem;
        font-weight: 700;
        color: #1a4a36;
        text-transform: uppercase;
        margin-bottom: 4px;
        display: block;
    }

    .size-card .quantity-text {
        font-size: 0.9rem;
        color: #666;
        display: block;
        margin-bottom: 8px;
    }

    .size-card .discount-badge {
        background: #28a745;
        color: white;
        font-size: 0.65rem;
        padding: 2px 8px;
        border-radius: 20px;
        font-weight: 700;
        display: inline-block;
        margin-bottom: 8px;
    }

    .size-card .price-group {
        display: flex;
        align-items: baseline;
        gap: 6px;
    }

    .size-card .current-price {
        font-weight: 800;
        font-size: 1rem;
        color: #000;
    }

    .size-card .strike-price {
        text-decoration: line-through;
        color: #999;
        font-size: 0.75rem;
    }

    /* Action Section */
    .selector-row {
        display: flex;
        gap: 10px;
        margin-bottom: 25px;
    }

    .qty-input {
        width: 60px;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 6px;
        text-align: center;
        font-weight: bold;
    }

    .add-btn-main {
        height: 45px;
        flex-grow: 1;
        background: var(--navy);
        color: white;
        border: none;
        border-radius: 6px;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s;
    }

    .login-now-btn  {
        width: 100%;
        height: 45px;
        flex-grow: 1;
        background: green;
        color: white;
        border: none;
        border-radius: 6px;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s;
    }

    /* Accordion */
    .unified-details-box {
        background: var(--soft-bg);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 0 15px;
    }

    .acc-header {
        padding: 12px 0;
        display: flex;
        justify-content: space-between;
        cursor: pointer;
        font-weight: 700;
        color: var(--navy);
        font-size: 0.8rem;
        text-transform: uppercase;
    }

    .acc-content {
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
        color: #666;
        font-size: 0.85rem;
    }

    .acc-item.active .acc-content {
        max-height: 600px;
        padding-bottom: 12px;
    }

    /* Mobile Sticky Bar */
    .sticky-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
        padding: 12px 20px;
        display: none;
        z-index: 1000;
        align-items: center;
        gap: 15px;
    }

    .sticky-btn {
        background: var(--leaf);
        color: white;
        border: none;
        padding: 12px;
        border-radius: 8px;
        font-weight: 700;
        flex-grow: 1;
    }

    @media (max-width: 900px) {
        .product-container {
            grid-template-columns: 1fr;
            padding: 0 4% 30px 4%;
            gap: 10px;
        }

        .product-image-section {
            position: relative;
            top: 0;
            margin: 0 -4.5%;
        }

        .sticky-bar {
            display: flex;
        }
    }

    /* Slider Container */
.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    background: var(--soft-bg);
}

.image-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar for Chrome/Safari/Firefox */
}

.image-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
}

.image-slider img {
    flex: 0 0 100%; /* Each image takes full width */
    width: 100%;
    height: auto;
    object-fit: contain;
    scroll-snap-align: start;
}

/* Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--navy);
    width: 20px; /* Capsule shape for active dot */
    border-radius: 10px;
}


        @keyframes scroll-animation {
            from { transform: translateX(-50%); } 
            to { transform: translateX(0); } 
        }

        .reviews-scroller-container {
            overflow-x: hidden;
            position: relative;
            border-radius: 0.75rem;
            background-color: #ffffff;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-xl */
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
            margin-top: 1.2rem;
            border: 2px solid #407945;
            width: 80%;
            margin: 1.2rem auto;
        }       


        .reviews-scroller-inner {
            display: flex;
            width: max-content; 
            animation: scroll-animation 5s linear infinite;
        }

        /* Pause the animation on hover/focus */
        .reviews-scroller-container:hover .reviews-scroller-inner,
        .reviews-scroller-container:focus-within .reviews-scroller-inner {
            animation-play-state: paused;
        }


        .review-set {
            display: flex;
            padding-left: 1rem; /* px-4 */
            padding-right: 1rem; /* px-4 */
            gap: 1.5rem; /* space-x-6 */
        }

        @media (min-width: 768px) {
            .review-set {
                padding-left: 1.5rem; /* md:px-6 */
                padding-right: 1.5rem; /* md:px-6 */
            }
        }


        /* --- Review Card Styling (Shorter, Text-focused Card) --- */
        .review-card {
            flex-shrink: 0; 
            display: flex;
            flex-direction: column;
            justify-content: flex-start; 
            
            background-color: #ffffff;
            padding: 0.75rem; /* Slightly more padding now that the visual is gone */
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            border: 1px solid #e0e7ff; 
            transition: all 0.3s ease-in-out;
            text-align: left; 
            
            /* FIXED RECTANGULAR SIZE (14rem wide, shorter height) */
            width: 14rem;
            min-height: 8rem; /* Reduced height as visual element is removed */
            box-sizing: border-box;
        }

        .review-card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        /* --- Review Card Content Styles --- */

        .author-name {
            font-weight: 600; 
            font-size: 1.125rem; 
            color: #111827;
            margin-bottom: 0.25rem;
        }

        .review-text {
            color: #374151; /* Darker text for better focus */
            line-height: 1.4;
            font-size: 0.875rem; 
            margin-bottom: 0.75rem;
            flex-grow: 1; /* Pushes the footer down */
            font-style: italic; /* Use italic for the quote itself */
        }

        .review-footer {
            /* Simplfied: only score remains. We just need padding and border. */
            display: flex;
            justify-content: flex-end; /* Align score to the right */
            align-items: center;
            padding-top: 0.75rem; 
            border-top: 1px solid #f0f0f0; 
            margin-top: auto; 
        }

        /* Removed .review-tag styling */

        .author-title {
            font-weight: 600;
            font-size: 1.25rem; 
            color: #4f46e5; /* Highlight the score/price */
        }

        /* Removed unused visual/icon styles */
        .review-visual, .icon-placeholder, .review-tag, .quote-icon, .author-info {
            display: none; 
        }

        .trust-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #f9fdf9;
    padding: 30px 10px;
    border-top: 1px solid #e0eee0;
    flex-wrap: wrap;
    gap: 20px;
}
.trust-item {
    text-align: center;
    max-width: 150px;
}
.trust-item i {
    font-size: 2rem;
    color: #2d5a27; /* Deep Ayurvedic Green */
    margin-bottom: 10px;
}
.trust-item p {
    font-size: 0.8rem;
    font-weight: 600;
    color: #444;
}