/* =================================================================
   AstroCare - Premium App-like Theme
   ================================================================= */

:root {
    --primary: #3D2C8D;
    --primary-light: #6B4FBB;
    --primary-dark: #2A1E66;
    --accent: #F4B860;
    --accent-light: #FFD89E;
    --success: #22C55E;
    --danger: #EF4444;
    --warning: #F59E0B;
    --info: #0EA5E9;
    --bg: #F7F5FB;
    --surface: #FFFFFF;
    --text: #1A1A2E;
    --text-muted: #6B6B7E;
    --border: #ECECF3;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 22px;
    --shadow-sm: 0 2px 8px rgba(61, 44, 141, .06);
    --shadow: 0 8px 24px rgba(61, 44, 141, .08);
    --shadow-lg: 0 18px 50px rgba(61, 44, 141, .14);
    --gradient-primary: linear-gradient(135deg, #3D2C8D 0%, #6B4FBB 100%);
    --gradient-accent: linear-gradient(135deg, #F4B860 0%, #FFD89E 100%);
    --gradient-cosmic: linear-gradient(135deg, #2A1E66 0%, #3D2C8D 50%, #6B4FBB 100%);
}

* { box-sizing: border-box; }

html, body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-light); }

h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--text); }
.font-serif { font-family: 'Cormorant Garamond', serif; }

.container { max-width: 1280px; }

/* Top Header (Desktop) */
.app-header {
    background: var(--gradient-cosmic);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    color: #fff;
    box-shadow: var(--shadow);
}
.app-header .brand-name { color: #fff; font-weight: 800; font-size: 1.25rem; line-height: 1.1; }
.app-header .brand-tag { color: rgba(255,255,255,.7); font-size: .72rem; }
.app-header .icon-btn { color: #fff; }
.header-search {
    flex: 1;
    max-width: 480px;
    margin: 0 24px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(8px);
}
.header-search input {
    background: transparent;
    border: 0;
    color: #fff;
    flex: 1;
    outline: 0;
    font-size: .92rem;
}
.header-search input::placeholder { color: rgba(255,255,255,.65); }
.header-search i { color: rgba(255,255,255,.8); }

/* Mobile Top Header */
.mobile-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--gradient-cosmic);
    color: #fff;
    padding-top: env(safe-area-inset-top);
}
.mobile-header .brand-name { color: #fff; font-weight: 800; font-size: 1.1rem; line-height: 1.1; }
.mobile-header .brand-tag { color: rgba(255,255,255,.7); font-size: .68rem; }
.mobile-search {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50px;
    padding: 8px 14px;
    gap: 8px;
}
.mobile-search input {
    background: transparent;
    border: 0;
    color: #fff;
    flex: 1;
    outline: 0;
    font-size: .9rem;
}
.mobile-search input::placeholder { color: rgba(255,255,255,.7); }
.mobile-search i { color: rgba(255,255,255,.8); }

/* Brand */
.brand-logo { line-height: 0; }
.brand-name { font-weight: 800; font-size: 1.1rem; line-height: 1.1; color: var(--text); }
.brand-tag { font-size: .68rem; color: var(--text-muted); letter-spacing: .04em; }

/* Icon Buttons */
.icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    transition: all .2s;
    text-decoration: none;
    font-size: 1.1rem;
}
.icon-btn:hover { background: rgba(255,255,255,.2); color: #fff; transform: translateY(-1px); }
.icon-btn-sm { width: 36px; height: 36px; font-size: 1rem; }
.badge-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: .65rem;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
}

/* Bottom Nav (Mobile) */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 24px rgba(61, 44, 141, .12);
    z-index: 1020;
    display: flex;
    justify-content: space-around;
    padding: 8px 4px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
}
.bn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--text-muted);
    font-size: .68rem;
    text-decoration: none;
    padding: 4px;
    border-radius: 10px;
    position: relative;
    transition: all .2s;
    min-height: 50px;
    justify-content: center;
}
.bn-item i { font-size: 1.25rem; }
.bn-item.active { color: var(--primary); }
.bn-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 0 0 3px 3px;
}
.bn-badge {
    position: absolute;
    top: 2px;
    right: calc(50% - 22px);
    background: var(--accent);
    color: var(--primary-dark);
    font-size: .62rem;
    font-weight: 800;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Main */
.app-main {
    min-height: 60vh;
    padding-bottom: 90px;
}
@media (min-width: 992px) {
    .app-main { padding-bottom: 30px; padding-top: 0; }
}
@media (max-width: 991.98px) {
    .app-main { padding-top: 0; }
}

/* ===== SHOP PAGE STYLES ===== */

/* Search + Filter Row */
.search-filter-row {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}
.sf-search {
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 9px 16px;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}
.sf-search i { color: var(--text-muted); }
.sf-search input {
    background: transparent;
    border: 0;
    flex: 1;
    outline: 0;
    font-size: .88rem;
    color: var(--text);
}
.sf-search input::placeholder { color: var(--text-muted); }

.sf-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 9px 18px;
    color: var(--text);
    font-weight: 600;
    font-size: .88rem;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    cursor: pointer;
    transition: all .2s;
}
.sf-filter-btn:hover { border-color: var(--primary); color: var(--primary); }

/* Shop Category Strip */
.shop-cat-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 0 14px;
    margin-bottom: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.shop-cat-strip::-webkit-scrollbar { display: none; }
.shop-cat-item {
    flex: 0 0 auto;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    width: 78px;
    transition: all .2s;
}
.scc-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #F3EEFC, #E9E0FB);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    font-size: 1.6rem;
    border: 2px solid transparent;
    transition: all .2s;
}
.scc-name {
    font-weight: 600;
    font-size: .75rem;
    line-height: 1.2;
}
.shop-cat-item:hover .scc-icon { transform: scale(1.05); }
.shop-cat-item.active .scc-icon {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(61,44,141,.3);
    transform: scale(1.05);
}
.shop-cat-item.active .scc-name { color: var(--primary); font-weight: 700; }

/* Sort Dropdown */
.sort-dropdown .form-select {
    border-radius: 50px;
    padding: 8px 36px 8px 16px;
    border: 1.5px solid var(--border);
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    background-color: var(--surface);
    min-width: 180px;
    box-shadow: var(--shadow-sm);
}

/* Section title (smaller for shop) */
.section-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    color: var(--text);
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: .02em;
}
@media (min-width: 768px) { .section-title { font-size: 1.4rem; } }

/* ===== END SHOP PAGE STYLES ===== */

/* ===== PRODUCT DETAIL PAGE ===== */
.pd-page { padding-bottom: 100px; }

.pd-back-row { display: flex; align-items: center; }
.pd-back {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--surface);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    border: 0;
    text-decoration: none;
}
.pd-back:hover { color: var(--primary); }

.pd-breadcrumb { margin-bottom: 12px; }

.pd-gallery {
    background: var(--surface);
    border-radius: 20px;
    padding: 14px;
    box-shadow: var(--shadow-sm);
}
.pd-main-img {
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: #F3F0F8;
    margin-bottom: 10px;
    position: relative;
}
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-badge {
    top: 12px !important;
    left: 12px !important;
    font-size: .72rem !important;
    padding: 5px 10px !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.pd-heart {
    top: 12px !important;
    right: 12px !important;
    position: absolute;
    width: 36px;
    height: 36px;
}
.pd-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}
.pd-thumbs::-webkit-scrollbar { display: none; }
.pd-thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    border: 2px solid transparent;
    transition: all .2s;
    background: #F3F0F8;
}
.pd-thumb.active { border-color: var(--primary); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pd-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.2;
}
@media (min-width: 768px) { .pd-title { font-size: 1.7rem; } }
.pd-tag { color: var(--text-muted); font-size: .88rem; margin-bottom: 8px; }

.pd-price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.pd-price { color: var(--primary); font-weight: 800; font-size: 1.5rem; }
.pd-mrp { color: var(--text-muted); text-decoration: line-through; font-size: .9rem; }
.pd-off {
    color: #fff;
    background: var(--success);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: .75rem;
    font-weight: 700;
}

.energy-tag {
    background: linear-gradient(135deg, #F3EEFC, #E9E0FB);
    color: var(--primary);
    padding: 12px 14px;
    border-radius: 12px;
    font-size: .82rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid #E9E0FB;
}
.energy-tag i { font-size: 1.3rem; flex-shrink: 0; color: var(--accent); }
.energy-tag strong { display: block; color: var(--primary-dark); }
.energy-tag small { color: var(--text-muted); font-size: .76rem; line-height: 1.3; }

/* Feature Grid (smaller) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    background: var(--surface);
    border-radius: 16px;
    padding: 14px 8px;
    box-shadow: var(--shadow-sm);
}
@media (min-width: 576px) { .feature-grid { grid-template-columns: repeat(4, 1fr); padding: 18px 12px; } }
.feature-item { text-align: center; padding: 4px; }
.feature-item i { font-size: 1.5rem; }
.feature-item small { display: block; font-size: .72rem; font-weight: 600; color: var(--text); margin-top: 4px; line-height: 1.2; }
@media (min-width: 768px) { .feature-item small { font-size: .78rem; } }

/* About section with chakra */
.about-section .chakra-card {
    background: linear-gradient(135deg, #F3EEFC, #E9E0FB);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    height: 100%;
}
.chakra-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(61,44,141,.3);
}
.chakra-card h6 { color: var(--primary-dark); font-weight: 700; }

/* Tabs (compact) */
.tabs-nav {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 16px;
    overflow-x: auto;
    scrollbar-width: none;
}
.tabs-nav::-webkit-scrollbar { display: none; }
.tab-btn {
    background: transparent;
    border: 0;
    padding: 10px 14px;
    font-weight: 700;
    color: var(--text-muted);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    cursor: pointer;
    font-size: .85rem;
}
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* Sticky Bottom Action Bar (mobile) */
.pd-bottom-bar {
    position: fixed;
    bottom: 70px; /* above bottom nav */
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 24px rgba(61, 44, 141, .14);
    z-index: 1015;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    gap: 10px;
    border-top: 1px solid var(--border);
}
.pd-bottom-price {
    flex: 0 0 auto;
    min-width: 90px;
}
.pd-bp-label {
    font-size: .68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 600;
}
.pd-bp-amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}
.pd-bp-off {
    font-size: .68rem;
    color: #16A34A;
    font-weight: 700;
}
.pd-bottom-actions {
    flex: 1;
    display: flex;
    gap: 8px;
}
.btn-pd-cart {
    flex: 1;
    background: var(--surface);
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: 50px;
    padding: 10px 12px;
    font-weight: 700;
    font-size: .82rem;
    cursor: pointer;
    transition: all .2s;
}
.btn-pd-cart:active { transform: scale(.97); }
.btn-pd-buy {
    flex: 1;
    background: var(--primary);
    color: #fff;
    border: 0;
    border-radius: 50px;
    padding: 10px 12px;
    font-weight: 700;
    font-size: .82rem;
    cursor: pointer;
    transition: all .2s;
}
.btn-pd-buy:active { background: var(--primary-dark); transform: scale(.97); }

/* Desktop: hide bottom bar */
@media (min-width: 992px) {
    .pd-bottom-bar { display: none !important; }
    .pd-page { padding-bottom: 30px; }
}

/* ===== END PRODUCT DETAIL PAGE ===== */

/* Section */
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    margin-top: 6px;
}
.section-link {
    color: var(--primary);
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
}
.section-link:hover { color: var(--primary-light); }

/* Hero */
.hero {
    background: var(--gradient-cosmic);
    border-radius: var(--radius-lg);
    color: #fff;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px 400px at 80% 20%, rgba(244,184,96,.18), transparent 60%);
    pointer-events: none;
}
.hero h1 { color: #fff; font-size: 2rem; font-family: 'Cormorant Garamond', serif; font-weight: 700; }
.hero p { color: rgba(255,255,255,.85); max-width: 420px; }
.hero .eyebrow { color: var(--accent); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .75rem; }
.hero .btn-hero {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    border: 0;
    border-radius: 50px;
    padding: 10px 26px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(244,184,96,.4);
}
.hero .btn-hero:hover { transform: translateY(-2px); color: var(--primary-dark); }
.hero-img { max-width: 320px; margin-left: auto; }

/* Hero Card (new mobile-first) */
.hero-card {
    background: var(--gradient-cosmic);
    border-radius: 20px;
    color: #fff;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
    min-height: 260px;
    display: flex;
    align-items: center;
}
.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(500px 300px at 90% 30%, rgba(244,184,96,.25), transparent 70%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; flex: 1; }
.hero-eyebrow {
    color: var(--accent);
    font-weight: 700;
    font-size: .8rem;
    margin-bottom: 6px;
    letter-spacing: .04em;
}
.hero-title {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 10px;
}
.hero-sub {
    color: rgba(255,255,255,.8);
    font-size: .9rem;
    margin-bottom: 16px;
    max-width: 280px;
    line-height: 1.4;
}
.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-accent);
    color: var(--primary-dark);
    border: 0;
    border-radius: 50px;
    padding: 11px 26px;
    font-weight: 700;
    text-decoration: none;
    font-size: .9rem;
    box-shadow: 0 6px 20px rgba(244,184,96,.35);
    transition: all .2s;
}
.btn-hero-cta:hover { color: var(--primary-dark); transform: translateY(-2px); }

/* ----- Hero Banner Carousel (admin-managed banners) ----- */
.hero-carousel {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 18px;
    background: var(--gradient-cosmic);
    color: #fff;
}
/* Heights: image-only (no text) is TALLER to showcase the image */
.hero-carousel.has-text { min-height: 240px; }
.hero-carousel.no-text  { min-height: 320px; }
.hero-slides {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.hero-slides-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .55s cubic-bezier(.45,.05,.25,1);
    will-change: transform;
}
/* Each slide gets explicit min-height to match its variant — fixes 0-height bug */
.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 24px;
    overflow: hidden;
}
.hero-carousel.has-text .hero-slide { min-height: 240px; }
.hero-carousel.no-text  .hero-slide { min-height: 320px; }

.hero-slide.no-text {
    padding: 0;
    align-items: stretch;
}

/* Background image — full bleed */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    display: block;
}
/* With text → dim the image so text is readable */
.hero-slide.has-text .hero-slide-bg {
    opacity: 0.45;
}
/* Tint overlay only used when slide has text */
.hero-slide-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(28,16,68,.85) 0%,
        rgba(45,28,98,.55) 45%,
        rgba(45,28,98,.15) 100%);
    z-index: 1;
}
/* Placeholder when image is missing */
.hero-slide-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: .9rem;
    z-index: 0;
}
.hero-slide-placeholder i { font-size: 3rem; margin-bottom: 6px; }

.hero-slide-content {
    position: relative;
    z-index: 3;
    max-width: 80%;
    padding-right: 12px;
}
.hero-slide-content .hero-title {
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,.75);
    font-size: 1.7rem;
    line-height: 1.15;
    font-weight: 700;
}
.hero-slide-content .hero-sub {
    color: #fff;
    text-shadow: 0 1px 10px rgba(0,0,0,.75);
    font-size: .88rem;
    max-width: 100%;
    font-weight: 600;
    opacity: .98;
}
.hero-slide-content .btn-hero-cta {
    padding: 9px 20px;
    font-size: .82rem;
    box-shadow: 0 6px 18px rgba(0,0,0,.45);
}

.hero-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 5;
}
.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.45);
    cursor: pointer;
    padding: 0;
    transition: all .2s;
}
.hero-dot.active {
    background: #fff;
    width: 20px;
    border-radius: 3px;
}

@media (max-width: 575px) {
    .hero-carousel.has-text { min-height: 200px; border-radius: 16px; }
    .hero-carousel.no-text  { min-height: 240px; border-radius: 16px; }
    .hero-carousel.has-text .hero-slide { min-height: 200px; }
    .hero-carousel.no-text  .hero-slide { min-height: 240px; }
    .hero-slide { padding: 18px; }
    .hero-slide.no-text { padding: 0; }
    .hero-slide-content { max-width: 70%; }
    .hero-slide-content .hero-title { font-size: 1.3rem; line-height: 1.15; }
    .hero-slide-content .hero-sub { font-size: .74rem; margin-bottom: 10px; }
    .hero-slide-content .btn-hero-cta { padding: 7px 14px; font-size: .72rem; }
}
@media (min-width: 992px) {
    .hero-carousel.has-text { min-height: 280px; }
    .hero-carousel.no-text  { min-height: 380px; }
    .hero-carousel.has-text .hero-slide { min-height: 280px; }
    .hero-carousel.no-text  .hero-slide { min-height: 380px; }
    .hero-slide-content .hero-title { font-size: 2.1rem; }
    .hero-slide-content .hero-sub { font-size: .95rem; }
    .hero-slide-content .btn-hero-cta { font-size: .9rem; padding: 11px 26px; }
}

.hero-illustration {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    z-index: 1;
    pointer-events: none;
}
@media (max-width: 575.98px) {
    .hero-illustration { width: 160px; height: 160px; right: -30px; opacity: .9; }
    .hero-title { font-size: 1.7rem; }
    .hero-sub { font-size: .85rem; }
    .hero-card { padding: 24px 20px; }
}
@media (min-width: 768px) {
    .hero-card { padding: 40px 36px; min-height: 320px; }
    .hero-illustration { width: 260px; height: 260px; }
    .hero-title { font-size: 2.4rem; }
}

/* Category Strip (horizontal scroll on mobile) */
.cat-strip {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 0 14px;
    margin-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.cat-strip::-webkit-scrollbar { display: none; }
.cat-item {
    flex: 0 0 auto;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    width: 80px;
}
.cat-circle {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    font-size: 1.7rem;
    transition: all .2s;
}
.cat-item:hover .cat-circle { transform: scale(1.08); }
.cat-label {
    font-weight: 600;
    font-size: .78rem;
    line-height: 1.2;
}
@media (min-width: 768px) {
    .cat-strip {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 14px;
        overflow: visible;
    }
    .cat-item { width: 100%; }
}

/* Trust Pill - 2x2 grid on mobile, no horizontal scroll */
.trust-pill {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 14px;
    margin: 14px 0 18px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
}
.tp-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    min-width: 0;
}
.tp-item i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F3EEFC;
    border-radius: 8px;
}
.tp-item strong { display: block; font-size: .78rem; font-weight: 700; line-height: 1.1; }
.tp-item small { color: var(--text-muted); font-size: .68rem; line-height: 1.1; }
@media (min-width: 768px) {
    .trust-pill {
        grid-template-columns: repeat(4, 1fr);
        padding: 16px;
    }
    .tp-item i { background: transparent; width: auto; height: auto; }
}

/* Promo Banner (Horoscope) */
.promo-banner {
    background: linear-gradient(135deg, #4A3590 0%, #6B4FBB 50%, #8B5FBF 100%);
    border-radius: 18px;
    padding: 18px 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    position: relative;
    overflow: hidden;
}
.promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 50%, rgba(244,184,96,.2), transparent 50%);
    pointer-events: none;
}
.promo-illustration {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.promo-content { flex: 1; position: relative; z-index: 1; }
.promo-title {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 4px;
}
.promo-sub { font-size: .8rem; color: rgba(255,255,255,.8); margin: 0; }
.btn-promo {
    background: var(--accent);
    color: var(--primary-dark);
    border: 0;
    border-radius: 50px;
    padding: 8px 16px;
    font-weight: 700;
    font-size: .82rem;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all .2s;
}
.btn-promo:hover { color: var(--primary-dark); transform: translateY(-1px); }
@media (max-width: 575.98px) {
    .promo-banner { flex-wrap: wrap; }
    .promo-content { flex: 1 0 100%; order: 2; }
    .promo-illustration { order: 1; }
    .btn-promo { order: 3; margin-left: auto; }
    .promo-title { font-size: 1.05rem; }
}

/* Categories */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 14px;
    margin-bottom: 30px;
}
.cat-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 18px 8px;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: all .25s;
    box-shadow: var(--shadow-sm);
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--primary); }
.cat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #F3EEFC, #E9E0FB);
    color: var(--primary);
}
.cat-name { font-weight: 700; font-size: .85rem; }

/* Product Card */
.product-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .25s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-thumb {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #F3F0F8;
    position: relative;
}
.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.product-card:hover .product-thumb img { transform: scale(1.05); }
.product-info { padding: 10px; flex: 1; display: flex; flex-direction: column; }
.product-name {
    font-weight: 700;
    font-size: .82rem;
    margin: 0 0 3px;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (min-width: 768px) {
    .product-info { padding: 12px; }
    .product-name { font-size: .92rem; }
}
.product-tag { font-size: .68rem; color: var(--text-muted); margin-bottom: 4px; }
@media (min-width: 768px) { .product-tag { font-size: .72rem; } }
.product-price { color: var(--primary); font-weight: 800; font-size: .92rem; }
@media (min-width: 768px) { .product-price { font-size: 1rem; } }
.product-mrp { color: var(--text-muted); text-decoration: line-through; margin-left: 4px; font-size: .72rem; }
.product-discount { color: #16A34A; font-size: .68rem; font-weight: 700; margin-left: 3px; }
.product-rating { color: var(--accent); font-size: .7rem; }
@media (min-width: 768px) { .product-rating { font-size: .8rem; } }
.product-rating span { color: var(--text-muted); margin-left: 4px; }
.product-actions {
    position: absolute;
    top: 6px;
    right: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
@media (min-width: 768px) { .product-actions { top: 10px; right: 10px; gap: 6px; } }
.action-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    border: 0;
    transition: all .2s;
    cursor: pointer;
    font-size: .85rem;
}
@media (min-width: 768px) { .action-btn { width: 34px; height: 34px; font-size: 1rem; } }
.action-btn:hover { color: var(--primary); transform: scale(1.08); }
.product-add {
    background: var(--primary);
    color: #fff;
    border: 0;
    border-radius: 50px;
    padding: 6px 8px;
    font-size: .7rem;
    font-weight: 600;
    margin-top: 6px;
    transition: all .2s;
    cursor: pointer;
    display: block;
    width: 100%;
}
@media (min-width: 768px) { .product-add { padding: 8px 14px; font-size: .8rem; } }
.product-add:hover { background: var(--primary-dark); color: #fff; }
.product-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: .62rem;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 50px;
    z-index: 1;
}
@media (min-width: 768px) { .product-badge { top: 10px; left: 10px; font-size: .68rem; padding: 4px 8px; } }
.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--success);
    font-size: .68rem;
    font-weight: 600;
}
.stock-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
}
@media (min-width: 768px) { .stock-badge { font-size: .75rem; gap: 4px; } .stock-badge::before { width: 8px; height: 8px; } }

/* Buttons */
.btn-primary { background: var(--primary); border-color: var(--primary); border-radius: 50px; padding: 10px 24px; font-weight: 600; }
.btn-primary:hover, .btn-primary:focus { background: var(--primary-dark); border-color: var(--primary-dark); box-shadow: 0 6px 20px rgba(61,44,141,.3); }
.btn-outline-primary { color: var(--primary); border-color: var(--primary); border-radius: 50px; padding: 10px 24px; font-weight: 600; }
.btn-outline-primary:hover { background: var(--primary); border-color: var(--primary); }
.btn-accent { background: var(--gradient-accent); color: var(--primary-dark); border: 0; border-radius: 50px; padding: 10px 24px; font-weight: 700; }
.btn-accent:hover { color: var(--primary-dark); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* Trust Strip */
.trust-strip {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 16px;
    margin: 24px 0;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (min-width: 768px) { .trust-strip { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .85rem; }
.trust-item i { color: var(--primary); font-size: 1.3rem; }
.trust-item strong { display: block; font-weight: 700; }
.trust-item small { color: var(--text-muted); }

/* Footer */
.app-footer {
    background: var(--gradient-cosmic);
    color: rgba(255,255,255,.85);
    padding: 50px 0 24px;
    margin-top: 60px;
}
.app-footer .footer-h { color: #fff; font-size: .95rem; margin-bottom: 14px; margin-top: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.app-footer .footer-links, .app-footer .footer-contact { list-style: none; padding: 0; margin: 0; }
.app-footer .footer-links li, .app-footer .footer-contact li { margin-bottom: 10px; font-size: .9rem; line-height: 1.5; }
.app-footer .footer-links a { color: rgba(255,255,255,.75); }
.app-footer .footer-links a:hover { color: #fff; }
.app-footer .footer-contact i { color: var(--accent); margin-right: 6px; }
.app-footer img { max-width: 100%; height: auto; }
.footer-hr { border-color: rgba(255,255,255,.15); margin: 30px 0 18px; }
.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}
.social-btn:hover { background: var(--accent); color: var(--primary-dark); transform: translateY(-2px); }
.pay-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,.18);
    letter-spacing: .03em;
}

/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 1010;
    box-shadow: 0 8px 20px rgba(37, 211, 102, .4);
    transition: all .2s;
    animation: pulseWa 2s infinite;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.1); }
@media (min-width: 992px) {
    .whatsapp-float { bottom: 24px; }
}
@keyframes pulseWa {
    0%,100% { box-shadow: 0 8px 20px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); }
    50% { box-shadow: 0 8px 20px rgba(37,211,102,.4), 0 0 0 16px rgba(37,211,102,0); }
}

/* Cart */
.cart-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 14px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 14px;
    display: flex;
    gap: 14px;
}
.cart-card .cart-thumb {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #F3F0F8;
    flex-shrink: 0;
}
.cart-card .cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-card .cart-info { flex: 1; min-width: 0; }
.qty-control {
    display: inline-flex;
    align-items: center;
    background: #F3F0F8;
    border-radius: 50px;
    padding: 4px;
    gap: 4px;
}
.qty-control button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.qty-control input {
    width: 38px;
    text-align: center;
    border: 0;
    background: transparent;
    font-weight: 700;
}

.summary-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 90px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: .92rem;
}
.summary-total { font-size: 1.2rem; font-weight: 800; color: var(--text); }
.summary-row.discount { color: var(--success); }
.summary-row.freeship { color: var(--success); }

/* Forms */
.form-control, .form-select {
    border-radius: 12px;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    background: var(--surface);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(61,44,141,.12);
}
.form-label { font-weight: 600; font-size: .9rem; margin-bottom: 6px; }

.card-soft {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 0;
}
.breadcrumb-bar {
    background: var(--surface);
    border-radius: 50px;
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}
.breadcrumb-bar a { color: var(--text-muted); }
.breadcrumb-bar a:hover { color: var(--primary); }
.breadcrumb-bar i { color: var(--primary); font-size: .7rem; }

/* Product Detail */
.pd-gallery {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-sm);
}
.pd-main-img {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: #F3F0F8;
    margin-bottom: 12px;
    position: relative;
}
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.pd-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    border: 2px solid transparent;
    transition: all .2s;
}
.pd-thumb.active { border-color: var(--primary); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-title { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; }
.pd-tag { color: var(--text-muted); }
.pd-price { color: var(--primary); font-weight: 800; font-size: 1.6rem; }
.pd-mrp { color: var(--text-muted); text-decoration: line-through; margin-left: 8px; }
.pd-off { color: #fff; background: var(--success); padding: 3px 8px; border-radius: 6px; font-size: .8rem; font-weight: 700; margin-left: 8px; }
.energy-tag {
    background: linear-gradient(135deg, #F3EEFC, #E9E0FB);
    color: var(--primary);
    padding: 10px 14px;
    border-radius: 12px;
    font-size: .85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow-sm);
}
@media (min-width: 576px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-item { text-align: center; }
.feature-item i { font-size: 1.4rem; color: var(--primary); }
.feature-item small { display: block; font-size: .75rem; font-weight: 600; color: var(--text); margin-top: 4px; }
.tabs-nav {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 18px;
    overflow-x: auto;
}
.tab-btn {
    background: transparent;
    border: 0;
    padding: 12px 18px;
    font-weight: 700;
    color: var(--text-muted);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    cursor: pointer;
}
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* Account / Dashboard */
.dash-hero {
    background: var(--gradient-cosmic);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.dash-hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(244,184,96,.2), transparent);
    right: -40px;
    top: -40px;
    pointer-events: none;
}
.dash-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 800;
    border: 3px solid #fff;
}
.stat-tile {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 14px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--text);
    transition: all .2s;
    display: block;
}
.stat-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.stat-tile i { color: var(--primary); font-size: 1.4rem; }
.stat-tile h5 { color: var(--primary); font-weight: 800; margin: 4px 0 2px; }
.stat-tile small { color: var(--text-muted); }
.order-track {
    display: flex;
    justify-content: space-between;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    overflow-x: auto;
}
.ot-step { text-align: center; flex: 1; position: relative; font-size: .75rem; color: var(--text-muted); }
.ot-step i { font-size: 1.5rem; color: var(--text-muted); display: block; }
.ot-step.active { color: var(--primary); }
.ot-step.active i { color: var(--primary); }
.menu-list {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    transition: background .2s;
}
.menu-item:last-child { border-bottom: 0; }
.menu-item:hover { background: var(--bg); color: var(--primary); }
.menu-item i.menu-icon { width: 36px; height: 36px; border-radius: 10px; background: #F3EEFC; color: var(--primary); display: inline-flex; align-items: center; justify-content: center; }
.menu-item small { color: var(--text-muted); display: block; font-size: .78rem; }
.menu-item > div { flex: 1; }
.menu-item .bi-chevron-right { color: var(--text-muted); }

/* Auth pages */
.auth-wrap {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}
.auth-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 36px;
    max-width: 440px;
    width: 100%;
}
.auth-card h2 { font-family: 'Cormorant Garamond', serif; text-align: center; }

/* Reviews */
.review-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 12px;
}
.review-stars { color: var(--accent); }

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}
.empty-state i { font-size: 4rem; color: var(--primary-light); opacity: .5; }
.empty-state h4 { color: var(--text); margin: 14px 0 6px; }

/* Alerts */
.alert { border-radius: var(--radius); border: 0; padding: 12px 18px; }
.alert-success { background: #DCFCE7; color: #166534; }
.alert-danger  { background: #FEE2E2; color: #991B1B; }
.alert-info    { background: #DBEAFE; color: #1E40AF; }
.alert-warning { background: #FEF3C7; color: #92400E; }

/* Filters */
.filter-card { background: var(--surface); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); }
.filter-title { font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 10px; }
.filter-list { list-style: none; padding: 0; margin: 0 0 18px; }
.filter-list li { margin-bottom: 6px; }
.filter-list a { color: var(--text); text-decoration: none; padding: 6px 10px; display: block; border-radius: 8px; transition: all .2s; }
.filter-list a:hover, .filter-list a.active { background: #F3EEFC; color: var(--primary); font-weight: 600; }

/* FAQ */
.faq-item {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 10px;
}
.faq-q { font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-a { color: var(--text-muted); margin-top: 10px; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-q i { transition: transform .2s; color: var(--primary); }

/* Loader */
.btn-loader { pointer-events: none; opacity: .7; }

/* Helpers */
.text-primary { color: var(--primary) !important; }
.bg-primary { background: var(--primary) !important; }
.divider {
    text-align: center;
    color: var(--text-muted);
    font-size: .8rem;
    text-transform: uppercase;
    margin: 18px 0;
    position: relative;
}
.divider::before, .divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: var(--border);
}
.divider::before { left: 0; }
.divider::after { right: 0; }
