/* ==========================================================================
   AyurJeevan — Krishna Ayurved Design System (krishnaayurved.com Style)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Brand Colors - Exact Krishna Ayurved Palette */
    --color-primary: #305724;
    /* Deep Forest Green (rgb(48, 87, 36)) */
    --color-primary-dark: #223f1a;
    --color-primary-light: #447a33;
    --color-primary-pale: #eaf2e8;

    --color-accent: #f26f21;
    /* Vibrant Herbal Orange (rgb(242, 111, 33)) */
    --color-accent-hover: #dc5e14;
    --color-accent-pale: #fff1e8;

    --color-bg: #ffffff;
    --color-bg-secondary: #f3f6ef;
    /* Light olive/cream secondary */
    --color-bg-card: #f7f7f7;
    /* Soft card background */
    --color-bg-footer: #ecf3e9;
    /* Soft sage mint footer */

    --color-text: #1d1d1d;
    /* Dark charcoal main text */
    --color-text-secondary: #525151;
    /* Medium gray */
    --color-text-muted: #747474;
    /* Muted gray */

    --color-border: #e1e3e1;
    /* Crisp subtle border */
    --color-border-light: #ececec;

    --color-rating: #0cd25b;
    /* Bright green star rating */
    --color-rating-star: #f59e0b;
    /* Warm golden star */

    --radius-pill: 100px;
    --radius-card: 16px;
    --radius-sm: 8px;

    --site-max-width: 1360px;
    --font-main: 'Inter', sans-serif;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

/* ===== SITE CONTAINER ===== */
.site-container {
    width: 100%;
    max-width: var(--site-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

@media (min-width: 768px) {
    .site-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* ===== BUTTONS (Pill Styled like Krishna Ayurved) ===== */
.btn-krishna {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--color-primary);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-primary);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    line-height: 1.2;
}

.btn-krishna:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(48, 87, 36, 0.2);
}

.btn-krishna-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--color-accent);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-accent);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.btn-krishna-orange:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(242, 111, 33, 0.25);
}

.btn-krishna-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: transparent;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--color-primary);
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-krishna-outline:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

/* ===== ANNOUNCEMENT BAR (Ultra-Premium Gradient) ===== */
.announcement-bar {
    background: linear-gradient(90deg, #0e1f0b 0%, #1a3312 20%, #243d18 50%, #1a3312 80%, #0e1f0b 100%);
    color: #ffffff;
    font-size: 0.78125rem;
    font-weight: 500;
    padding: 0.6rem 1rem;
    text-align: center;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 40;
    border-bottom: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
    animation: shimmer-bar 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer-bar {
    0% { left: -100%; }
    100% { left: 200%; }
}

.announcement-bar a {
    color: #fde68a;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

.announcement-bar a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.announcement-slide {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    letter-spacing: 0.015em;
}

@media (min-width: 640px) {
    .announcement-slide {
        font-size: 0.8125rem;
    }
}

.announcement-slide.active {
    display: flex;
    animation: fadeSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MAIN HEADER (Glass Premium) ===== */
.main-header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(48, 87, 36, 0.08);
    box-shadow: 0 4px 24px -4px rgba(32, 60, 24, 0.08), 0 1px 4px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

/* Top bar row with search and actions */
.header-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

/* Search Bar (Luxury Pill) */
.header-search-wrapper {
    flex: 1;
    max-width: 580px;
    position: relative;
}

.header-search-container {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #f8faf7;
    border: 1.5px solid #dce4d9;
    border-radius: var(--radius-pill);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-search-container:focus-within {
    background-color: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(48, 87, 36, 0.12), 0 8px 24px -4px rgba(48, 87, 36, 0.08);
}

.header-search-input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0.65rem 1rem 0.65rem 2.75rem;
    font-size: 0.84375rem;
    color: var(--color-text);
    outline: none;
    font-weight: 500;
}

.header-search-input::placeholder {
    color: #8b9588;
    font-weight: 400;
}

.header-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.15rem;
    height: 1.15rem;
    color: var(--color-primary);
    pointer-events: none;
}

.header-search-submit {
    margin-right: 0.35rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 0.5rem 1.15rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 2px 8px rgba(48, 87, 36, 0.25);
    white-space: nowrap;
}

.header-search-submit:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    box-shadow: 0 4px 12px rgba(48, 87, 36, 0.35);
    transform: translateY(-0.5px);
}

/* Category Navigation Menu Bar */
.header-nav-bar {
    border-top: 1px solid rgba(48, 87, 36, 0.08);
    background: linear-gradient(180deg, #fafcf9 0%, #ffffff 100%);
}

.header-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
}

.header-nav-links-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    overflow-x: auto;
    scrollbar-width: none;
    width: 100%;
}

.header-nav-links-wrap::-webkit-scrollbar {
    display: none;
}

.header-nav-item {
    white-space: nowrap;
}

.header-nav-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.875rem;
    border-radius: var(--radius-pill);
    position: relative;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.header-nav-link:hover {
    color: var(--color-primary);
    background-color: var(--color-primary-pale);
    transform: translateY(-0.5px);
}

.header-nav-link.active {
    color: var(--color-primary);
    background: linear-gradient(135deg, #eaf2e8 0%, #d8edda 100%);
    font-weight: 700;
    border: 1.5px solid rgba(48, 87, 36, 0.18);
    box-shadow: 0 1px 6px rgba(48, 87, 36, 0.1), inset 0 1px 0 rgba(255,255,255,0.8);
}

.header-nav-link-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-primary);
    display: inline-block;
    box-shadow: 0 0 6px rgba(48, 87, 36, 0.5);
}

/* Flagship Luxury Button */
.header-flagship-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fff8ed 0%, #fef3c7 50%, #fff1d6 100%);
    border: 1.5px solid #f59e0b;
    padding: 0.4rem 0.875rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.2);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.header-flagship-btn:hover {
    transform: translateY(-1px);
    border-color: #d97706;
    box-shadow: 0 5px 18px rgba(245, 158, 11, 0.3);
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fef3c7 100%);
}

.header-flagship-tag {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 1px 4px rgba(217, 119, 6, 0.3);
}

/* Header Action Buttons */
.header-action-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
    padding: 0.45rem 0.8rem;
    border-radius: var(--radius-pill);
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.header-action-pill:hover {
    color: var(--color-primary);
    border-color: rgba(48, 87, 36, 0.3);
    background-color: var(--color-primary-pale);
    transform: translateY(-0.5px);
}

.header-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0.9rem 0.4rem 0.45rem;
    border-radius: var(--radius-pill);
    background: #ffffff;
    border: 1.5px solid #dce4d9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
    cursor: pointer;
}

.header-cart-btn:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(48, 87, 36, 0.15);
    transform: translateY(-1px);
}

.header-cart-icon-wrap {
    position: relative;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background-color: var(--color-primary-pale);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #e05307 100%);
    color: #ffffff;
    font-size: 0.6875rem;
    font-weight: 800;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 0.25rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(242, 111, 33, 0.35);
}

/* Header Helpline & Email Desk */
.header-helpline-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: linear-gradient(135deg, #f0f7ee 0%, #e5f0e3 100%);
    border: 1.5px solid rgba(48, 87, 36, 0.18);
    padding: 0.35rem 0.95rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 2px 6px rgba(48, 87, 36, 0.06);
    transition: all 0.2s ease;
}

.header-helpline-chip:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(48, 87, 36, 0.12);
    transform: translateY(-0.5px);
}

.header-email-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78125rem;
    font-weight: 500;
    color: #4b5563;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    transition: all 0.2s ease;
}

.header-email-chip:hover {
    color: var(--color-primary);
    border-color: rgba(48, 87, 36, 0.25);
    background-color: #ffffff;
}

/* ===== HERO CAROUSEL — PREMIUM FULL-BLEED CINEMATIC ===== */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    background: #09170a;
    width: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.hero-slide {
    display: none;
    position: relative;
    width: 100%;
    text-decoration: none;
    line-height: 0;
    overflow: hidden;
}

.hero-slide.active {
    display: block;
    animation: heroSlideFade 0.65s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes heroSlideFade {
    from {
        opacity: 0;
        transform: scale(1.015);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-slide-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center center;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active:hover .hero-slide-img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .hero-slide-img {
        aspect-ratio: 16 / 9;
        min-height: 230px;
    }
}

/* Arrow navigation buttons */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.25s ease;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.hero-arrow:hover {
    background: rgba(48, 87, 36, 0.85);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
    transform: translateY(-50%) scale(1.08);
}

.hero-arrow--prev {
    left: 1rem;
}

.hero-arrow--next {
    right: 1rem;
}

@media (min-width: 768px) {
    .hero-arrow {
        width: 3.25rem;
        height: 3.25rem;
    }

    .hero-arrow--prev {
        left: 1.75rem;
    }

    .hero-arrow--next {
        right: 1.75rem;
    }
}

/* Progress dots */
.hero-progress {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 20;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.4rem 0.85rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-dot.active {
    width: 26px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

/* Slide counter */
.hero-counter {
    position: absolute;
    bottom: 1.25rem;
    right: 1.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.06em;
    z-index: 20;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-counter span:first-child {
    font-size: 0.95rem;
    color: #ffffff;
}

/* ===== TRUST / USP STRIP ===== */
.usp-bar {
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-border);
    padding: 1.25rem 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .usp-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.usp-icon-wrap {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background-color: var(--color-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    font-size: 1.25rem;
}

.usp-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.1rem;
}

.usp-sub {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

/* ===== "SHOP BY CONCERN?" CIRCLES ===== */
.concern-section {
    padding: 3.5rem 0;
    background-color: #ffffff;
}

.section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

.concern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .concern-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 1.5rem;
    }
}

.concern-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    group: hover;
}

.concern-circle {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #f3f6ef 0%, #eaf2e8 100%);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.65rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .concern-circle {
        width: 6.25rem;
        height: 6.25rem;
    }
}

.concern-circle img {
    width: 65%;
    height: 65%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.concern-card:hover .concern-circle {
    border-color: var(--color-primary);
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 20px rgba(48, 87, 36, 0.15);
}

.concern-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
    transition: color 0.2s ease;
}

.concern-card:hover .concern-name {
    color: var(--color-primary);
}

/* ===== BESTSELLER PRODUCT CARDS (Krishna Ayurved Style) ===== */
.product-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: #d1d9cd;
}

.product-image-wrap {
    position: relative;
    padding-top: 100%;
    /* 1:1 Aspect ratio */
    background-color: #ffffff;
    overflow: hidden;
}

.product-image-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.06);
}

.product-badge-group {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    z-index: 5;
}

.product-pill-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
}

.badge-bestseller {
    background-color: var(--color-primary);
    color: #ffffff;
}

.badge-discount {
    background-color: var(--color-accent);
    color: #ffffff;
}

.badge-new {
    background-color: #10b981;
    color: #ffffff;
}

.product-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: var(--color-bg-card);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 0.35rem;
}

.rating-badge {
    background-color: #eaf8ee;
    color: #16a34a;
    padding: 0.15rem 0.45rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.product-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.35;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5rem;
}

.product-title:hover {
    color: var(--color-primary);
}

.product-variant-pills {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.variant-pill {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-border);
    background-color: #ffffff;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.variant-pill.active {
    border-color: var(--color-primary);
    background-color: var(--color-primary-pale);
    color: var(--color-primary);
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: auto;
    margin-bottom: 0.85rem;
}

.product-price-current {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
}

.product-price-old {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.product-price-save {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.btn-card-atc {
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    background-color: var(--color-primary);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn-card-atc:hover {
    background-color: var(--color-primary-dark);
}

/* Category Filter Tabs (All, Juices, Churna, etc.) */
.category-tabs-wrap {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.category-tab-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.84375rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-border);
    background-color: #ffffff;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.category-tab-btn:hover,
.category-tab-btn.active {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: #ffffff;
}

/* ===== ZADU FLAGSHIP BREAKTHROUGH BANNER ===== */
.flagship-banner-section,
.vaidya-banner-section {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, #1c3614 0%, #294c1f 60%, #3e6d2c 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.flagship-banner-grid,
.vaidya-banner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {

    .flagship-banner-grid,
    .vaidya-banner-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.flagship-badge,
.vaidya-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.95rem;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.flagship-title,
.vaidya-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.flagship-title span,
.vaidya-title span {
    color: #fbd38d;
}

.flagship-features-list,
.vaidya-features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {

    .flagship-features-list,
    .vaidya-features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.flagship-feat-item,
.vaidya-feat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.flagship-feat-check,
.vaidya-feat-check {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.flagship-card-box,
.vaidya-card-box {
    background-color: #ffffff;
    color: var(--color-text);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* Gallery Thumbnails & Interactive Slider */
.gallery-thumb-btn {
    cursor: pointer;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.gallery-thumb-btn.border-primary {
    border-color: var(--color-primary) !important;
    box-shadow: 0 4px 12px rgba(48, 87, 36, 0.2) !important;
}

.product-slider-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    border: 1.5px solid #e2ebd8;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    max-height: 520px;
}

@media (max-width: 640px) {
    .product-slider-container {
        min-height: 300px;
        max-height: 380px;
        border-radius: 18px;
    }
}

.slider-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

.slider-nav-arrow:hover {
    background: #ffffff;
    color: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.slider-nav-prev {
    left: 1rem;
}

.slider-nav-next {
    right: 1rem;
}

@media (max-width: 640px) {
    .slider-nav-arrow {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1rem;
    }

    .slider-nav-prev {
        left: 0.5rem;
    }

    .slider-nav-next {
        right: 0.5rem;
    }
}

.slider-counter-chip {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-pill);
    z-index: 5;
    letter-spacing: 0.05em;
}

/* Right-side Benefits Card */
.detail-benefits-card {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbf7 100%);
    border: 1.5px solid #d9e6cf;
    border-radius: 20px;
    padding: 1.35rem;
    box-shadow: 0 6px 20px -6px rgba(48, 87, 36, 0.08);
}

.benefit-pill-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #e5eedc;
}

.benefit-pill-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.benefit-icon-badge {
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    background: #eaf3e6;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Product Zoom Button & Lightbox */
.product-zoom-btn {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-zoom-btn:hover {
    background: #ffffff;
    transform: scale(1.12);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    color: var(--color-primary);
}

.image-zoom-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.image-zoom-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.image-zoom-content {
    position: relative;
    max-width: 92vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-zoom-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    background: #ffffff;
    padding: 1rem;
}

.image-zoom-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: #ffffff;
    color: #111827;
    font-size: 1.15rem;
    font-weight: 800;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease;
    z-index: 10;
}

.image-zoom-close:hover {
    transform: scale(1.1);
    background: #f3f4f6;
}

/* Instant Buy Button (High Energy Orange — Clean, Compact & Highly Responsive) */
.btn-instant-buy {
    width: 100%;
    min-height: 48px;
    padding: 0.8rem 1.4rem;
    background: linear-gradient(135deg, #f26f21 0%, #ea580c 50%, #c2410c 100%);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 8px 22px -4px rgba(234, 88, 12, 0.45);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn-instant-buy::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: btnShimmer 3.5s infinite;
}

@keyframes btnShimmer {
    0% {
        left: -100%;
    }

    40%,
    100% {
        left: 200%;
    }
}

.btn-instant-buy:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -4px rgba(234, 88, 12, 0.55);
}

.btn-instant-buy:active {
    transform: translateY(0);
}

/* Mobile Sticky Bottom Checkout Bar */
.mobile-sticky-buy-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1.5px solid #e5e7eb;
    padding: 0.75rem 1rem;
    z-index: 90;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    transform: translateY(120%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sticky-buy-bar.visible {
    transform: translateY(0);
}

@media (min-width: 1024px) {
    .mobile-sticky-buy-bar {
        display: none !important;
    }
}

/* ===== TESTIMONIALS SECTION (Ultra-Premium Ayurvedic Styling) ===== */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fbfdf9 0%, #f1f7ed 50%, #e8f2e2 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(48, 87, 36, 0.25), transparent);
}

.testimonial-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.95rem;
    background: rgba(48, 87, 36, 0.08);
    border: 1px solid rgba(48, 87, 36, 0.2);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.85rem;
}

.testimonial-card {
    background: #ffffff;
    border: 1.5px solid #e2ebd8;
    border-radius: 22px;
    padding: 2rem 1.75rem;
    box-shadow: 0 10px 28px -6px rgba(35, 66, 26, 0.07), 0 2px 8px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    isolation: isolate;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: #305724;
    box-shadow: 0 20px 35px -8px rgba(35, 66, 26, 0.16), 0 0 0 1px rgba(48, 87, 36, 0.15);
}

/* Featured Spotlight Card (Gold / ZADU 40) */
.testimonial-card.featured-card {
    background: linear-gradient(180deg, #ffffff 0%, #fefcf3 100%);
    border: 2px solid #f59e0b;
    box-shadow: 0 14px 34px -8px rgba(245, 158, 11, 0.2), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.testimonial-card.featured-card:hover {
    box-shadow: 0 24px 44px -8px rgba(245, 158, 11, 0.3), 0 0 0 2px #f59e0b;
}

.testimonial-spotlight-ribbon {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.85rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.35);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.testimonial-quote-watermark {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-family: Georgia, serif;
    font-size: 4.5rem;
    line-height: 1;
    color: rgba(48, 87, 36, 0.07);
    pointer-events: none;
    user-select: none;
    z-index: -1;
}

.testimonial-card.featured-card .testimonial-quote-watermark {
    color: rgba(245, 158, 11, 0.12);
}

.testimonial-concern-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-pill);
    background-color: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
    margin-bottom: 0.85rem;
    width: fit-content;
}

.testimonial-card.featured-card .testimonial-concern-tag {
    background-color: #fffbeb;
    color: #b45309;
    border-color: #fde68a;
}

.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    color: #f59e0b;
    font-size: 1.05rem;
    margin-bottom: 0.85rem;
}

.testimonial-stars .rating-num {
    margin-left: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 800;
    color: #374151;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    font-style: italic;
    flex: 1;
}

.testimonial-text strong {
    color: #111827;
    font-weight: 700;
}

.testimonial-pill-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8faf5;
    border: 1px solid #e5ede0;
    border-radius: 12px;
    padding: 0.5rem 0.75rem;
    font-size: 0.6875rem;
    margin-bottom: 1rem;
}

.testimonial-pill-prod {
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.testimonial-pill-metric {
    color: #047857;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.testimonial-author-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border-top: 1px solid #eef3eb;
    padding-top: 1rem;
    margin-top: auto;
}

.testimonial-avatar {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d5a27 0%, #173812 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.testimonial-avatar.avatar-gold {
    background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
}

.testimonial-avatar.avatar-rose {
    background: linear-gradient(135deg, #0d9488 0%, #064e3b 100%);
}

.testimonial-avatar.avatar-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
}

.testimonial-name {
    font-weight: 800;
    font-size: 0.9375rem;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.testimonial-location {
    font-size: 0.75rem;
    color: #4b5563;
    margin-top: 0.1rem;
}

.testimonial-verified-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #15803d;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.15rem;
}

.testimonial-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.35);
    display: inline-block;
}

/* Trust Metric Ribbon below testimonials */
.testimonials-stats-ribbon {
    margin-top: 3rem;
    background: #ffffff;
    border: 1px solid #e1e8db;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 25px -5px rgba(35, 66, 26, 0.05);
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .testimonials-stats-ribbon {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-stats-ribbon {
        grid-template-columns: repeat(4, 1fr);
    }
}

.testimonial-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-stat-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.stat-icon-gold {
    background: #fef3c7;
    color: #b45309;
}

.stat-icon-green {
    background: #dcfce7;
    color: #15803d;
}

.stat-icon-blue {
    background: #e0e7ff;
    color: #4338ca;
}

.stat-icon-teal {
    background: #ccfbf1;
    color: #0f766e;
}

.testimonial-stat-number {
    font-size: 1.15rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

.testimonial-stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.15rem;
}

/* ===== MEDIA & MARKETPLACE TRUST BAR ===== */
.media-trust-section {
    padding: 3rem 0;
    background: #ffffff;
    border-top: 1px solid #ebf0e6;
    border-bottom: 1px solid #ebf0e6;
}

.media-logo-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.marketplace-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-pill);
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    font-weight: 700;
    font-size: 0.875rem;
    color: #374151;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
    text-decoration: none;
}

.marketplace-badge-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.marketplace-badge-pill.pill-amazon:hover {
    border-color: #ff9900;
    color: #d97706;
}

.marketplace-badge-pill.pill-flipkart:hover {
    border-color: #2874f0;
    color: #1d4ed8;
}

.marketplace-badge-pill.pill-tata:hover {
    border-color: #ff6f61;
    color: #e11d48;
}

.marketplace-badge-pill.pill-apollo:hover {
    border-color: #004f98;
    color: #0369a1;
}

.marketplace-badge-pill.pill-netmeds:hover {
    border-color: #24aed1;
    color: #0891b2;
}

.marketplace-icon-wrap {
    font-size: 1.15rem;
    line-height: 1;
}

/* ===== FOOTER (Ultra-Premium & Colorful Royal Emerald Design) ===== */
.main-footer {
    background: radial-gradient(circle at 50% 0%, #12381b 0%, #092110 50%, #041208 100%);
    color: #e2e8f0;
    position: relative;
    padding-top: 5rem;
    overflow: hidden;
}

/* Colorful Jeweled Gradient Top Border */
.footer-top-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #06b6d4 20%, #f59e0b 40%, #ef4444 60%, #a855f7 80%, #10b981 100%);
    background-size: 200% 100%;
    animation: footerAccentShimmer 8s linear infinite;
}

@keyframes footerAccentShimmer {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* Ambient glow bubbles in footer */
.footer-ambient-glow-1 {
    position: absolute;
    top: 10%;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.footer-ambient-glow-2 {
    position: absolute;
    bottom: 5%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Newsletter Card (Floating Luxury Dark Glass) */
.footer-newsletter-wrap {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 26px;
    padding: 2.75rem 2.5rem;
    margin-bottom: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.newsletter-tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.85rem;
    border-radius: var(--radius-pill);
    background: rgba(245, 158, 11, 0.18);
    border: 1px solid rgba(245, 158, 11, 0.45);
    color: #fbbf24;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.65rem;
}

.newsletter-title-gradient {
    font-size: 1.85rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
}

.newsletter-form-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 540px;
}

@media (min-width: 640px) {
    .newsletter-form-row {
        flex-direction: row;
        gap: 0;
    }
}

.newsletter-input {
    flex: 1;
    padding: 0.95rem 1.4rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    color: #ffffff;
    outline: none;
    transition: all 0.2s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    border-color: #10b981;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

@media (min-width: 640px) {
    .newsletter-input {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-right: none;
    }
}

.newsletter-btn {
    padding: 0.95rem 1.85rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9375rem;
    border: 1.5px solid #10b981;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35);
}

@media (min-width: 640px) {
    .newsletter-btn {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(16, 185, 129, 0.45);
}

/* Footer columns grid */
.footer-columns-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.75rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .footer-columns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-columns-grid {
        grid-template-columns: 1.4fr 0.9fr 1fr 1.3fr;
    }
}

.footer-col-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-col-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.4), transparent);
    max-width: 60px;
}

.footer-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-link {
    font-size: 0.875rem;
    color: #cbd5e1;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-nav-link:hover {
    color: #34d399;
    transform: translateX(4px);
}

/* Colorful Social Media Buttons */
.footer-social-btn {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer-social-btn:hover {
    transform: translateY(-4px) scale(1.08);
}

.social-facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d54b8 100%);
}

.social-facebook:hover {
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.45);
}

.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-instagram:hover {
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.45);
}

.social-youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.social-youtube:hover {
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.45);
}

.social-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.social-whatsapp:hover {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

/* Colorful Trust & Certification Pills */
.cert-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.cert-pill:hover {
    transform: translateY(-2px);
}

.cert-ayush {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #6ee7b7;
}

.cert-gmp {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #93c5fd;
}

.cert-assam {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.45);
    color: #fde047;
}

.cert-pure {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2) 0%, rgba(225, 29, 72, 0.1) 100%);
    border: 1px solid rgba(244, 63, 94, 0.4);
    color: #fda4af;
}

/* Helpline Consultation Card inside Footer */
.footer-helpline-box {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(16, 185, 129, 0.04) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 16px;
    padding: 1.15rem;
    margin-top: 1.25rem;
}

.footer-helpline-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-helpline-number {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin-top: 0.25rem;
    display: inline-block;
    letter-spacing: 0.02em;
}

/* Colorful Payment Badges */
.payment-badge-chip {
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid transparent;
}

.pay-upi {
    background: #ffffff;
    color: #0b9347;
    border-color: #0b9347;
}

.pay-gpay {
    background: #ffffff;
    color: #1a73e8;
    border-color: #ea4335;
}

.pay-phonepe {
    background: #5f259f;
    color: #ffffff;
}

.pay-paytm {
    background: #00b9f5;
    color: #ffffff;
}

.pay-rupay {
    background: #ffffff;
    color: #0f4a86;
    border-color: #f37021;
}

.pay-cod {
    background: #f59e0b;
    color: #1e1b4b;
}

/* Bottom Row */
.footer-bottom-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: #94a3b8;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .footer-bottom-row {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .footer-bottom-row {
        flex-direction: row;
    }
}

/* ===== CART SIDEBAR DRAWER ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 110;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cart-sidebar.open {
    right: 0;
}

.cart-free-shipping-bar {
    background-color: var(--color-primary-pale);
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.shipping-progress-track {
    width: 100%;
    height: 6px;
    background-color: #d2e4ce;
    border-radius: var(--radius-pill);
    overflow: hidden;
    margin-top: 0.4rem;
}

.shipping-progress-fill {
    height: 100%;
    background-color: var(--color-primary);
    border-radius: var(--radius-pill);
    transition: width 0.4s ease;
}

/* ===== TOAST NOTIFICATION ===== */
.krishna-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 200;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.krishna-toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ===== GOOGLE TRANSLATE WIDGET STYLING & BANNER REMOVAL ===== */
body {
    top: 0px !important;
    position: static !important;
    margin-top: 0px !important;
}

/* Hide ALL Google translate top banners, iframes, tooltips, branding */
iframe.goog-te-banner-frame,
iframe[class*="goog-te-banner-frame"],
iframe[class*="VIpgJd"],
iframe[class*="skiptranslate"],
.goog-te-banner-frame,
.VIpgJd-ZJuic-Oofw0p-V67p2e,
.VIpgJd-ZJuic-Oofw0p,
[id*=".container"],
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0px !important;
    width: 0px !important;
    pointer-events: none !important;
}

.header-translate-wrap {
    display: inline-flex !important;
    align-items: center;
    position: relative;
    vertical-align: middle;
}

/* Hide all extra text, spans, images, links inside Google Translate gadget */
.goog-te-gadget {
    font-family: var(--font-main) !important;
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
    white-space: nowrap !important;
    display: inline-block !important;
}

.goog-te-gadget * {
    font-size: 0 !important;
}

.goog-te-gadget>span,
.goog-te-gadget>div,
.goog-te-gadget a,
.goog-te-gadget img,
.goog-te-gadget span * {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
}

/* Style ONLY the Select Box (.goog-te-combo) */
.goog-te-gadget .goog-te-combo {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
    padding: 0.4rem 1.8rem 0.4rem 0.85rem !important;
    border-radius: var(--radius-pill) !important;
    border: 1.5px solid #d1d5db !important;
    background-color: #f9fafb !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23305724'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.6rem center !important;
    background-size: 0.75rem !important;
    color: #1f2937 !important;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    outline: none !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
    max-width: 135px;
    height: auto !important;
    line-height: normal !important;
}

.goog-te-gadget .goog-te-combo option {
    font-size: 0.8125rem !important;
    color: #1f2937 !important;
    background-color: #ffffff !important;
}

.goog-te-gadget .goog-te-combo:hover,
.goog-te-gadget .goog-te-combo:focus {
    border-color: var(--color-primary) !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(48, 87, 36, 0.12) !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* ===== CUSTOM LUXURY LANGUAGE SELECTOR ===== */
.custom-lang-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background-color: #f8faf7;
    border: 1.5px solid #dce4d9;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    white-space: nowrap;
}

.custom-lang-pill-btn:hover {
    background-color: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(48, 87, 36, 0.12);
}

.custom-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 200px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    padding: 0.4rem;
    z-index: 100;
    display: none;
    flex-direction: column;
    gap: 2px;
}

.custom-lang-dropdown.show {
    display: flex;
    animation: dropdownFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-opt-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    border: none;
    background: transparent;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    text-align: left;
    transition: all 0.15s ease;
}

.lang-opt-item:hover {
    background-color: var(--color-primary-pale);
    color: var(--color-primary);
}

.lang-opt-item.active {
    background-color: var(--color-primary-pale);
    color: var(--color-primary);
    font-weight: 700;
}

/* Mobile Drawer Language Grid */
.mobile-lang-btn {
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
    border: 1.5px solid #e5e7eb;
    background-color: #f9fafb;
    font-size: 0.78125rem;
    font-weight: 600;
    color: #374151;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-lang-btn:hover,
.mobile-lang-btn.active {
    border-color: var(--color-primary);
    background-color: var(--color-primary-pale);
    color: var(--color-primary);
    font-weight: 700;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE — SLIDER, ZOOM, TRUST STRIP & BUY BUTTON
   ========================================================================== */

/* Main Slider Container */
.product-slider-container {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    border: 1.5px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    max-height: 440px;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

@media (max-width: 640px) {
    .product-slider-container {
        min-height: 280px;
        max-height: 360px;
        border-radius: 16px;
    }
}

/* Slider Nav Arrows */
.slider-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 25;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    padding: 0;
}

.slider-nav-arrow:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    color: var(--color-primary);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.slider-nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-nav-prev {
    left: 10px;
}

.slider-nav-next {
    right: 10px;
}

/* Slide Counter Chip */
.slider-counter-chip {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    z-index: 20;
    pointer-events: none;
    letter-spacing: 0.02em;
}

/* Product Zoom Icon Button */
.product-zoom-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    z-index: 22;
    transition: all 0.2s ease;
    padding: 0;
    outline: none;
}

.product-zoom-btn:hover {
    transform: scale(1.1);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.product-zoom-btn:active {
    transform: scale(0.95);
}

/* Pagination Dots */
.slider-dot-btn {
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    outline: none;
    padding: 0;
}

/* 4 Trust Boxes — Strict Single Horizontal Row Across All Screen Sizes */
.product-trust-strip {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 6px !important;
    margin-top: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

@media (max-width: 480px) {
    .product-trust-strip {
        gap: 4px !important;
        margin-top: 10px !important;
    }
}

.product-trust-item {
    background: #eaf2e8 !important;
    border: 1px solid rgba(48, 87, 36, 0.2) !important;
    border-radius: 12px !important;
    padding: 8px 3px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

.product-trust-item .trust-icon {
    font-size: 1.15rem !important;
    line-height: 1 !important;
    margin-bottom: 3px !important;
    display: block !important;
}

.product-trust-item .trust-label {
    font-size: 0.65rem !important;
    font-weight: 800 !important;
    color: var(--color-primary, #305724) !important;
    line-height: 1.15 !important;
    text-align: center !important;
    display: block !important;
    word-break: break-word !important;
    white-space: normal !important;
    letter-spacing: -0.01em !important;
}

@media (max-width: 420px) {
    .product-trust-item {
        padding: 6px 2px !important;
        border-radius: 8px !important;
    }

    .product-trust-item .trust-icon {
        font-size: 0.95rem !important;
        margin-bottom: 2px !important;
    }

    .product-trust-item .trust-label {
        font-size: 0.58rem !important;
        line-height: 1.1 !important;
    }
}

/* Instant Buy Button */
.btn-instant-buy {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    padding: 0.75rem 1.25rem !important;
    background: linear-gradient(135deg, #f26f21 0%, #dc5e14 100%) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    letter-spacing: 0.02em !important;
    border-radius: 14px !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(242, 111, 33, 0.35) !important;
    cursor: pointer !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-transform: none !important;
    min-height: 48px !important;
    white-space: nowrap !important;
}

.btn-instant-buy:hover {
    background: linear-gradient(135deg, #dc5e14 0%, #c44b04 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 18px rgba(242, 111, 33, 0.45) !important;
}

.btn-instant-buy:active {
    transform: translateY(0) !important;
}

/* Fullscreen Lightbox Zoom Modal */
.image-zoom-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.image-zoom-modal.active {
    display: flex;
    opacity: 1;
}

.image-zoom-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-zoom-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #ffffff;
    padding: 10px;
}

.image-zoom-close {
    position: absolute;
    top: -45px;
    right: -10px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.image-zoom-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

@media (max-width: 640px) {
    .image-zoom-close {
        top: -40px;
        right: 0;
    }
}

/* Home / Global USP Bar */
.usp-bar {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .usp-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.usp-icon-wrap {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.usp-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.usp-sub {
    font-size: 0.6875rem;
    color: #6b7280;
    margin: 0;
}

/* ==========================================================================
   ULTRA-PREMIUM SECURE CHECKOUT PAGE STYLES
   ========================================================================== */
.checkout-page-bg {
    background-color: #f8faf7;
    min-height: 100vh;
}

.checkout-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(48, 87, 36, 0.1);
    box-shadow: 0 10px 30px -5px rgba(34, 63, 26, 0.05), 0 2px 6px -1px rgba(0, 0, 0, 0.02);
    padding: 1.25rem;
    transition: all 0.25s ease;
}

@media (min-width: 640px) {
    .checkout-card {
        padding: 2rem;
    }
}

.checkout-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid #f0f4ee;
}

.checkout-input-field {
    width: 100%;
    padding: 0.8125rem 1rem;
    font-size: 0.8125rem;
    background-color: #ffffff;
    border: 1.5px solid #dce4d9;
    border-radius: 14px;
    color: #111827;
    font-weight: 500;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.checkout-input-field:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 3.5px rgba(48, 87, 36, 0.12);
}

.checkout-input-field::placeholder {
    color: #9ca3af;
    font-size: 0.78125rem;
}

/* Payment Option Radio Cards */
.payment-option-card {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1.15rem;
    border-radius: 18px;
    border: 2px solid #e5e9e2;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    user-select: none;
}

.payment-option-card:hover {
    border-color: rgba(48, 87, 36, 0.4);
    background-color: #fafcf9;
}

.payment-option-card.active {
    border-color: var(--color-primary);
    background: linear-gradient(180deg, #f7faf6 0%, #ffffff 100%);
    box-shadow: 0 8px 24px -4px rgba(48, 87, 36, 0.12);
}

.payment-radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.payment-option-card.active .payment-radio-circle {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
}

.payment-radio-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.payment-option-card.active .payment-radio-dot {
    opacity: 1;
    transform: scale(1);
}

/* Payment Brand Logos Bar */
.payment-logos-strip {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
    margin-top: 0.625rem;
}

.payment-brand-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 6px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.payment-brand-chip svg,
.payment-brand-chip img {
    height: 14px;
    width: auto;
    object-fit: contain;
}

/* Order Summary Card */
.order-summary-box {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(48, 87, 36, 0.12);
    box-shadow: 0 12px 36px -6px rgba(34, 63, 26, 0.07);
    padding: 1.25rem;
}

@media (min-width: 640px) {
    .order-summary-box {
        padding: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .order-summary-box {
        position: sticky;
        top: 96px;
    }
}

.checkout-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f26f21 0%, #dc5e14 100%);
    color: #ffffff;
    font-size: 1.0625rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    border-radius: 16px;
    border: none;
    box-shadow: 0 8px 24px -2px rgba(242, 111, 33, 0.45);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 52px;
}

.checkout-submit-btn:hover {
    background: linear-gradient(135deg, #dc5e14 0%, #c44b04 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -2px rgba(242, 111, 33, 0.55);
}

.checkout-submit-btn:active {
    transform: translateY(0);
}

.checkout-trust-badge-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f0f4ee;
}

@media (min-width: 640px) {
    .checkout-trust-badge-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

.checkout-mini-trust {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8faf7;
    border: 1px solid #e5ebe2;
    padding: 0.5rem 0.625rem;
    border-radius: 10px;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--color-primary);
}







/* ==========================================================================
   SLIDE-OUT RIGHT SIDE CART DRAWER (Krishna Ayurved Luxury Theme)
   ========================================================================== */
.cart-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    z-index: 99998 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.cart-overlay.open {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.cart-sidebar {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 420px !important;
    background: #ffffff !important;
    z-index: 99999 !important;
    box-shadow: -10px 0 45px rgba(0, 0, 0, 0.3) !important;
    display: flex !important;
    flex-direction: column !important;
    transform: translateX(100%) !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.cart-sidebar.open {
    transform: translateX(0) !important;
}

.cart-free-shipping-bar {
    background: #f4f8f3 !important;
    border-bottom: 1px solid #e2ebe0 !important;
    padding: 0.875rem 1.25rem !important;
}

.shipping-progress-track {
    width: 100% !important;
    height: 6px !important;
    background: #e2e9e0 !important;
    border-radius: 999px !important;
    overflow: hidden !important;
    margin-top: 0.45rem !important;
}

.shipping-progress-fill {
    height: 100% !important;
    background: linear-gradient(90deg, #305724 0%, #4caf50 100%) !important;
    border-radius: 999px !important;
    transition: width 0.4s ease !important;
}

/* ==========================================================================
   SWEETALERT2 CUSTOM AYURVEDIC LUXURY THEME
   ========================================================================== */
.swal2-popup.swal-ayur-popup {
    border-radius: 24px !important;
    padding: 1.75rem 1.5rem !important;
    border: 1.5px solid rgba(48, 87, 36, 0.18) !important;
    box-shadow: 0 20px 45px -10px rgba(34, 63, 26, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.8) inset !important;
    background: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
}

.swal-custom-product-preview {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: #f7faf6;
    border: 1px solid #e1ebe0;
    border-radius: 16px;
    padding: 0.875rem 1rem;
    margin: 1rem 0 0.5rem 0;
    text-align: left;
}

.swal-custom-product-preview img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #dce5db;
    padding: 2px;
    flex-shrink: 0;
}

.swal-prod-info {
    flex: 1;
    min-width: 0;
}

.swal-prod-info h4 {
    font-size: 0.84375rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.swal-prod-price {
    font-size: 0.875rem;
    font-weight: 800;
    color: #305724;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.swal-qty-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #4b5563;
    background: #e9f0e8;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
}

.swal2-actions {
    gap: 0.625rem !important;
    width: 100% !important;
    margin-top: 1.25rem !important;
    justify-content: center !important;
}

.swal-btn-goto-cart {
    background: linear-gradient(135deg, #f26f21 0%, #dc5e14 100%) !important;
    color: #ffffff !important;
    font-size: 0.84375rem !important;
    font-weight: 800 !important;
    border-radius: 12px !important;
    padding: 0.75rem 1.25rem !important;
    box-shadow: 0 6px 18px -2px rgba(242, 111, 33, 0.4) !important;
    transition: all 0.2s ease !important;
    border: none !important;
    cursor: pointer !important;
}

.swal-btn-goto-cart:hover {
    background: linear-gradient(135deg, #dc5e14 0%, #c44b04 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 22px -2px rgba(242, 111, 33, 0.5) !important;
}

.swal-btn-continue {
    background: #f3f5f2 !important;
    color: #374151 !important;
    font-size: 0.84375rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    padding: 0.75rem 1.25rem !important;
    border: 1px solid #d8dfd6 !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}

.swal-btn-continue:hover {
    background: #e9ece8 !important;
    color: #111827 !important;
}