/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* Luxury Classes for easy use */
.font-luxury {
    font-family: 'Playfair Display', serif !important;
}


/* Global H1 Luxury Style */
h1,
h2 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700;
    /* Luxury look ke liye bold rakhein */
    letter-spacing: -0.02em;
    /* Serif fonts thode tight spacing mein premium lagte hain */
    line-height: 1.2;
}

:root {
    /* Background and Surfaces */
    --bg: #F5EDD6;
    /* Aapka light cream color */
    --surface: #ffffff;
    --border: rgba(10, 8, 6, 0.1);

    /* Typography */
    --text: #0A0806;
    /* Aapka deep black color */
    --muted: rgba(10, 8, 6, 0.7);
    --muted-2: rgba(10, 8, 6, 0.5);

    /* Brand Colors */
    --brand: #C9A84C;
    /* Aapka primary gold color */
    --brand-2: #0A0806;
    /* Accent black */

    /* Functional Elements */
    --shadow: 0 18px 55px rgba(10, 8, 6, 0.08);
    --ring: 0 0 0 3px rgba(201, 168, 76, 0.3);
    --radius: 18px;
    --max: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* body {
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
    color: var(--text);
    background:
        radial-gradient(1000px 600px at 20% -10%, rgba(91, 91, 214, 0.16), transparent 60%),
        radial-gradient(900px 550px at 90% 10%, rgba(184, 135, 31, 0.14), transparent 55%),
        radial-gradient(700px 500px at 30% 110%, rgba(34, 197, 94, 0.08), transparent 55%),
        var(--bg);
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
} */

body {
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
    color: var(--text);
    background: var(--bg);
    /* Purane gradients hata diye jo width badha rahe the */
    line-height: 1.45;
    overflow-x: hidden;
    /* Ye line side scroll ko khatam kar degi */
    width: 100%;
}

strong {
    color: rgba(15, 23, 42, 0.98);
}

a {
    color: inherit;
    text-decoration: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid var(--border);
    transform: translateY(-200%);
    transition: transform 160ms ease;
    z-index: 1000;
}

.skip-link:focus {
    transform: translateY(0);
    outline: none;
    box-shadow: var(--ring);
}

.container {
    width: 90%;
    /* Mobile/Tablet par sides se thodi jagah rahegi */
    max-width: 2000px;
    /*PC par content isse zyada nahi failega */
    margin: 0 auto;
    /* Sabse zaroori: Ise hamesha center mein rakhne ke liye */
    display: block;
}

.glass {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.90);
    color: var(--text);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 650;
    letter-spacing: 0.2px;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.16);
}

.btn:focus-visible {
    outline: none;
    box-shadow: var(--ring);
}

.btn-primary {
    background: var(--brand);
    color: var(--bg);

    border-color: var(--bg);
}

.btn-primary:hover {
    background: var(--brand);
    color: var(--bg);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.78);
    color: var(--muted);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

header.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 247, 251, 0.72);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
}

.brand-logo {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-links a {
    color: var(--muted);
    font-weight: 650;
    font-size: 14px;
    padding: 10px 10px;
    border-radius: 12px;
    transition: background 160ms ease, color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--text);
    background: rgba(15, 23, 42, 0.04);
    outline: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
    justify-content: flex-end;
}

.search {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.90);
    width: min(420px, 42vw);
}

.search input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--text);
    font-size: 14px;
}

.search input::placeholder {
    color: rgba(71, 85, 105, 0.80);
}

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.92);
    color: rgba(15, 23, 42, 0.86);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 160ms ease, transform 160ms ease;
}

.icon-btn:hover {
    transform: translateY(-1px);
    background: #ffffff;
}

.icon-btn:focus-visible {
    outline: none;
    box-shadow: var(--ring);
}

/* main {
    padding-bottom: 76px;
} */

.hero {
    padding: 44px 0 26px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
    align-items: stretch;
}

.hero-card {
    padding: 26px;
    border-radius: calc(var(--radius) + 4px);
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(800px 300px at 20% 0%, rgba(91, 91, 214, 0.15), transparent 55%),
        radial-gradient(600px 280px at 90% 30%, rgba(184, 135, 31, 0.13), transparent 60%),
        rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.hero h1 {
    margin: 10px 0 10px;
    font-size: clamp(28px, 3.6vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.4px;
}

.hero p.lead {
    margin: 0;
    color: var(--muted);
    font-size: 15.5px;
    max-width: 64ch;
}

.hero-cta {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.hero-meta {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
}

.hero-side {
    display: grid;
    gap: 14px;
    align-content: start;
}

.mini {
    padding: 16px;
}

.mini h2 {
    margin: 0 0 6px;
    font-size: 14px;
    letter-spacing: 0.2px;
}

.mini p {
    margin: 0;
    color: var(--muted);
    font-size: 13.5px;
}

section {
    padding: 26px 0;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.section-head h2 {
    margin: 0;
    font-size: 20px;
    letter-spacing: -0.2px;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.card {
    border-radius: var(--radius);
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.92);
    overflow: hidden;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.card:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 23, 42, 0.14);
    background: #ffffff;
}

.card-body {
    padding: 14px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.10);
    border: 1px solid rgba(34, 197, 94, 0.24);
    color: rgba(20, 83, 45, 0.92);
    font-size: 12px;
    font-weight: 700;
}


/* Product Card Layout Fix */
.product-card-custom {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.product-img-container {
    height: auto !important;
    min-height: unset !important;
    width: 100% !important;
    overflow: hidden !important;
    background: #fdfcf7;
    display: block !important;
    border-bottom: 1px solid rgba(10, 8, 6, 0.05);
}

.product-img-container img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
    transition: transform 0.4s ease;
}

.product-card-custom:hover .product-img-container img {
    transform: scale(1.05);
}

.card-body-custom {
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 15px !important;
    padding-bottom: 0px !important;
}

.product-description-text {
    flex-grow: 1 !important;
    margin-bottom: 15px !important;

    /* 3 Line Clamp Logic */
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    /* Yahan 3 lines set kar di hain */
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    /* Isse end mein ... dikhega */

    /* Extra space management */
    min-height: 3.6em;
    /* Isse card hamesha uniform rahega */
    line-height: 1.2em;
}

.product-actions-wrap {
    margin-top: auto !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .product-img-container {
        height: auto !important;
    }

    section {
        padding: 10px !important;
    }

    .founder-section-new {
        margin-bottom: 20px;
    }
}

.product-img {
    height: auto !important;
    background:
        radial-gradient(240px 120px at 30% 25%, rgba(184, 135, 31, 0.14), transparent 60%),
        radial-gradient(240px 120px at 70% 35%, rgba(91, 91, 214, 0.12), transparent 60%),
        rgba(15, 23, 42, 0.03);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    display: grid;
    place-items: center;
    position: relative;
    color: rgba(15, 23, 42, 0.72);
}

/* Make inline SVG icons adapt to light theme */
.product-img svg path {
    stroke: currentColor;
}

.product-img svg path[fill] {
    fill: currentColor;
}

.product-title {
    margin: 8px 0 4px;
    font-size: 15px;
    font-weight: 780;
    letter-spacing: -0.15px;

    /* 1 Line Clamp Logic */
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    /* Sirf 1 line dikhegi */
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;

    /* Extra spacing fix */
    min-height: 1.2em;
    line-height: 1.2em;
}

.product-meta {
    margin: 0 0 10px;
    font-size: 13px;
    color: var(--muted);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.price {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.2px;
}

.old {
    font-size: 13px;
    color: rgba(71, 85, 105, 0.72);
    text-decoration: line-through;
    font-weight: 700;
}

.actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.actions .btn {
    padding: 11px 12px;
    border-radius: 14px;
    flex: 1;
}

.note {
    color: var(--muted-2);
    font-size: 12.5px;
    margin-top: 10px;
}

details.faq {
    border-radius: var(--radius);
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.92);
    padding: 12px 14px;
}

details.faq summary {
    cursor: pointer;
    font-weight: 780;
    color: var(--text);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

details.faq summary::-webkit-details-marker {
    display: none;
}

details.faq p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
}

footer {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.72);
    padding: 28px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 16px;
}

.footer-grid h3 {
    margin: 0 0 10px;
    font-size: 14px;
    letter-spacing: 0.15px;
}

.footer-grid p,
.footer-grid a {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
}

.footer-grid a:hover {
    color: var(--text);
}

.inline-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
}

.inline-form input {
    flex: 1;
    min-width: 220px;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    outline: none;
}

.inline-form input:focus-visible {
    box-shadow: var(--ring);
}

.toast {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.96);
    font-size: 13px;
    font-weight: 650;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
    z-index: 1000;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}

@media (min-width: 860px) {
    .search {
        display: flex;
    }

    .hamburger {
        display: none;
    }
}

@media (max-width: 860px) {
    .nav-links {
        display: none;
    }

    .nav-actions {
        min-width: unset;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1020px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(var(--max), calc(100% - 24px));
    }

    .hero {
        padding: 26px 0 18px;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Mobile drawer menu */
.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.38);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
    z-index: 80;
}

.drawer-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(86vw, 360px);
    background: rgba(255, 255, 255, 0.96);
    border-left: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 20px 70px rgba(15, 23, 42, 0.18);
    transform: translateX(102%);
    transition: transform 200ms ease;
    z-index: 90;
    display: grid;
    grid-template-rows: auto 1fr auto;

    /* Scroll fix starts here */
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    /* Agar content height se zyada ho toh scrollbar aa jayega */
    -webkit-overflow-scrolling: touch;
    /* Mobile touch smooth karne ke liye */
}

.drawer.show {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 14px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.drawer-title {
    font-weight: 850;
    letter-spacing: -0.2px;
}

.drawer-nav {
    padding: 12px 10px;
    display: grid;
    gap: 8px;
    align-content: start;
    flex-grow: 1;
    /* Ye nav ko beech ka poora space de dega */
}

.drawer-nav a {
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(15, 23, 42, 0.02);
    color: rgba(15, 23, 42, 0.92);
    font-weight: 750;
}

.drawer-nav a:focus-visible {
    outline: none;
    box-shadow: var(--ring);
}

.drawer-footer {
    padding: 14px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}


.swiper {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
}

.slide-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* PC par content ko center rakhega */
    color: #ffffff;
    padding: 0 20px;
}

.slide-text {
    max-width: 800px;
    /* PC par bahut zyada phailne se rokega */
    width: 100%;
    text-align: center;
    /* Premium look ke liye text center */
}

.slide-text h1 {
    font-size: clamp(32px, 5vw, 54px);
    margin: 15px 0;
    color: #F5EDD6;
    /* Aapka cream color */
    text-transform: uppercase;
    /* Luxury vibe */
    line-height: 1.1;
}

.slide-text p {
    font-size: clamp(16px, 2vw, 18px);
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Slider buttons color */
.swiper-button-next,
.swiper-button-prev {
    color: var(--brand) !important;
    transform: scale(0.8);
    /* Thode chhote aur classy arrows */
}

.swiper-pagination-bullet-active {
    background: var(--brand) !important;
    width: 20px;
    /* Pill shape active dot */
    border-radius: 10px;
}


/* ==========================================================================
   HERO SLIDER - FINAL PERFECT FIT (NO EXTRA SPACE)
   ========================================================================== */

.hero-slider-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    /* Gaps ko fill karne ke liye background tabhi dikhega jab image load ho rahi ho */
    background: var(--bg);
}

/* Container ko image ki height ke mutabik shrink hone do */
.mainSwiper,
.mainSwiper .swiper-slide {
    width: 100%;
    height: auto !important;
    min-height: unset !important;
    /* Ye line extra cream space ko hatayegi */
}

.hero-banner-link,
.hero-banner-link picture {
    display: block;
    width: 100%;
    height: auto;
}

.hero-img {
    width: 100% !important;
    height: auto !important;
    /* Image apni asli height legi aur kategi nahi */
    display: block;
    /* Contain se image poori dikhti hai, cover se kat jati hai */
    object-fit: contain !important;
}

/* Pagination Dots ko image ke andar/upar adjust karne ke liye */
.swiper-pagination {
    bottom: 10px !important;
}

.swiper-pagination-bullet-active {
    background: var(--brand) !important;
    width: 20px !important;
    border-radius: 10px !important;
}


/* PC/Desktop par hide rakho */
#searchBtn {
    display: none;
}

/* Mobile (768px se niche) par dikhao */
@media (max-width: 859px) {
    #searchBtn {
        display: flex;
        /* flex use karo taaki icon center me rahe */
        align-items: center;
        justify-content: center;
    }
}


.reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.reel-card {
    position: relative;
    aspect-ratio: 9/16;
    /* Reels format */
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--brand-2);
    transition: transform 0.3s ease;
}

.reel-card:hover {
    transform: scale(0.98);
}

.reel-video-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-overlay {
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    color: #fff;
    transition: background 0.3s ease;
}

.reel-card:hover .reel-overlay {
    background: rgba(0, 0, 0, 0.4);
}

/* Mobile Responsive: Reels will scroll horizontally */
@media (max-width: 860px) {
    .reels-grid {
        grid-template-columns: repeat(4, 250px);
        /* Fixed width for horizontal scroll */
        overflow-x: auto;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        /* Hide scrollbar for clean look */
    }

    .reels-grid::-webkit-scrollbar {
        display: none;
    }

    .reel-card {
        scroll-snap-align: start;
    }
}

.reviews-section {
    /* padding: 80px 0; */
    background: rgba(201, 168, 76, 0.03);
}

.reviewsSwiper {
    padding: 20px 10px 0px 10px !important;
}

.review-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.review-card:hover {
    border-color: var(--brand);
    transform: translateY(-5px);
}

.stars {
    color: var(--brand);
    font-size: 20px;
    margin-bottom: 20px;
}

.review-text {
    font-family: 'Josefin Sans', sans-serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 25px;
}

.review-author strong {
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
}

.review-author span {
    font-size: 12px;
    color: var(--brand);
}

/* Dots customization */
.reviewsSwiper .swiper-pagination-bullet-active {
    background: var(--brand) !important;
}


@media (max-width: 768px) {
    .section-head {
        flex-direction: column;
        /* Pill aur Text ko upar-niche karne ke liye */
        align-items: center;
        /* Sab kuch center karne ke liye */
        text-align: center;
        /* Paragraph text center ho jayega */
        gap: 12px;
        margin-bottom: 24px;
    }

    .section-head p {
        font-size: 13px;
        /* Mobile par font thoda chota */
        line-height: 1.5;
        max-width: 90%;
        /* Sides se thodi jagah chodne ke liye */
        margin: 0 auto;
        opacity: 0.8;
        /* Thoda muted look premium lagta hai */
    }

    .section-head h2 {
        font-size: 24px;
        /* Heading thodi badi aur bold */
        margin-bottom: 4px;
    }
}


.faq-section {
    /* padding: 80px 0; */
    background: var(--bg);
}

.faq-container {
    max-width: 800px;
    /* PC par choda nahi hoga, beech mein rahega */
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: left;
}

.faq-question:hover {
    color: var(--brand);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(10, 8, 6, 0.02);
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
}

/* Open State */
.faq-item.active {
    border-color: var(--brand);
    box-shadow: var(--shadow);
}

.faq-item.active .icon {
    transform: rotate(45deg);
    color: var(--brand);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust as needed */
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 15px;
        padding: 15px 20px;
    }
}


.founder-section-new {
    padding: 60px 0;
    background: var(--bg);
}

.founder-compact-card {
    max-width: 800px;
    /* PC monitor par limit karne ke liye */
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.founder-img {
    flex: 0 0 35%;
    /* Photo card ka 35% hissa legi */
    height: 386px;
}

.founder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-details {
    flex: 1;
    padding: 30px;
}

.founder-details h3 {
    font-size: 24px;
    margin: 10px 0 5px;
    color: var(--text);
}

.founder-details .quote {
    font-style: italic;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- Responsive (Mobile Fix) --- */
@media (max-width: 768px) {
    .founder-compact-card {
        flex-direction: column;
        /* Mobile par vertical */
        max-width: 100%;
    }

    .founder-img {
        width: 100%;
        height: 200px;
        /* Mobile par photo thodi chhoti */
    }

    .founder-details {
        text-align: center;
        padding: 20px;
    }

    .founder-details .quote {
        font-size: 14px;
    }
}

.center-head {
    text-align: center;
    display: block !important;
    margin-bottom: 50px;
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    /* PC monitor limit */
    margin: 0 auto;
}

.hub-card {
    background: var(--bg);
    /* Light cream */
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.hub-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--brand);
}

.hub-icon {
    color: var(--brand);
    margin-bottom: 20px;
}

.hub-info h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.hub-info p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 15px;
}

.status-tag,
.time-tag {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
}

.status-tag {
    background: rgba(34, 197, 94, 0.15);
    color: #166534;
}

.time-tag {
    background: rgba(10, 8, 6, 0.05);
    color: var(--text);
}

.hub-link {
    margin-top: 25px;
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--brand-2);
    /* Black */
    color: var(--surface);
    /* Gold */
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid var(--brand);
}

.hub-form {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.hub-form input {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-family: inherit;
}

.hub-form button {
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--brand);
    border: none;
    font-weight: 700;
    cursor: pointer;
}

/* Mobile responsive */
@media (max-width: 992px) {
    .hub-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.site-footer {
    background-color: #1A1A1A;
    /* Soft Dark, not Pure Black */
    color: rgba(255, 255, 255, 0.8);
    /* White but a bit muted for premium look */
    padding: 80px 0 30px;
    margin-top: 60px;
    font-family: 'Josefin Sans', sans-serif;
    border-top: 2px solid var(--brand);
    /* Premium Gold Top Border */
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: var(--max);
    margin: 0 auto;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 35px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-col h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--brand);
    /* Gold Line under Headings */
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: var(--brand);
    padding-left: 5px;
    /* Subtle hover animation */
}

.footer-info-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

/* Social Icons Styling */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--brand);
    /* Gold Icons */
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.social-links a:hover {
    background: var(--brand);
    color: #1A1A1A;
    /* Icon becomes dark on hover */
    transform: translateY(-3px);
    /* Subtle lift animation */
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.3);
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    max-width: var(--max);
    margin: 0 auto;
}

.footer-copyright p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.pay-badge {
    font-size: 10px;
    font-weight: 800;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.02);
}

/* Mobile Responsive */
@media (max-width: 860px) {
    .footer-main {
        grid-template-columns: 1fr;
        /* text-align: center; */
        gap: 50px;
        padding-bottom: 40px;
    }

    .footer-col h3::after {
        left: 15px;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 25px;
    }

    .brand-col {
        text-align: center;
    }
}

.footer-copyright p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.dev-by {
    margin-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 10px;
}

.dev-by a {
    color: var(--brand);
    /* Aapka gold color */
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.dev-by a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Mobile par ye line break ho jaye isliye */
@media (max-width: 600px) {
    .dev-by {
        display: block;
        margin-left: 0;
        border-left: none;
        padding-left: 0;
        margin-top: 5px;
    }
}

.announcement-bar {
    background-color: var(--brand-2);
    /* Deep Black */
    color: var(--brand);
    /* Premium Gold */
    padding: 10px 0;
    overflow: hidden;
    /* Bahar ka text hide karne ke liye */
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    position: relative;
    z-index: 0;
}

.marquee-container {
    display: flex;
    width: 100%;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    /* Speed yahan se control karein */
}

.marquee-content span {
    display: inline-block;
    padding: 0 40px;
    /* Do offers ke beech ki jagah */
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Josefin Sans', sans-serif;
}

/* Right to Left Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Half length par repeat hoga */
    }
}

/* Hover karne par slide ruk jayegi taaki log code padh sakein */
.announcement-bar:hover .marquee-content {
    animation-play-state: paused;
    cursor: pointer;
}

/* Mobile par thoda font chota */
@media (max-width: 600px) {
    .marquee-content span {
        font-size: 11px;
        padding: 0 25px;
    }
}

/* Simple Active Link Styling */
.nav-links a.active {
    color: var(--brand) !important;
    /* Gold color */
    background: rgba(201, 168, 76, 0.1);
    /* Subtle gold background */
    border-radius: 8px;
    /* Thode se round corners professional lagte hain */
    font-weight: 600;
}

/* Mobile Drawer Links Styling */
.drawer-nav a {
    display: block;
    padding: 15px 20px;
    color: var(--text);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

/* Simple Active Class for Mobile */
.drawer-nav a.active {
    color: var(--brand) !important;
    /* Gold color */
    background: rgba(201, 168, 76, 0.1);
    /* Subtle gold background */
    border-radius: 10px;
    font-weight: 600;
}

/* Categories Card Image Fix */
#categories .product-img {
    height: 180px;
    /* Ek standard height */
    background: rgba(15, 23, 42, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#categories .card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    background: #fff;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

#categories .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* ==========================================================================
   PRODUCT IMAGE GAP FIX - FULL WIDTH LOOK
   ========================================================================== */

.product-img {
    height: 220px;
    /* Ek standard professional height */
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #fdfcf7;
    /* Premium light cream background */
    display: block;
}

.product-img img {
    width: 100% !important;
    height: 100% !important;
    /* Isse image sides ki saari jagah bhar degi */
    object-fit: cover !important;
    /* Image hamesha center se dikhegi, sides se halki crop hogi agar zaroorat padi toh */
    object-position: center !important;
    transition: transform 0.4s ease;
}



/* ==========================================================================
   MOBILE RESPONSIVE GRID (1 COLUMN - FULL WIDTH)
   ========================================================================== */

@media (max-width: 768px) {

    /* Grid ko 1 column mein badalna (Ek row mein ek product) */
    .grid-4#productGrid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        /* Cards ke beech premium gap */
        padding: 0 10px;
    }

    /* Product Image ki height badhana taaki full width par sahi dikhe */
    #productGrid .product-img {
        height: 280px !important;
        /* Full width card ke liye perfect height */
    }

    /* Card ki padding thodi zyada rakhein 1 column mein */
    #productGrid .card-body {
        padding: 15px !important;
    }

    /* Text size ko readable rakhein */
    #productGrid .product-title {
        font-size: 18px !important;
        /* Badi heading */
        line-height: 1.3;
        margin-bottom: 6px;
    }

    #productGrid .product-meta {
        font-size: 13px !important;
        margin-bottom: 12px;
    }

    #productGrid .price {
        font-size: 18px !important;
        font-weight: 800;
    }

    #productGrid .old {
        font-size: 14px !important;
    }

    /* Buttons ko side-by-side rakhein (kyunki space ab kafi hai) */
    #productGrid .actions {
        flex-direction: row !important;
        gap: 10px !important;
    }

    #productGrid .actions .btn {
        flex: 1;
        padding: 12px 10px !important;
        font-size: 14px !important;
    }

    #productGrid .note {
        font-size: 12px !important;
        margin-top: 12px;
    }

    #productGrid .badge {
        font-size: 11px !important;
        padding: 4px 10px !important;
    }
    #onmobile{
        display: none;
    }
}

/* Bahut chote phones (e.g. iPhone SE) ke liye extra adjustment */
@media (max-width: 380px) {
    .grid-4#productGrid {
        gap: 8px !important;
    }

    #productGrid .product-img {
        height: 140px !important;
    }
}


/* ==========================================================================
   MOBILE CATEGORY GRID (2 COLUMNS)
   ========================================================================== */

@media (max-width: 768px) {

    /* Category Grid ko 2 columns mein badalna */
    #categories .grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 10px;
    }

    /* Category Card ki height adjust karna */
    #categories .card {
        padding: 10px !important;
        text-align: center;
        background: #fff;
        border-radius: 14px !important;
    }

    /* Image/Icon ko Square ya Round look dena */
    #categories .product-img {
        height: 120px !important;
        /* Mobile ke liye sasti height */
        border-radius: 10px !important;
        margin-bottom: 8px !important;
        background: rgba(10, 8, 6, 0.02) !important;
    }

    #categories .product-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        /* Category image puri bhari dikhegi */
    }

    /* Text adjustments */
    #categories .product-title {
        font-size: 14px !important;
        font-weight: 700 !important;
        margin: 4px 0 !important;
    }

    #categories .product-meta {
        font-size: 10px !important;
        color: var(--muted-2) !important;
        /* Thoda halka color */
        justify-content: center;
    }
}

.reel-card {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
}

.reel-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Video poore card ko fill karegi */
    display: block;
}

.reel-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    color: #fff;
    font-size: 24px;
    pointer-events: none;
    /* User video par click kar sake */
}

/* Chrome, Safari, Edge, Opera: Arrow hide karne ke liye */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox: Arrow hide karne ke liye */
input[type=number] {
    -moz-appearance: textfield;
}


.featured-section-dark {
    padding: 70px 0;
    overflow: hidden;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.section-label-gold {
    text-align: center;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--brand);
    margin-bottom: 50px;
    font-weight: 800;
}

.logos-wrapper {
    overflow: hidden;
    position: relative;

    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logos-track {
    display: flex;
    width: max-content;
    align-items: center;
    will-change: transform;
}

.featured-link {
    margin: 0 60px;
    opacity: 0.8;
    transition: 0.3s;
}

.featured-link img {
    height: 35px;
    width: auto;
    display: block;
}

.featured-link:hover {
    transform: scale(1.1);
    opacity: 1;
}

.featured-link:hover img {
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.6));
}

/* Responsive */
@media (max-width: 768px) {
    .featured-link {
        margin: 0 30px;
    }

    .featured-link img {
        height: 25px;
    }

    .logos-track {
        margin-bottom: 20px;
    }
}