/* ==========================================
           1. THEME CONFIGURATION
        ========================================== */
:root {
    --primary: #003178;
    --on-primary: #ffffff;
    --primary-container: #0d47a1;
    --primary-fixed: #d9e2ff;
    --light-purple: #f5f7fc;
    /*    --secondary: #526069;*/
    --secondary: #000000;
    --on-secondary: #ffffff;
    --secondary-fixed: #e6eaf5;
    --surface: #f7f9fd;
    --surface-bright: #f7f9fd;
    --surface-container-low: #f2f4f8;
    --surface-container-lowest: #ffffff;
    --outline: #737783;
    --outline-variant: #c3c6d4;
    --on-surface: #000000;
    --black: #000000;
    --spacing-gutter: 24px;
    --spacing-stack-lg: 64px;
    --radius-3xl: 24px;
    --radius-2xl: 12px;
    /* Primary variations */
    --primary-dark: #001d4a;
    --primary-light: #0d47a1;
    --primary-soft: #e8eef9;
    /* Accent */
    --accent: #c9a227;
    /* Surface variations */
    --surface-alt: #f7f9fd;
    --surface-2: #f2f4f8;
    /* Outline variations */
    --outline-strong: #c3c6d4;
    /* Text colors */
    --ink: #0f172a;
    --ink-soft: #475569;
    --muted: #6b7280;
    /* Status colors */
    --success: #16a34a;
    --danger: #dc2626;
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15,23,42,.04);
    --shadow-md: 0 10px 30px rgba(15,23,42,.08);
    --shadow-lg: 0 20px 60px rgba(0,49,120,.15);
    /* Animation */
    --ease: cubic-bezier(.22,1,.36,1);
}

/* ==========================================
           2. BOOTSTRAP COLOR OVERRIDE
========================================== */
.text-primary {
    color: #003178 !important;
}

.text-yellow {
    color: #e1cd0e;
}
.text-green{
    color:var(--success);
}
.text-secondary
{
    color:var(--secondary) !important;
}
.bg-primary {
    background-color: #003178 !important;
}

.btn-primary {
    background-color: #003178;
    border-color: #003178;
}

    .btn-primary:hover {
        background-color: #001d4a;
        border-color: #001d4a;
    }

.btn-outline-primary {
    color: #003178;
    border-color: #003178;
}

    .btn-outline-primary:hover {
        background-color: #003178;
        color: white;
    }

.border-primary {
    border-color: #003178 !important;
}

.text-gradient-black {
    color: #343434;
}

/* ==========================================
           3. BASE STYLES
        ========================================== */
body {
    font-family: "Manrope", sans-serif;
    background-color: var(--surface);
    color: var(--on-surface);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
    vertical-align: middle;
    font-size: 24px;
}

    .material-symbols-outlined.filled {
        font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
    }

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--surface);
}

::-webkit-scrollbar-thumb {
    background: var(--outline-variant);
    border-radius: 4px;
}

/* ==========================================
           4. TYPOGRAPHY CLASSES
        ========================================== */
.font-display-lg {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.font-headline-md {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 600;
}

.font-sub-headline {
    font-size: 0.85rem;
    font-weight: 600;
    color: #737783;
    letter-spacing: 0.1em;
}

.font-headline-sm {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
}

.font-body-lg {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
}

.font-body-md {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.font-label-lg {
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    font-weight: 600;
}

.font-label-md {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.font-label-sm {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
}

.font-stat {
    font-size: 56px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

/* ==========================================
           5. LAYOUT UTILITIES
        ========================================== */
/* .px-margin-desktop { padding-left: 64px; padding-right: 64px; } */
.py-stack-lg {
    padding-top: 64px;
    padding-bottom: 64px;
}

@media (max-width: 768px) {
    .px-margin-desktop {
        padding-left: 20px;
        padding-right: 20px;
    }

    .font-display-lg {
        font-size: 36px;
    }

    .font-headline-md {
        font-size: 26px;
    }

    .font-stat {
        font-size: 42px;
    }
}

.glass-panel {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.soft-shadow {
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.04);
    box-shadow: 0 10px 30px rgb(13 71 161 / 9%);
}

.btn-hover-lift {
    transition: all 0.3s ease;
}

    .btn-hover-lift:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(13, 71, 161, 0.08);
    }

.product-card-gradient {
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
}

.btn-br-12 {
    border-radius: 12px;
}
/* ==========================================
           6. COMPONENT STYLES
        ========================================== */
.top-bar {
    background-color: #003178;
    color: #ffffff;
    /*    background-color: #00317800;
    background-color: #1b4172;*/
    color: #ffffff;
    border-bottom: 0.5px solid #1b417212;
    overflow: hidden;

    white-space: nowrap;
}
    .top-bar p {
        color: #ffffff;
    }
.marquee {
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.marquee-content {
    display: inline-flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

    .marquee-content span {
        display: inline-block;
        padding-right: 80px;
      font-size:12px;
        letter-spacing: 0.05em;
    }

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover (optional) */
.top-bar:hover .marquee-content {
    animation-play-state: paused;
}

.main-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(195, 198, 212, 0.3);
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.04);
    overflow: visible !important; /* <-- ADD THIS TO FIX SEARCH DROPDOWN */
}

.nav-bar-menu {
    margin-left: auto;
    margin-right: 5%;
    flex-grow: 0 !important;
}
.header-logo-gluta
{
    width:150px;

}
@media(max-width:576px)
{
    .header-logo-gluta {
        width: 120px;
    }
}
.search-bar-component {
    width: 350px;
}

.nav-link-custom {
    color: var(--secondary);
    font-weight: 600;
    transition: color 0.2s;
    border-bottom: 2px solid transparent;
}

    .nav-link-custom:hover,
    .nav-link-custom.active {
        color: #003178;
        /* font-weight: 700; */
        border-bottom: 2px solid #003178;
    }
.carted-item-count {
    background: #003178;
    /* padding: 3px; */
    font-size: 10px;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -10px;
    color: #ffffff;
}
/* ==========================================
           7. MOBILE MENU
        ========================================== */

/* Hamburger button — hidden on desktop */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    color: var(--primary);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

    .mobile-menu-btn .material-symbols-outlined {
        font-size: 28px;
    }

/* Mobile search icon button */
.mobile-search-btn {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    color: var(--primary);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

    .mobile-search-btn .material-symbols-outlined {
        font-size: 24px;
    }



/* Show hamburger + search icon on mobile, hide desktop search */
@media (max-width: 991.98px) {
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-search-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .search-bar-component {
        display: none !important;
    }

    .nav-bar-menu {
        display: none !important;
    }
}

/* Mobile search bar — hidden by default, slides down on toggle */
.mobile-search-bar {
    background: var(--surface-container-lowest);
    border-bottom: 1px solid var(--outline-variant);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1), padding 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

    .mobile-search-bar.open {
        max-height: 70px;
        padding: 8px 12px;
    }

    .mobile-search-bar .mobile-search-inner {
        display: flex;
        align-items: center;
        gap: 10px;
        background: var(--surface-container-low);
        border: 1px solid var(--outline-variant);
        border-radius: 50px;
        padding: 4px 16px;
    }

        .mobile-search-bar .mobile-search-inner input {
            border: none;
            background: transparent;
            outline: none;
            width: 100%;
            font-family: "Manrope", sans-serif;
            font-size: 14px;
            color: var(--on-surface);
        }

            .mobile-search-bar .mobile-search-inner input::placeholder {
                color: var(--muted);
            }

        .mobile-search-bar .mobile-search-inner .material-symbols-outlined {
            font-size: 20px;
            color: var(--muted);
            flex-shrink: 0;
        }

    .mobile-search-bar .search-close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        padding: 4px;
        color: var(--secondary);
        cursor: pointer;
        flex-shrink: 0;
        -webkit-tap-highlight-color: transparent;
    }

        .mobile-search-bar .search-close-btn .material-symbols-outlined {
            font-size: 20px;
        }

/* Off-canvas overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

/* Off-canvas drawer */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 88%;
    max-width: 400px;
    background: var(--surface-container-lowest);
    z-index: 1050;
    transform: translateX(-105%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

    .mobile-menu-drawer.active {
        transform: translateX(0);
    }

/* Drawer header — tabs + close */
.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--outline-variant);
    flex-shrink: 0;
}

.mobile-drawer-tabs {
    display: flex;
    gap: 0;
    background: var(--surface-container-low);
    border-radius: 10px;
    padding: 3px;
}

.mobile-drawer-tab {
    border: none;
    background: transparent;
    padding: 8px 18px;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--secondary);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

    .mobile-drawer-tab.active {
        background: var(--primary);
        color: #ffffff;
        box-shadow: 0 2px 8px rgba(0, 49, 120, 0.2);
    }

.mobile-drawer-close {
    background: none;
    border: none;
    padding: 6px;
    color: var(--secondary);
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
}

    .mobile-drawer-close:hover {
        background: var(--surface-container-low);
    }

    .mobile-drawer-close .material-symbols-outlined {
        font-size: 24px;
    }

/* Drawer body — scrollable tab panels */
.mobile-drawer-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Tab panels */
.mobile-tab-panel {
    display: none;
    padding: 8px 0;
}

    .mobile-tab-panel.active {
        display: block;
    }

/* Category link (Shop All tab) */
.mobile-cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    color: var(--on-surface);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.15s;
    -webkit-tap-highlight-color: transparent;
}

    .mobile-cat-link:hover,
    .mobile-cat-link:active {
        background: var(--surface-container-low);
    }

    .mobile-cat-link .cat-count {
        font-size: 12px;
        font-weight: 600;
        color: var(--muted);
        background: var(--surface-container-low);
        padding: 3px 10px;
        border-radius: 50px;
        flex-shrink: 0;
        margin-left: 12px;
    }

    .mobile-cat-link .material-symbols-outlined {
        font-size: 18px;
        color: var(--outline);
        flex-shrink: 0;
    }

/* Main menu link */
.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: var(--on-surface);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.15s;
    -webkit-tap-highlight-color: transparent;
}

    .mobile-menu-link:hover,
    .mobile-menu-link:active {
        background: var(--surface-container-low);
    }

    .mobile-menu-link .material-symbols-outlined {
        font-size: 18px;
        color: var(--outline);
    }

/* Drawer footer */
.mobile-drawer-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--outline-variant);
    flex-shrink: 0;
}

    .mobile-drawer-footer a {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--secondary);
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 10px;
        transition: color 0.2s;
    }

        .mobile-drawer-footer a:last-child {
            margin-bottom: 0;
        }

        .mobile-drawer-footer a:hover {
            color: var(--primary);
        }

    .mobile-drawer-footer .material-symbols-outlined {
        font-size: 18px;
    }

/* Body lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Staggered entrance animation */
@keyframes mobileMenuFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-tab-panel.active .mobile-cat-link,
.mobile-tab-panel.active .mobile-menu-link {
    animation: mobileMenuFadeIn 0.3s ease forwards;
}

    .mobile-tab-panel.active .mobile-cat-link:nth-child(1),
    .mobile-tab-panel.active .mobile-menu-link:nth-child(1) {
        animation-delay: 0.02s;
    }

    .mobile-tab-panel.active .mobile-cat-link:nth-child(2),
    .mobile-tab-panel.active .mobile-menu-link:nth-child(2) {
        animation-delay: 0.04s;
    }

    .mobile-tab-panel.active .mobile-cat-link:nth-child(3),
    .mobile-tab-panel.active .mobile-menu-link:nth-child(3) {
        animation-delay: 0.06s;
    }

    .mobile-tab-panel.active .mobile-cat-link:nth-child(4),
    .mobile-tab-panel.active .mobile-menu-link:nth-child(4) {
        animation-delay: 0.08s;
    }

    .mobile-tab-panel.active .mobile-cat-link:nth-child(5),
    .mobile-tab-panel.active .mobile-menu-link:nth-child(5) {
        animation-delay: 0.10s;
    }

    .mobile-tab-panel.active .mobile-cat-link:nth-child(6),
    .mobile-tab-panel.active .mobile-menu-link:nth-child(6) {
        animation-delay: 0.12s;
    }

    .mobile-tab-panel.active .mobile-cat-link:nth-child(7),
    .mobile-tab-panel.active .mobile-menu-link:nth-child(7) {
        animation-delay: 0.14s;
    }

    .mobile-tab-panel.active .mobile-cat-link:nth-child(8),
    .mobile-tab-panel.active .mobile-menu-link:nth-child(8) {
        animation-delay: 0.16s;
    }

    .mobile-tab-panel.active .mobile-cat-link:nth-child(9),
    .mobile-tab-panel.active .mobile-menu-link:nth-child(9) {
        animation-delay: 0.18s;
    }

    .mobile-tab-panel.active .mobile-cat-link:nth-child(10),
    .mobile-tab-panel.active .mobile-menu-link:nth-child(10) {
        animation-delay: 0.20s;
    }

    .mobile-tab-panel.active .mobile-cat-link:nth-child(11),
    .mobile-tab-panel.active .mobile-menu-link:nth-child(11) {
        animation-delay: 0.22s;
    }

    .mobile-tab-panel.active .mobile-cat-link:nth-child(12),
    .mobile-tab-panel.active .mobile-menu-link:nth-child(12) {
        animation-delay: 0.24s;
    }

    .mobile-tab-panel.active .mobile-cat-link:nth-child(13),
    .mobile-tab-panel.active .mobile-menu-link:nth-child(13) {
        animation-delay: 0.26s;
    }

/* =========================================
mobile nav ends here
========================================= */



/* ==================================================================================================
           8. SEARCH SUGGESTIONS
===================================================================================== */
.search-wrapper {
    position: relative;
}

/* The suggestion dropdown box */
.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--surface-container-lowest);
    border: 1px solid var(--outline-variant);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 9999; /* Extremely high to escape Bootstrap overflow issues */
    max-height: 400px;
    overflow-y: auto;
    padding: 8px 0;
    display: none;
    width: max-content; /* Prevents shrinking inside tight flex containers */
    min-width: 100%; /* Ensures it's at least as wide as the search bar */
}

    .search-suggestions.active {
        display: block;
        animation: searchFadeIn 0.2s ease forwards;
    }

@keyframes searchFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Individual suggestion item */
.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--on-surface);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.15s;
    cursor: pointer;
    white-space: nowrap;
}

    .search-suggestion-item:hover,
    .search-suggestion-item:active {
        background: var(--surface-container-low);
    }

    .search-suggestion-item .material-symbols-outlined {
        font-size: 20px;
        color: var(--muted);
        flex-shrink: 0;
    }

    .search-suggestion-item .suggestion-text {
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    /* Highlight the matched text */
    .search-suggestion-item .highlight {
        color: var(--primary);
        font-weight: 700;
    }

/* No results message */
.search-no-results {
    padding: 24px 16px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

    .search-no-results .material-symbols-outlined {
        display: block;
        margin: 0 auto 8px;
        font-size: 32px;
        color: var(--outline-variant);
    }

/* View all results footer link */
.search-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    margin-top: 4px;
    border-top: 1px solid var(--outline-variant);
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.15s;
}

    .search-view-all:hover {
        background: var(--surface-container-low);
    }

    .search-view-all .material-symbols-outlined {
        font-size: 16px;
    }

/* Mobile specific adjustments */
@media (max-width: 991.98px) {
    .mobile-search-bar .search-suggestions {
        position: fixed;
        top: 21%;
        bottom: auto;
        left: 0;
        right: 0;
        width: 96%;
        min-width: 97%;
        max-height: 70vh;
        border-radius: 0px 0px 24px 24px;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
        z-index: 9999;
        border-bottom: none;
    

    }
}


.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Hero Section Base --- */
.hero-section-clinical {
    background-color: var(--surface);
    min-height: 77vh;
}

.hero-gradient-overlay {
    /* background: linear-gradient(to right, rgba(0, 49, 120, 0.85) 0%, rgba(0, 49, 120, 0.4) 50%, transparent 100%); */
    background: linear-gradient(to right, rgba(0, 48, 120, 0.264) 0%, rgba(0, 48, 120, 0.171) 50%, rgba(0, 48, 120, 0.281) 100%);
}

/* --- Background Image Handling --- */
.hero-bg-wrapper img {
    filter: brightness(0.8); /* Slightly darken image for text contrast */
    transition: transform 10s ease;
}
.hero-banner-heading
{
    max-width:600px;
}
/* --- Floating Card Positioning --- */
.hero-floating-card {
    position: absolute;
    bottom: 80px;
    right: 80px; /* Matches your margin-desktop logic roughly */
    width: 420px;
    z-index: 20;
}

/* --- Glassmorphism Card Style --- */
.glass-card-clinical {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px; /* Surgical/Sharp look from reference */
    transition: all 0.5s ease;
    transform-style: preserve-3d; /* For 3D tilt */
}

/* --- Micro-interaction: Glow on Hover --- */
.glow-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(185, 199, 228, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.glass-card-clinical:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

    .glass-card-clinical:hover .glow-effect {
        opacity: 1;
    }

/* Product Frame Styling */
.product-img-frame {
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

    .product-img-frame img {
        transition: transform 0.8s ease;
        border-radius: 4px;
    }

.glass-card-clinical:hover .product-img-frame img {
    transform: scale(1.1);
}

/* Quick Add Button Style */
.btn-glass-add {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    color:var(--primary) !important;
}

    .btn-glass-add:hover {
        background: #ffffff;
        color: var(--primary) !important;
    }
    

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-floating-card {
        display: none; /* Hide complex floating card on mobile */
    }

    .hero-gradient-overlay {
        background: linear-gradient(to right, rgb(0 49 120 / 34%) 0%, rgb(0 49 120 / 9%) 100%);
        
    }
}

.points-card {
    background: #cddef5;
    padding: 16px 24px;
    border-radius: 12px;
}

.key-sub-text {
    font-size: 13px;
    color: #333333;
    padding-top: 4px;
}
/* --- Grid Layout Definition --- */
.trust-grid-layout {
    display: grid;
    /* Forces all 4 items into one equal line */
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-gutter);
    position: relative;
    margin-top: -40px;
}

/* --- Card Styling --- */
.trust-card-v2 {
    background: var(--surface-container-lowest);
    border: 1px solid #dedede;
    border-radius: var(--radius-2xl); /* Using your 24px radius */
    padding: 12px 16px;
    /* Flexbox for internal alignment */
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 3px 5px 4px rgb(163 172 197 / 35%);
}

/* Hover Effect using Primary Colors */
/* .trust-card-v2:hover {
        border-color: var(--primary);
        box-shadow: 0 8px 24px rgba(0, 49, 120, 0.08);
    } */

/* --- Icon Styling --- */
.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px; /* Pill shape */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevents squishing */
}

    .icon-box.trust-points {
        background: var( --light-purple);
        color: var(--primary);
        box-shadow: 2px 2px 4px rgb(202 207 219), inset 3px 2px 4px rgb(232 238 250);
    }

    .icon-box .material-symbols-outlined {
        font-size: 28px;
    }

/* --- Typography --- */
.text-box h6 {
    color: var(--on-surface);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
    line-height: 1.2;
}

.text-box .sub-text {
    display: block;
    font-size: 0.75rem;
    color: var(--outline);
    margin-top: 4px;
}

/* --- Responsive Handling --- */
@media (max-width: 992px) {
    /* Stack 2x2 on tablets */
    .trust-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    /* Stack 1x4 on mobile */
    .trust-grid-layout {
        grid-template-columns: 1fr;
    }
}

.cat-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--radius-3xl);
    cursor: pointer;
}

    .cat-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
    }

    .cat-card:hover img {
        transform: scale(1.1);
    }

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 49, 120, 0.8), transparent);
    opacity: 0.6;
}

.cat-content {
    position: absolute;
    bottom: 32px;
    left: 32px;
    color: white;
    z-index: 2;
}

.products-section {
    background: rgb(221 227 239 / 8%);
}

.product-card {
    background: var(--surface-container-lowest);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(195, 198, 212, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 20px !important;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgb(192 192 192 / 70%);
}

/*.product-title-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}*/

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13, 71, 161, 0.08);
}

.new-launch-card {
    border: 1px solid #80808021;
}

    .new-launch-card img {
        transition: 0.3s ease-in;
    }
        /* .launchSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
} */
        .new-launch-card img:hover {
            scale: 1.1;
        }
.launch-prev,
.launch-next
{
    color:var(--primary);
    
}
.launch-prev:hover,
.launch-next:hover {
    background: var(--primary) !important;
}

.about-us-exact p {
    padding-right: 50px;
}
/* Science Section */
.science-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 18px;
    height: 100%;
    transition: transform 0.3s ease;
    background: linear-gradient(45deg, #e1e0f74f, #e1e0f7, #b0a5de21);
}

.science-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 18px;
    height: 100%;
    transition: transform 0.3s ease;
    /* Your original colors */
    background: linear-gradient( 45deg, #e1e0f74f, #e1e0f7, #b0a5de21 );
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
}

    /* Cross shine RIGHT → LEFT */
    .science-card::before {
        content: "";
        position: absolute;
        top: -120%;
        right: -80%;
        width: 60%;
        height: 300%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.35), transparent );
        transform: rotate(-35deg);
        animation: crossShineRTL 4s linear infinite;
    }

/* Background animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Right → Left diagonal shine */
@keyframes crossShineRTL {
    0% {
        right: -80%;
        top: -120%;
    }

    100% {
        right: 140%;
        top: 120%;
    }
}

.science-card:hover {
    transform: translateY(-5px);
    background: rgba(211, 213, 242, 0.875);
    box-shadow: -1px 4px 6px #80808040;
}

.science-text {
    color: black !important;
}




/* --- About Us Section--- */

/* Button Styling */
.btn-exact-orange {
    color: #ffffff;
    border: none;
    border-radius: var(--radius-2xl);
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

    .btn-exact-orange:hover {
        background-color: var(--light-purple) !important;
        color: var(--primary);
        transform: translateY(-2px);
        border: 1px solid var(--primary-container);
        box-shadow: 0 8px 15px rgba(180, 201, 246, 0.41);
    }

/* Layout */
.content-wrapper {
    background-color: #ffffff;
}

/* Check Icon */
.check-icon-style {
    font-size: 22px;
    width: 45px;
    height: 45px;
    background: var(--light-purple);
    text-align: center;
    line-height: 1.5;
    border-radius: 16PX;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-shrink: 0; */
    box-shadow: 0px 2px 3px #0031784f, inset -10px -7px 4px #00307800;
}


/* Arrow Icon */
.arrow-icon-style {
    font-size: 20px;
}

.stats-count {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
}

.stat-label {
    font-size: 14px;
}
/* Stats Divider */
.stats-divider {
    width: 1px;
    height: 50px;
    background-color: #c3c6d4;
}

/* About Image */
.about-image-container img {
    border-radius: var(--radius-3xl);
    object-fit: cover;
    object-position: center;
    width: 100%;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {

    .inner-content {
        padding: 3rem 1.5rem;
    }

    .image-container img {
        min-height: 300px;
    }
}

/* Results Section */
.result-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.result-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.result-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Feature Grid */
.feature-icon-box {
    width: 64px;
    height: 64px;
    background: var(--surface-container-low);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
    background: var(--primary);
    color: white;
}

.feature-card {
    padding: 30px;
    transition: transform 0.3s;
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

/* CTA Section */
.cta-section {
    /* background: linear-gradient(135deg, #003178 0%, #0d47a1 100%); */
    background-image: url(../new-image/cta-image.png);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    /* background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  ); */
    /* background:radial-gradient(
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  ); */
    background: radial-gradient(rgb(0 0 0 / 91%) 1px, #334b7078 1px);
    background: linear-gradient(to right, rgb(0 49 120 / 53%), rgba(0, 49, 120, 0.5));
    background: linear-gradient(72deg, rgb(0 49 120 / 26%), rgb(0 49 120 / 62%));
}

.footer-link {
    color: #000;
    transition: all 0.2s;
    display: inline-block;
}

    .footer-link:hover {
        color: #003178;
        transform: translateX(4px);
    }

/* --- ADDED CSS FOR NEW SECTIONS --- */

/* Our Philosophy (Nature Style) */
.nature-section {
    position: relative;
    padding: 60px 0;
    background: url("https://images.unsplash.com/photo-1556228578-0d85b1a4d571?q=80&w=2000&auto=format&fit=crop") center/cover no-repeat fixed;
}

.nature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0, 49, 120, 0.9), rgba(0, 49, 120, 0.5) );
}

.nature-content {
    position: relative;
    z-index: 2;
    color: white;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 56px 0 0
}

    .pagination a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border: 1px solid var(--outline);
        color: var(--ink);
        font-weight: 600
    }

        .pagination a.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary)
        }

        .pagination a:hover:not(.active) {
            border-color: var(--primary);
            color: var(--primary)
        }



/* --- BASE STYLES --- */
.testimonial-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .testimonial-section .swiper-slide {
        height: auto;
        padding: 20px 0;
    }



.z-1 {
    z-index: 1;
}

/* --- CARD DESIGN --- */
.modern-card {
    background: rgb(245 247 252);
    border: 1px solid rgb(218, 218, 218);
    border-radius: 12px;
    padding: 12px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.079);
    transition: all 0.4s ease;
    flex-grow: 1;
    border-radius: 1px solid gray;
}
    /* .testimonial-section .swiper-slide:nth-child(even)  .modern-card
     {
        background:var(--light-purple);
     } */

    .modern-card:hover {
        transform: translateY(-2px);
        box-shadow: 1px 4px 6px rgb(0 0 0 / 16%);
        background: #ffffff;
    }

/* Alternating card style for visual break */
.modern-card-alt {
    background: #ffffff;
    border: 1px solid #f0f0f0;
}

/* --- TYPOGRAPHY --- */
.font-display-lg {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
}

.star-rating {
    color: #ffc107;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* --- REVIEWER INFO --- */
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    background: var(--light-purple);
    color: var(--primary);
    box-shadow: 0px 2px 6px #0031781c;
}



.reviewer-info .name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #333;
}

.reviewer-info .status {
    font-size: 0.85rem;
    color: #888;
}
/* --- Product Highlight Section Styles --- */
.product-highlight-section {
    position: relative;
    min-height: 600px;
    background-color: var(--surface);
    background: white;
    padding: 80px 0;
}

.why-choose-gluta p {
    max-width: 600px;
}

/* Feature Columns Layout */
.feature-col {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

/* Feature Item Box */
.feature-box {
    transition: transform 0.5s ease;
}

/* Hover Animation: Move Right (Left Column) */
.feature-col.text-lg-end .feature-box:hover {
    transform: translateX(8px);
}

/* Hover Animation: Move Left (Right Column) */
.feature-col.text-lg-start .feature-box:hover {
    transform: translateX(-8px);
}

/* Icon Container */
.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-2xl); /* Uses your --radius-2xl */
    background-color: var(--light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c3c6d433;
    box-shadow: 2px 2px 4px rgb(202 207 219), inset 3px 2px 4px rgb(232 238 250);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover .feature-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.feature-icon-wrapper .material-symbols-outlined {
    color: var(--primary); /* Uses your --primary color */
    font-size: 32px;
}

/* Typography */
.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--secondary);
    max-width: 320px;
}

/* Center Product Hero */
.product-hero-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .product-hero-wrapper:hover {
        transform: scale(1.03);
    }

.product-bg-shape {
    position: absolute;
    width: 110%;
    height: 110%;
    background-color: #e1e0f74f;
    border-radius: 50%;
    opacity: 0.8;
    z-index: 0;
}

.product-image-why {
    position: relative;
    z-index: 1;
    max-width: 330px;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px -12px rgba(0, 49, 120, 0.2)); /* Shadow using primary color tint */
    /* transform: rotate(-12deg); */
    transition: transform 0.7s ease;
    border-radius: 50%;
}

.product-hero-wrapper:hover .product-image-why {
    transform: rotate(4deg) scale(1.01);
}

/* --- FAQ Section Styles --- */
.faq-section {
    background-color: #f5f7fc;
    padding: 80px 0px;
}

/* Left Column: Visual Anchor */
.faq-visual-wrapper {
    position: relative;
}

.faq-glow {
    position: absolute;
    inset: -1rem;
    background-color: var(--surface-container-high);
    opacity: 0.3;
    filter: blur(3rem);
    border-radius: 50%;
    z-index: 0;
}

.arch-frame {
    position: relative;
    z-index: 1;
    border-radius: 500px 500px 0 0;
    overflow: hidden;
    background-color: var(--surface-container);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4 / 5;
}

    .arch-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
    }

    .arch-frame:hover img {
        transform: scale(1.05);
    }

.glass-panel {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    padding: 0.5rem 0.65rem;
    backdrop-filter: blur(20px);
    background: rgb(255, 255, 255);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 2;
}

/* Right Column: Accordion */
.faq-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--outline-variant);
}

.faq-accordion .accordion-button {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.3rem 0;
    box-shadow: none !important; /* Removes Bootstrap focus ring */


    font-size: 18px;
    font-weight: 500;
    color: #333;
    transition: transform 0.2s ease;
}

    .faq-accordion .accordion-button:hover {
        transform: translateX(4px);
    }

    /* Custom Material Icons via CSS Pseudo-element */
    .faq-accordion .accordion-button::after {
        /* Override Bootstrap default chevron */
        background-image: none;
        content: 'add';
        font-family: 'Material Symbols Outlined';
        font-size: 24px;
        color: var(--primary);
        width: auto;
        height: auto;
        margin-left: auto;
        padding-left: 1rem;
        flex-shrink: 0;
        transition: content 0.2s ease;
    }

    .faq-accordion .accordion-button:not(.collapsed)::after {
        content: 'remove';
        transform: none; /* Prevent rotation */
    }

    .faq-accordion .accordion-button:not(.collapsed) {
        color: var(--primary);
        background: transparent;
    }

.faq-accordion .accordion-body {
    padding: 0 0 2rem 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--secondary);
    max-width: 600px;
}

/* Typography Helpers (based on your previous styles) */
.font-label-caps {
    font-size: 12px;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
}

.scietific-section {
    background: rgb(221 227 239 / 8%);
}
/* Background Overlay Left */
.science-bg-overlay-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 70%);
}

/* Background Overlay Right */
.science-bg-overlay-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 70%);
}

/* Main Container */
.science-container {
    max-width: 1280px;
    z-index: 2;
}

/* Icon Wrapper */
.science-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* background: rgba(255,255,255,0.1); */
    background: var(--light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

/* Icon */
.science-icon {
    font-size: 40px;
    color: var(--primary) !important;
}

/* --- MEGA MENU HOVER LOGIC --- */
.dropdown-menu {
    /* display: block; */
    width: 70%;
    margin: 0 auto;
}
/* Show menu on Hover */
.mega-dropdown:hover .dropdown-menu {
    display: block;
    top: 100%;
}

/* Hide default Bootstrap arrow */
.mega-dropdown .dropdown-toggle::after {
    display: none;
}

/* --- MEGA MENU STYLING --- */
.mega-menu {
    /* Position it fixed width relative to the screen to match nav container */
    left: 0;
    right: 0;
    background-color: var(--surface-container-lowest);
    border-top: 1px solid var(--outline-variant);
    border-radius: 0 0 1rem 1rem; /* Rounded bottom corners */
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    animation: fadeInDown 0.3s ease-in-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category List Styling */
.mega-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--on-surface);
    border-radius: 8px;
    transition: all 0.2s ease;
}

    .mega-link:hover {
        background-color: var(--surface-container-low);
        color: var(--primary);
        padding-left: 1.5rem;
    }

.count-badge {
    font-size: 12px;
    color: var(--outline);
    background: var(--surface-container);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.mega-link:hover .count-badge {
    background: var(--primary-fixed);
    color: var(--primary);
}

.mega-menu-btn {
    left: 50%;
    bottom: 10px;
    transform: translate(-50%, 0);
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 8px;
    width: 60%;
}

.mega-menu {
    margin-top: 0 !important;
    border-top: 0;
}
/* This ensures the hover state stays active as you move your mouse down */
.main-nav .nav-item.mega-dropdown {
    height: 100%;
    display: flex;
    align-items: center;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -10px; /* Extends hover area 10px above the menu */
    left: 0;
    right: 0;
    height: 10px;
    background: transparent; /* Invisible bridge */
}
.product-display-grid
{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}
@media(max-width:992px)
{
    .product-display-grid {
      
        grid-template-columns: repeat(3,1fr);
      
    }

}
@media(max-width:576px)
{
    .product-display-grid {
        grid-template-columns: repeat(2,1fr);
        gap:12px;
    }
    .product-card {
        border-radius: 12px !important;
    }
    .product-title-name {
        margin-top: 0px !important;
        font-size: 14px;
    }
    .product-item-price
    {
        font-size:16px;
    }
    .add-cart-icon
    {
        font-size:16px;
    }
    .add-cart-btn
    {
        padding:2px !important;
        width:30px;

    }
    .product-title-tag {
        font-size:10px;
    }
    }

@media(max-width:576px)
{
    .footer-li-list li
    {
    margin-bottom:4px !important;
   
    }
        .footer-li-list li a {
            font-size: 14px !important;
        }
    .footer-desc
    {
        font-size:14px;
        margin-bottom:0px;
    }
    .policy-page-list {
        display: flex;
        flex-wrap: wrap;
   
        column-gap: 10px;
        align-items: center;
      
    }
}
.cat-card a {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
/*    display: block;*/
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product-title-name {
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-title-tag {
    background: linear-gradient(92deg, #f6d8f9, transparent);
    width: max-content;
    padding: 4px;
    color: white;
    color: #000000 !important;
}
.product-listing-image-wrap {
    border: 1px solid #ddd;
}
.actualPrice {
    color: #545353;
    font-size: 14px;
    text-decoration: line-through;
}
.offer-actual-price-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}
.product-star
{
    font-size:16px;
}
.new-launched-product-title {
    font-size: 16px !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.new-launched-product-lable
{
    font-size:12px;
}
.floting-card-product-name
{
    font-size:16px;
    color:var(--primary);
}
.shopping-cart  span{
    font-size:20px;
}
.category-short-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: calc(1.5em * 2);
}

@media(max-width:992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media(max-width:767px)
{
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 567px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .actualPrice {
        color: #545353;
        font-size: 12px;
    }
    .offer-actual-price-wrap {
        display: flex;
        align-items: center;
        gap: 4px;
        /* flex-direction: column-reverse; */
       
    }
    .product-star {
        font-size: 14px;
    }
    .new-launched-section
    {
        padding-left:0px !important;
        padding-right:0px !important;
        padding-bottom:0px !important;
    }
    .new-launched-product-title {
        font-size: 14px !important;
    }
    .new-launched-product-lable {
        font-size: 10px;
    }
    .shopping-cart {
        font-size: 14px;
    }
    .shopping-cart span {
        font-size: 16px;
    }
    .new-launch-img-wrap {
        min-height: 0;
    }
    .inner-content {
        padding: 2rem 0rem;
    }
    .about-us-exact p {
         padding-right: 0px; 
         color:black !important;
    }
    .check-icon-style {
      
        min-width: 45px;
    }
    .stats-count {
        font-size: 30px;
    }

    .feature-icon-wrapper {
        width: 40px;
        height: 40px;
    }
        .feature-icon-wrapper .material-symbols-outlined {
            color: var(--primary);
            font-size: 20px;
        }
    .feature-col {
      
        flex-direction: row;
        gap: 1rem;
    }
    .feature-title {
        font-size: 18px;
    }
    .feature-box {
        text-align: left !important;
        align-items: start !important;
    }
    .product-highlight-section {
        padding: 60px 0;
    }


    .testimonial-section {
        
        padding: 60px 0;
    }
    .science-icon-wrapper {
        width: 52px;
        height: 52px;
        padding: 12px;
    }
    .science-icon {
        font-size: 26px;
    }

    .hero-banner-heading
    {
        font-size:26px !important;
    }
    .hero-banner-desc
    {
        font-size:16px !important;
    }
    .hero-banner-button
    {
        font-size:14px !important;
    }
    .btn-br-12 {
        border-radius: 8px;
    }
    .category-name {
        font-size: 16px;
        line-height: 1.3;
    }
    .category-short-desc {
        color: rgba(255, 255, 255) !important;
        font-size: 12px;
    }

    .cat-content {
        position: absolute;
        bottom: 12px;
        left: 12px;
        color: white;
        z-index: 2;
    }
    .cat-overlay {
     
       
        opacity: 0.8;
    }
    .cat-card {
        border-radius: var(--radius-2xl);
    }
    .testimonial-section .swiper-slide {
    
        padding: 20px 12px;
    }
    .product-highlight-section
    {
        overflow:hidden;
    }
    .faq-accordion .accordion-button {
        font-size: 16px;
        color: #000;
        padding: 1rem 0;
    }
   .footer-li-list {
        margin-bottom: 30px;
    }
    .mobile-search-btn
    {
        padding:0px;
    }
    }

/*
==================== user Login State Handle  css =================================================*/
.user-profile {
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
    margin-left: 4px;
    cursor:pointer;
}
    .user-profile.logged-in {
        color: #16813d;
        background: #EAF9F0;
        border-radius: 50%;
    }

.logged-in-user-name {
    position: absolute;
    top: 0;
    right: 10px;
    color: black;
    background: transparent;
}
footer{
    overflow:hidden;
}
.launchSwiper .swiper-slide
{
    height:auto;
}
.new-launch-card 
{
    height:100%;
}
.btn-glass-add.added-to-cart {
    color: white !important;
    background: rgb(3, 87, 17);
}
.added-cart-view {
    background: rgb(3, 87, 17) !important;
    color:white;
}