/* ═══════════════════════════════════════════════
   HERO BANNER
   ═══════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0f172a;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 var(--spacing-lg);
}
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 1.2rem;
    animation: fadeInDown 0.6s ease-out;
}
.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    animation: fadeInDown 0.6s ease-out 0.1s backwards;
}
.hero-title-accent {
    background: linear-gradient(135deg, #c09d5c, #e8c87a, #c09d5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    opacity: 0.92;
    animation: fadeInDown 0.6s ease-out 0.2s backwards;
}
.hero-hindi {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.88);
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease-out 0.25s backwards;
}
.hero-cta-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInDown 0.6s ease-out 0.35s backwards;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(192,157,92,0.4);
}
.btn-hero-outline {
    padding: 0.85rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-full);
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.5);
    color: white;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: white;
    color: white;
}

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

/* ═══════════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════════ */
.trust-strip {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 16px 0;
}
.trust-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: white;
    font-size: 0.88rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.trust-item strong {
    display: block;
    line-height: 1.2;
}
.trust-sub {
    display: block;
    font-size: 0.72rem;
    opacity: 0.7;
    font-weight: 400;
}
.trust-icon {
    font-size: 1.25rem;
}
.trust-divider {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.15);
}

/* ═══════════════════════════════════════════════
   SECTION HEADERS (Modern)
   ═══════════════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}
.section-header--left {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 16px;
}
.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-accent);
}
.section-title--modern {
    font-size: clamp(1.4rem, 3vw, 2rem);
    text-transform: none;
    letter-spacing: -0.3px;
    font-weight: 700;
}
.section-title--modern::after {
    display: none;
}
.section-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}
.section-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-left: auto;
    white-space: nowrap;
}
.section-link:hover {
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════
   HOMEPAGE SECTIONS SPACING
   ═══════════════════════════════════════════════ */
.home-section {
    padding-top: clamp(2rem, 4vw, 3.5rem);
    padding-bottom: clamp(1rem, 3vw, 2rem);
}
.home-section--tight {
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
    padding-bottom: clamp(0.5rem, 2vw, 1rem);
}

/* ═══════════════════════════════════════════════
   CATEGORY DISCOVERY TILES
   ═══════════════════════════════════════════════ */
.category-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.category-scroll::-webkit-scrollbar { display: none; }
.category-tile {
    flex: 0 0 auto;
    width: 110px;
    height: 110px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: white;
    text-decoration: none;
    scroll-snap-align: start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.category-tile:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    color: white;
}
.category-emoji {
    font-size: 2rem;
    line-height: 1;
}
.category-name {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.2;
}

/* ═══════════════════════════════════════════════
   FEATURED STORES HORIZONTAL SCROLL
   ═══════════════════════════════════════════════ */
.home-stores-section {
    background: var(--color-bg-alt);
}
.stores-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.stores-scroll::-webkit-scrollbar { display: none; }
.stores-scroll .brand-card {
    flex: 0 0 auto;
    width: 160px;
    height: 160px;
    scroll-snap-align: start;
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════ */
.home-hiw-section {
    background: white;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.hiw-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}
.hiw-card {
    flex: 1;
    max-width: 240px;
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}
.hiw-num {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 2.5rem;
    font-weight: 900;
    opacity: 0.06;
    font-family: var(--font-heading);
    line-height: 1;
}
.hiw-icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}
.hiw-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.hiw-card p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}
.hiw-arrow {
    display: flex;
    align-items: center;
    padding-top: 2.5rem;
    color: var(--color-border-dark);
}
.hiw-arrow svg {
    width: 20px;
    height: 20px;
}

/* ═══════════════════════════════════════════════
   LOCAL TRUST & SOCIAL PROOF
   ═══════════════════════════════════════════════ */
.home-local-section {
    background: linear-gradient(135deg, #faf5e9 0%, #fff 50%, #f0f4ff 100%);
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.local-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
.local-stat {
    text-align: center;
    padding: 1.2rem 0.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}
.local-stat-num {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
}
.local-stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-top: 2px;
}
.local-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.local-review-card {
    background: white;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}
.review-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}
.local-review-card p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    font-style: italic;
}
.review-author {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════
   FINAL CTA BANNER
   ═══════════════════════════════════════════════ */
.home-final-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    color: white;
}
.final-cta-title {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}
.final-cta-sub {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════
   AUTHENTCATION PAGES
   ═══════════════════════════════════════════════ */
.auth-container {
    max-width: 400px;
    margin: var(--spacing-3xl) auto;
    padding: var(--spacing-xl);
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════════════
   MOBILE RESPONSIVE — HOME
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Hero compact */
    .hero {
        height: 52vh;
        min-height: 320px;
    }
    .hero-title {
        letter-spacing: 1px;
    }
    .hero-subtitle {
        font-size: 0.88rem;
        margin-bottom: 0.3rem;
    }
    .hero-hindi {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    .hero-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
        margin-bottom: 0.8rem;
    }
    .hero-cta-group {
        gap: 8px;
    }
    .btn-hero-primary, .btn-hero-outline {
        padding: 0.65rem 1.3rem;
        font-size: 0.88rem;
    }

    /* Trust strip compact */
    .trust-strip {
        padding: 10px 0;
    }
    .trust-strip-inner {
        gap: 0.6rem;
        justify-content: space-around;
        font-size: 0.78rem;
    }
    .trust-divider {
        display: none;
    }
    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 2px;
    }
    .trust-icon {
        font-size: 1.1rem;
    }
    .trust-sub {
        font-size: 0.6rem;
    }

    /* Section headers compact */
    .section-header {
        margin-bottom: var(--spacing-md);
    }
    .section-title {
        font-size: 1.3rem;
        letter-spacing: 0.5px;
    }
    .section-title::after {
        width: 36px;
        height: 2px;
        bottom: -6px;
    }
    .section-title--modern {
        font-size: 1.15rem;
    }
    .section-label {
        font-size: 0.68rem;
    }

    /* Home sections tighter */
    .home-section {
        padding-top: 1.5rem;
        padding-bottom: 0.5rem;
    }
    .home-section--tight {
        padding-top: 1.2rem;
        padding-bottom: 0.3rem;
    }

    /* Category tiles smaller */
    .category-tile {
        width: 85px;
        height: 85px;
        border-radius: 12px;
    }
    .category-emoji {
        font-size: 1.5rem;
    }
    .category-name {
        font-size: 0.62rem;
    }

    /* Stores scroll smaller */
    .stores-scroll .brand-card {
        width: 130px;
        height: 130px;
    }

    /* How it works: vertical on mobile */
    .hiw-grid {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .hiw-card {
        max-width: 100%;
        padding: 1rem;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 12px;
    }
    .hiw-num {
        display: none;
    }
    .hiw-icon {
        font-size: 1.8rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .hiw-card h3 {
        font-size: 0.88rem;
        margin-bottom: 2px;
    }
    .hiw-card p {
        font-size: 0.78rem;
    }
    .hiw-arrow {
        transform: rotate(90deg);
        padding-top: 0;
    }
    .hiw-arrow svg {
        width: 16px;
        height: 16px;
    }

    /* Local stats: 2 cols on mobile */
    .local-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .local-stat {
        padding: 1rem 0.5rem;
    }
    .local-stat-num {
        font-size: 1.4rem;
    }
    .local-stat-label {
        font-size: 0.65rem;
    }

    /* Reviews: horizontal scroll on mobile */
    .local-reviews {
        grid-template-columns: 1fr;
        gap: 10px;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .local-reviews::-webkit-scrollbar { display: none; }
    .local-review-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        padding: 1rem;
    }
    .local-review-card p {
        font-size: 0.82rem;
    }

    /* Final CTA compact */
    .home-final-cta {
        padding: 2rem 0;
    }
    .final-cta-title {
        font-size: 1.2rem;
    }
    .final-cta-sub {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    /* Tighter section spacing */
    .mt-xl { margin-top: var(--spacing-md); }
    .mb-xl { margin-bottom: var(--spacing-md); }
}
.about-hero {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: radial-gradient(1200px 400px at 20% 0%, rgba(192,157,92,0.18), transparent 60%),
                radial-gradient(900px 300px at 80% 10%, rgba(0,0,0,0.06), transparent 55%),
                white;
    box-shadow: var(--shadow-sm);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: var(--spacing-xl);
}
.about-hero-inner {
    max-width: 860px;
}
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.8);
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 14px;
}
.about-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}
.about-lead {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 60ch;
}
.about-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-sm);
    padding: clamp(1.25rem, 2.5vw, 2rem);
    max-width: 980px;
}
.about-card p {
    color: var(--color-text-main);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* --- Shop / Product Pages --- */
.catalog-layout {
    display: flex;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-xl);
}
.catalog-sidebar {
    width: 250px;
    flex-shrink: 0;
}
.catalog-content {
    flex-grow: 1;
}
.filter-group {
    margin-bottom: var(--spacing-lg);
}
.filter-title {
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--spacing-xs);
}

@media (max-width: 768px) {
    .catalog-layout {
        flex-direction: column;
    }
    .catalog-sidebar {
        width: 100%;
        margin-bottom: var(--spacing-lg);
    }
}


/* Product Details */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-xl);
}
.pd-images .main-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-md);
    background: #f0f0f0;
}
.pd-info .pd-brand {
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}
.pd-info .pd-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}
.pd-info .pd-price {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}
.pd-size-block {
    margin-bottom: var(--spacing-lg);
}
.pd-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.pd-size-btn {
    min-width: 48px;
    padding: 0.45rem 0.8rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: white;
    color: var(--color-text-main);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.pd-size-btn:hover {
    border-color: var(--color-primary);
}
.pd-size-btn.is-active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}
@media (max-width: 768px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}
.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}
.footer-links li {
    margin-bottom: var(--spacing-sm);
}
.footer-links a {
    color: var(--color-text-light);
}
.footer-links a:hover {
    color: white;
}
.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--color-text-light);
}

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