/* ============================================================
   VastraaKart — Main Stylesheet
   File: /assets/css/style.css
   Approach: Mobile-first. Brand palette per brief.
   ============================================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
    --vk-primary:   #0A4FA3;   /* royal blue  */
    --vk-secondary: #FF2D8F;   /* saree pink  */
    --vk-bg:        #FFFFFF;
    --vk-section:   #F8F9FA;
    --vk-dark:      #1F2937;
    --vk-text:      #374151;
    --vk-muted:     #6B7280;
    --vk-border:    #E5E7EB;
    --vk-gradient:  linear-gradient(120deg, #0A4FA3 0%, #FF2D8F 100%);
    --vk-gradient-soft: linear-gradient(120deg, rgba(10,79,163,.08), rgba(255,45,143,.08));

    --font-display: 'Poppins', sans-serif;
    --font-body:    'Inter', sans-serif;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --shadow-soft: 0 6px 24px rgba(31, 41, 55, .08);
    --shadow-hover: 0 14px 34px rgba(10, 79, 163, .16);
}

/* ---------- 2. Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--vk-text);
    background: var(--vk-bg);
    overflow-x: hidden;   /* no horizontal scrolling, ever */
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--vk-dark);
}

a { text-decoration: none; }

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

button { font-family: inherit; }

:focus-visible {
    outline: 3px solid var(--vk-secondary);
    outline-offset: 2px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* ---------- 3. Buttons ---------- */
.btn-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: var(--vk-gradient);
    color: #fff;
    border: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .9rem;
    padding: .65rem 1.4rem;
    border-radius: var(--radius-pill);
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 6px 18px rgba(255, 45, 143, .25);
}

.btn-gradient:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(10, 79, 163, .3);
}

.btn-lg-pill { padding: .85rem 1.9rem; font-size: 1rem; }
.btn-sm-pill { padding: .45rem 1.1rem; font-size: .8rem; }

/* ---------- 4. Offer Bar ---------- */
.offer-bar {
    background: var(--vk-dark);
    color: #fff;
    font-size: .78rem;
    letter-spacing: .02em;
    padding: .5rem .75rem;
    text-align: center;
}

.offer-bar i { color: var(--vk-secondary); }

/* ---------- 5. Sticky Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);           /* glass effect */
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--vk-border);
    transition: box-shadow .25s ease;
}

.site-header.is-scrolled { box-shadow: var(--shadow-soft); }

.header-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .65rem 0;
}

.brand-logo img { height: 44px; width: auto; display: block; }

/* Search */
.header-search {
    position: relative;
    flex: 1;
    display: flex;
    align-items: stretch;
    max-width: 620px;
    margin-inline: auto;
    border: 2px solid var(--vk-border);
    border-radius: var(--radius-pill);
    overflow: visible;
    background: #fff;
    transition: border-color .2s ease;
}

.header-search:focus-within { border-color: var(--vk-primary); }

.search-category {
    border: none;
    background: var(--vk-section);
    font-size: .8rem;
    color: var(--vk-muted);
    padding: 0 .8rem;
    border-radius: var(--radius-pill) 0 0 var(--radius-pill);
    max-width: 140px;
}

.header-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: .6rem .9rem;
    font-size: .875rem;
    min-width: 0;
    background: transparent;
}

.search-btn {
    border: none;
    background: var(--vk-gradient);
    color: #fff;
    width: 46px;
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
    font-size: 1rem;
}

.header-search--mobile {
    margin: 0 0 .65rem;
    max-width: none;
}

.live-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    padding: .5rem;
    max-height: 340px;
    overflow-y: auto;
    z-index: 1050;
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: .35rem;
    margin-left: auto;
}

.action-link {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--vk-dark);
    padding: .35rem .6rem;
    border-radius: var(--radius-sm);
    transition: background .2s ease;
}

.action-link:hover { background: var(--vk-gradient-soft); color: var(--vk-primary); }

.action-link i { font-size: 1.35rem; }

.action-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .8rem;
}

.action-text small { font-weight: 400; color: var(--vk-muted); font-size: .68rem; }

.action-divider { width: 1px; height: 28px; background: var(--vk-border); }

.icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    color: var(--vk-dark);
    font-size: 1.3rem;
    border-radius: 50%;
    transition: background .2s ease, color .2s ease;
}

.icon-btn:hover { background: var(--vk-gradient-soft); color: var(--vk-primary); }

.badge-count {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: var(--radius-pill);
    background: var(--vk-primary);
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-count--pink { background: var(--vk-secondary); }

/* ---------- 6. Mega Navigation ---------- */
.mega-nav { border-top: 1px solid var(--vk-border); }

.mega-nav-list {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-item { position: relative; }

.mega-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .7rem .9rem;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: .85rem;
    color: var(--vk-dark);
    border-bottom: 2px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}

.mega-item:hover > .mega-link,
.mega-item:focus-within > .mega-link {
    color: var(--vk-primary);
    border-bottom-color: var(--vk-secondary);
}

.mega-link--accent { color: var(--vk-primary); font-weight: 600; }

.mega-link--deal { color: var(--vk-secondary); font-weight: 600; }

/* Mega dropdown panel */
.mega-panel {
    position: absolute;
    top: 100%;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    gap: 1.25rem;
    min-width: 720px;
    padding: 1.4rem;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(10px);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 1040;
}

.mega-panel--slim { grid-template-columns: 1fr; min-width: 240px; }

.mega-item:hover > .mega-panel,
.mega-item:focus-within > .mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-col h6 {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--vk-secondary);
    margin-bottom: .7rem;
}

.mega-col a {
    display: block;
    padding: .3rem 0;
    font-size: .85rem;
    color: var(--vk-text);
    transition: color .15s ease, padding-left .15s ease;
}

.mega-col a:hover { color: var(--vk-primary); padding-left: 4px; }

.mega-promo {
    background: var(--vk-gradient-soft);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
}

.mega-promo-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .75rem;
    color: var(--vk-primary);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.mega-promo p { font-size: .85rem; margin: .5rem 0 .8rem; color: var(--vk-dark); }

/* ---------- 7. Mobile Drawer ---------- */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(31, 41, 55, .55);
    backdrop-filter: blur(3px);
    z-index: 1060;
    opacity: 0;
    transition: opacity .25s ease;
}

.drawer-overlay.is-open { opacity: 1; }

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, 86vw);
    background: #fff;
    z-index: 1070;
    transform: translateX(-105%);
    transition: transform .3s cubic-bezier(.22, 1, .36, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.mobile-drawer.is-open { transform: translateX(0); }

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--vk-border);
}

.drawer-logo { height: 36px; width: auto; }

.drawer-auth { padding: 1rem; display: grid; gap: .6rem; }

.drawer-vendor-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--vk-primary);
    padding: .55rem;
    border: 1.5px solid var(--vk-primary);
    border-radius: var(--radius-pill);
}

.drawer-nav { padding: .5rem 1rem 2rem; }

.drawer-link,
.drawer-group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: .5rem;
    padding: .8rem .25rem;
    border: none;
    border-bottom: 1px solid var(--vk-section);
    background: none;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: .9rem;
    color: var(--vk-dark);
    text-align: left;
}

.drawer-link { justify-content: flex-start; }

.drawer-link--accent { color: var(--vk-primary); }
.drawer-link--deal { color: var(--vk-secondary); }

.drawer-group-toggle i { transition: transform .2s ease; }
.drawer-group-toggle.is-open i { transform: rotate(180deg); }

.drawer-group {
    display: none;
    padding: .25rem 0 .5rem .85rem;
}

.drawer-group.is-open { display: block; }

.drawer-group a {
    display: block;
    padding: .5rem 0;
    font-size: .85rem;
    color: var(--vk-muted);
}

.drawer-group a:hover { color: var(--vk-primary); }

/* ---------- 8. Hero Slider ---------- */
.hero { position: relative; }

.hero-slider { position: relative; overflow: hidden; }

.hero-slide {
    display: none;
    position: relative;
    min-height: 340px;
    padding: 3rem 0 4.5rem;
    align-items: center;
}

.hero-slide.is-active { display: flex; animation: heroFade .6s ease; }

@keyframes heroFade {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Slide themes — brand gradients as art direction */
.slide-royal   { background: linear-gradient(115deg, #06336b 0%, #0A4FA3 55%, #6a2f86 100%); }
.slide-festive { background: linear-gradient(115deg, #8f0f52 0%, #FF2D8F 60%, #ff7ab8 100%); }
.slide-kids    { background: linear-gradient(115deg, #0A4FA3 0%, #7b3fa0 50%, #FF2D8F 100%); }

/* The drape — signature element echoing the pallu in the logo */
.hero-drape {
    position: absolute;
    right: -12%;
    top: -30%;
    width: 65%;
    height: 160%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,.16) 0%, rgba(255,255,255,.05) 45%, transparent 70%);
    border-radius: 50%;
    transform: rotate(-18deg);
    pointer-events: none;
}

.hero-content { max-width: 620px; color: #fff; position: relative; z-index: 2; }

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, .16);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: var(--radius-pill);
    padding: .35rem 1rem;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    color: #fff;
    font-size: clamp(1.6rem, 4.5vw, 2.9rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: .8rem;
}

.hero-text {
    font-size: clamp(.9rem, 2vw, 1.05rem);
    opacity: .92;
    margin-bottom: 1.5rem;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 1.1rem;
    z-index: 5;
    transition: background .2s ease;
}

.hero-arrow:hover { background: rgba(255, 255, 255, .4); }

.hero-arrow--prev { left: 12px; }
.hero-arrow--next { right: 12px; }

.hero-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
    z-index: 5;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, .45);
    padding: 0;
    transition: width .25s ease, background .25s ease;
}

.hero-dot.is-active { width: 28px; background: #fff; }

/* ---------- 9. Trust Strip ---------- */
.trust-strip {
    background: var(--vk-bg);
    border-bottom: 1px solid var(--vk-border);
}

.trust-strip .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem 1rem;
    padding-top: .9rem;
    padding-bottom: .9rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .78rem;
    font-weight: 500;
    color: var(--vk-dark);
}

.trust-item i {
    font-size: 1.2rem;
    background: var(--vk-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------- 10. Sections ---------- */
.section { padding: 3rem 0; }

.section--tint { background: var(--vk-section); }

.section-head { text-align: center; margin-bottom: 2rem; }

.section-head--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
}

.section-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-bottom: .25rem;
}

.section-title span {
    background: var(--vk-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-sub { color: var(--vk-muted); font-size: .88rem; margin: 0; }

.section-more {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .85rem;
    color: var(--vk-primary);
}

.section-more:hover { color: var(--vk-secondary); }

/* ---------- 11. Category Grid ---------- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .9rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .7rem;
    padding: 1.4rem .75rem;
    background: #fff;
    border: 1px solid var(--vk-border);
    border-radius: var(--radius-md);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.category-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--vk-gradient-soft);
    color: var(--vk-primary);
    font-size: 1.5rem;
    transition: background .2s ease, color .2s ease;
}

.category-card:hover .category-icon { background: var(--vk-gradient); color: #fff; }

.category-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .82rem;
    color: var(--vk-dark);
    text-align: center;
}

/* ---------- 12. Product Cards ---------- */
.product-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .9rem;
}

.product-card {
    background: #fff;
    border: 1px solid var(--vk-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

/* Image placeholder swatches — replaced by real <img loading="lazy"> from DB later */
.product-media {
    position: relative;
    aspect-ratio: 3 / 4;
    display: block;
    overflow: hidden;
}

.product-media-drape {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 120% 60% at 80% -10%, rgba(255,255,255,.35), transparent 60%),
        repeating-linear-gradient(115deg, transparent 0 26px, rgba(255,255,255,.09) 26px 28px);
}

.sw-blue    { background: linear-gradient(135deg, #0A4FA3, #063a7a); }
.sw-magenta { background: linear-gradient(135deg, #FF2D8F, #a3125c); }
.sw-peach   { background: linear-gradient(135deg, #ffb199, #ff7ab8); }
.sw-indigo  { background: linear-gradient(135deg, #3f51b5, #1F2937); }
.sw-green   { background: linear-gradient(135deg, #0f9d78, #086a52); }
.sw-pink    { background: linear-gradient(135deg, #ff9ecb, #FF2D8F); }

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(4px);
    color: var(--vk-primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .3rem .6rem;
    border-radius: var(--radius-pill);
}

.wish-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: var(--vk-dark);
    font-size: .95rem;
    transition: color .2s ease, transform .2s ease;
}

.wish-btn:hover { color: var(--vk-secondary); transform: scale(1.1); }

.product-body { padding: .8rem .85rem 1rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }

.product-vendor {
    font-size: .7rem;
    font-weight: 600;
    color: var(--vk-primary);
    display: flex;
    align-items: center;
    gap: .3rem;
}

.product-title {
    font-size: .82rem;
    font-weight: 500;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.25em;
}

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

.product-rating { display: flex; align-items: center; gap: .4rem; }

.rating-chip {
    background: #0f9d58;
    color: #fff;
    font-size: .66rem;
    font-weight: 700;
    padding: .15rem .45rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: .2rem;
}

.rating-count { font-size: .72rem; color: var(--vk-muted); }

.product-price { display: flex; align-items: baseline; gap: .45rem; flex-wrap: wrap; }

.price-now { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--vk-dark); }

.price-mrp { font-size: .78rem; color: var(--vk-muted); text-decoration: line-through; }

.price-off { font-size: .74rem; font-weight: 700; color: var(--vk-secondary); }

.btn-add-cart { margin-top: auto; width: 100%; padding: .55rem; font-size: .8rem; }

/* ---------- 13. Collection Banners ---------- */
.collection-banner {
    position: relative;
    display: block;
    min-height: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: flex-end;
    transition: transform .25s ease, box-shadow .25s ease;
}

.collection-banner:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.cb-wedding  { background: linear-gradient(120deg, #06336b, #0A4FA3 55%, #4a2a7d); }
.cb-festival { background: linear-gradient(120deg, #a3125c, #FF2D8F 60%, #ff8ec2); }

.cb-content { color: #fff; position: relative; z-index: 2; }

.cb-tag {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    opacity: .9;
}

.cb-content h3 { color: #fff; font-size: 1.35rem; font-weight: 700; margin: .4rem 0 .2rem; }

.cb-content p { font-size: .85rem; opacity: .9; margin-bottom: .8rem; }

.cb-cta {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .85rem;
    color: #fff;
    border-bottom: 2px solid rgba(255,255,255,.55);
    padding-bottom: 2px;
}

/* ---------- 14. Today's Deals ---------- */
.section--deals { background: var(--vk-dark); }

.section-title--light { color: #fff; }
.section-title--light i { color: #ffd44d; }
.section-sub--light { color: rgba(255, 255, 255, .65); }

.deal-timer { display: flex; align-items: center; gap: .3rem; color: #fff; font-weight: 700; }

.dt-box {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius-sm);
    padding: .35rem .55rem;
    font-family: var(--font-display);
    font-size: .95rem;
    min-width: 42px;
    text-align: center;
}

/* ---------- 15. Vendor Cards ---------- */
.vendor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .9rem;
}

.vendor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    text-align: center;
    padding: 1.4rem 1rem;
    background: #fff;
    border: 1px solid var(--vk-border);
    border-radius: var(--radius-md);
    color: var(--vk-dark);
    transition: transform .2s ease, box-shadow .2s ease;
}

.vendor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); color: var(--vk-primary); }

.vendor-card small { color: var(--vk-muted); font-size: .72rem; }

.vendor-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: .35rem;
}

.va-1 { background: linear-gradient(135deg, #0A4FA3, #063a7a); }
.va-2 { background: linear-gradient(135deg, #FF2D8F, #a3125c); }
.va-3 { background: linear-gradient(135deg, #0f9d78, #086a52); }
.va-4 { background: linear-gradient(135deg, #7b3fa0, #4a2a7d); }
.va-join { background: var(--vk-gradient); }

.vendor-card--join { border: 2px dashed var(--vk-primary); }

/* ---------- 16. Fabric Chips ---------- */
.fabric-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .7rem;
}

.fabric-chip {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .85rem;
    color: var(--vk-dark);
    background: #fff;
    border: 1.5px solid var(--vk-border);
    border-radius: var(--radius-pill);
    padding: .55rem 1.3rem;
    transition: all .2s ease;
}

.fabric-chip:hover {
    background: var(--vk-gradient);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

/* ---------- 17. Reviews ---------- */
.review-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--vk-border);
    border-radius: var(--radius-md);
    padding: 1.4rem;
    margin: 0;
    box-shadow: var(--shadow-soft);
}

.review-stars { color: #f5a623; margin-bottom: .7rem; }

.review-card blockquote {
    font-size: .88rem;
    line-height: 1.6;
    color: var(--vk-text);
    margin-bottom: .8rem;
}

.review-card figcaption {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .8rem;
    color: var(--vk-primary);
}

/* ---------- 18. Newsletter ---------- */
.newsletter-box {
    background: var(--vk-gradient);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    color: #fff;
    box-shadow: var(--shadow-hover);
}

.newsletter-title { color: #fff; font-size: 1.35rem; font-weight: 700; margin-bottom: .3rem; }

.newsletter-sub { font-size: .85rem; opacity: .92; margin: 0; }

.newsletter-form {
    display: flex;
    gap: .5rem;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: var(--radius-pill);
    padding: .35rem;
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;
    padding: .5rem .9rem;
    outline: none;
    min-width: 0;
    font-size: .88rem;
}

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

.newsletter-form .btn-gradient { background: #fff; color: var(--vk-primary); box-shadow: none; }

/* ---------- 19. Instagram Grid ---------- */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
}

.insta-tile {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0);
    font-size: 1.6rem;
    overflow: hidden;
    transition: transform .2s ease;
}

.insta-tile:hover { transform: scale(1.03); color: #fff; }

.insta-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(31, 41, 55, 0);
    transition: background .2s ease;
}

.insta-tile:hover::after { background: rgba(31, 41, 55, .35); }

.insta-tile i { position: relative; z-index: 2; }

/* ---------- 20. Footer ---------- */
.site-footer { margin-top: 2rem; }

.footer-wave { line-height: 0; }

.footer-wave svg { width: 100%; height: 46px; display: block; }

.footer-main {
    background: var(--vk-dark);
    color: rgba(255, 255, 255, .78);
    padding: 2.5rem 0 2rem;
}

.footer-logo {
    height: 42px;
    width: auto;
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    margin-bottom: 1rem;
}

.footer-about { font-size: .84rem; line-height: 1.7; }

.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 1rem;
    transition: background .2s ease, transform .2s ease;
}

.footer-social a:hover { background: var(--vk-gradient); transform: translateY(-2px); }

.footer-heading {
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 1rem;
}

.footer-links { list-style: none; margin: 0; padding: 0; }

.footer-links a {
    display: block;
    padding: .3rem 0;
    font-size: .84rem;
    color: rgba(255, 255, 255, .72);
    transition: color .15s ease, padding-left .15s ease;
}

.footer-links a:hover { color: var(--vk-secondary); padding-left: 4px; }

.footer-bottom {
    background: #16202e;
    color: rgba(255, 255, 255, .6);
    font-size: .78rem;
    padding: .9rem 0;
}

.footer-payment i { color: var(--vk-secondary); margin-right: .3rem; }

/* ============================================================
   RESPONSIVE — tablet (≥576px), laptop (≥992px), desktop (≥1200px)
   ============================================================ */

@media (min-width: 576px) {
    .category-grid { grid-template-columns: repeat(4, 1fr); }
    .product-row   { grid-template-columns: repeat(3, 1fr); }
    .vendor-grid   { grid-template-columns: repeat(3, 1fr); }
    .trust-strip .container { grid-template-columns: repeat(4, 1fr); }
    .newsletter-box { flex-direction: row; align-items: center; justify-content: space-between; padding: 2.4rem 2.2rem; }
    .newsletter-form { min-width: 340px; }
    .insta-grid { grid-template-columns: repeat(6, 1fr); }
}

@media (min-width: 992px) {
    .brand-logo img { height: 52px; }
    .hero-slide { min-height: 460px; }
    .product-row { grid-template-columns: repeat(4, 1fr); }
    .vendor-grid { grid-template-columns: repeat(5, 1fr); }
    .category-grid { grid-template-columns: repeat(8, 1fr); }
    .section { padding: 4rem 0; }
}

@media (min-width: 1200px) {
    .product-row { grid-template-columns: repeat(6, 1fr); gap: 1.1rem; }
    .section--deals .product-row,
    .section .product-row:has(> :nth-child(4):last-child) { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   PHASE 1 STATIC SITE — inner page styles
   ============================================================ */

/* ---------- Toast ---------- */
.vk-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 16px);
    background: var(--vk-dark);
    color: #fff;
    font-size: .85rem;
    font-weight: 500;
    padding: .65rem 1.3rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    z-index: 2000;
}
.vk-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Page head band ---------- */
.page-head {
    background: var(--vk-gradient-soft);
    padding: 2rem 0;
    margin-bottom: 2rem;
}
.page-head h1 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; margin: 0; }
.breadcrumb-vk { font-size: .8rem; color: var(--vk-muted); margin-bottom: .35rem; }
.breadcrumb-vk a { color: var(--vk-primary); }
.text-gradient {
    background: var(--vk-gradient);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------- Outline button ---------- */
.btn-outline-vk {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    border: 1.5px solid var(--vk-primary); color: var(--vk-primary);
    background: transparent; font-family: var(--font-display);
    font-weight: 600; font-size: .9rem;
    padding: .6rem 1.4rem; border-radius: var(--radius-pill);
    transition: all .2s ease;
}
.btn-outline-vk:hover { background: var(--vk-primary); color: #fff; }

/* ---------- Live search dropdown items ---------- */
.live-search-item {
    display: flex; align-items: center; gap: .7rem;
    padding: .5rem .6rem; border-radius: var(--radius-sm); color: var(--vk-dark);
}
.live-search-item:hover { background: var(--vk-section); }
.lsi-swatch { width: 38px; height: 46px; border-radius: 8px; flex-shrink: 0; }
.lsi-text { font-size: .82rem; line-height: 1.3; }
.lsi-text small { display: block; color: var(--vk-muted); }

/* ---------- Shop layout ---------- */
.shop-layout { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.shop-filters {
    background: #fff; border: 1px solid var(--vk-border);
    border-radius: var(--radius-md); padding: 1.2rem;
    display: none;
}
.shop-filters.is-open { display: block; }
.filter-group { margin-bottom: 1.3rem; }
.filter-group h6 {
    font-size: .72rem; text-transform: uppercase; letter-spacing: .07em;
    color: var(--vk-secondary); margin-bottom: .6rem;
}
.filter-check {
    display: flex; align-items: center; gap: .5rem;
    font-size: .84rem; padding: .22rem 0; cursor: pointer; color: var(--vk-text);
}
.filter-check input { accent-color: var(--vk-secondary); width: 15px; height: 15px; }
.shop-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    gap: .75rem; margin-bottom: 1.2rem; flex-wrap: wrap;
}
.shop-toolbar select {
    border: 1.5px solid var(--vk-border); border-radius: var(--radius-pill);
    padding: .45rem .9rem; font-size: .84rem; color: var(--vk-dark); background: #fff;
}
.filter-toggle-btn { display: inline-flex; }
.pager { display: flex; gap: .45rem; justify-content: center; margin-top: 2rem; }
.pager-btn {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1.5px solid var(--vk-border); background: #fff;
    font-family: var(--font-display); font-weight: 600; font-size: .85rem;
    color: var(--vk-dark); transition: all .2s ease;
}
.pager-btn.is-active, .pager-btn:hover { background: var(--vk-gradient); color: #fff; border-color: transparent; }
input[type="range"] { width: 100%; accent-color: var(--vk-secondary); }

/* ---------- Product details ---------- */
.pd-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.pd-gallery { position: sticky; top: 100px; align-self: start; }
.pd-main {
    aspect-ratio: 3 / 4; border-radius: var(--radius-lg);
    position: relative; overflow: hidden;
    transition: transform .3s ease; cursor: zoom-in;
}
.pd-main::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse 120% 60% at 80% -10%, rgba(255,255,255,.35), transparent 60%),
        repeating-linear-gradient(115deg, transparent 0 26px, rgba(255,255,255,.09) 26px 28px);
}
.pd-main:hover { transform: scale(1.6); }
.pd-thumbs { display: flex; gap: .6rem; margin-top: .8rem; }
.pd-thumb {
    width: 64px; height: 80px; border-radius: var(--radius-sm);
    border: 2px solid transparent; padding: 0; transition: border-color .2s ease;
}
.pd-thumb.is-active { border-color: var(--vk-secondary); }
.pd-info .product-price .price-now { font-size: 1.7rem; }
.pd-info .product-price .price-mrp { font-size: 1rem; }
.pd-info .product-price .price-off { font-size: .95rem; }
.pd-stock { color: #0f9d58; font-weight: 600; font-size: .88rem; }
.qty-stepper {
    display: inline-flex; align-items: center; gap: .2rem;
    border: 1.5px solid var(--vk-border); border-radius: var(--radius-pill); overflow: hidden;
}
.qty-stepper button {
    width: 38px; height: 38px; border: none; background: var(--vk-section);
    font-size: 1.1rem; font-weight: 700; color: var(--vk-dark);
}
.qty-stepper span { min-width: 40px; text-align: center; font-weight: 600; }
.pd-actions { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; margin: 1.2rem 0; }
.pd-trust { display: flex; flex-wrap: wrap; gap: 1rem; padding: 1rem 0; border-top: 1px dashed var(--vk-border); }
.pd-trust span { display: flex; align-items: center; gap: .45rem; font-size: .78rem; color: var(--vk-muted); }
.pd-trust i { color: var(--vk-primary); font-size: 1.1rem; }
.spec-table { width: 100%; font-size: .86rem; }
.spec-table th { width: 40%; font-weight: 600; color: var(--vk-muted); padding: .5rem .75rem .5rem 0; }
.spec-table td { padding: .5rem 0; color: var(--vk-dark); }
.spec-table tr + tr { border-top: 1px solid var(--vk-section); }
.pd-review {
    border: 1px solid var(--vk-border); border-radius: var(--radius-md);
    padding: 1rem 1.2rem; margin-bottom: .8rem; background: #fff;
}
.pd-review .review-stars { font-size: .8rem; margin-bottom: .3rem; }
.pd-review p { font-size: .86rem; margin-bottom: .3rem; }
.pd-review small { color: var(--vk-muted); }

/* ---------- Cart ---------- */
.cart-layout { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.cart-row {
    display: grid; grid-template-columns: 84px 1fr; gap: 1rem;
    background: #fff; border: 1px solid var(--vk-border);
    border-radius: var(--radius-md); padding: 1rem; margin-bottom: .9rem;
}
.cart-thumb { width: 84px; height: 104px; border-radius: var(--radius-sm); display: block; }
.cart-name { font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--vk-dark); display: block; }
.cart-name:hover { color: var(--vk-primary); }
.cart-price-line { display: flex; align-items: baseline; gap: .5rem; margin-top: .3rem; }
.cart-controls { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cart-remove { border: none; background: none; color: var(--vk-muted); font-size: .8rem; }
.cart-remove:hover { color: #dc3545; }
.summary-card {
    background: #fff; border: 1px solid var(--vk-border);
    border-radius: var(--radius-md); padding: 1.4rem;
    box-shadow: var(--shadow-soft); position: sticky; top: 100px;
}
.summary-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.sum-row { display: flex; justify-content: space-between; font-size: .88rem; padding: .35rem 0; }
.sum-row.total { border-top: 1px dashed var(--vk-border); margin-top: .5rem; padding-top: .8rem; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.empty-state { text-align: center; padding: 3rem 1rem; }
.empty-state i { font-size: 3rem; background: var(--vk-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.empty-state h4 { margin: 1rem 0 .4rem; }

/* ---------- Checkout ---------- */
.co-item { display: flex; align-items: center; gap: .8rem; padding: .55rem 0; font-size: .85rem; }
.co-item + .co-item { border-top: 1px solid var(--vk-section); }
.co-thumb { width: 46px; height: 58px; border-radius: 8px; flex-shrink: 0; }
.co-name { flex: 1; }
.co-name small { color: var(--vk-muted); }
.pay-option {
    display: flex; align-items: center; gap: .8rem;
    border: 2px solid var(--vk-border); border-radius: var(--radius-md);
    padding: .9rem 1rem; margin-bottom: .7rem; cursor: pointer; font-size: .9rem;
}
.pay-option input { accent-color: var(--vk-secondary); }
.pay-option.is-selected { border-color: var(--vk-secondary); background: var(--vk-gradient-soft); }
.pay-option.is-disabled { opacity: .55; cursor: not-allowed; }
.order-success { text-align: center; padding: 3rem 1.5rem; }
.order-success i { font-size: 3.4rem; background: var(--vk-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.order-success h2, .order-success h4 { margin: 1rem 0 .5rem; }
.form-label-vk { font-size: .8rem; font-weight: 600; color: var(--vk-dark); margin-bottom: .3rem; }
.form-control-vk {
    width: 100%; border: 1.5px solid var(--vk-border); border-radius: var(--radius-sm);
    padding: .6rem .85rem; font-size: .88rem; transition: border-color .2s ease; background: #fff;
}
.form-control-vk:focus { outline: none; border-color: var(--vk-primary); }

/* ---------- Auth pages ---------- */
.auth-wrap { max-width: 460px; margin: 0 auto; padding: 2.5rem 0 3.5rem; }
.auth-card {
    background: #fff; border: 1px solid var(--vk-border);
    border-radius: var(--radius-lg); padding: 2rem 1.6rem;
    box-shadow: var(--shadow-soft);
}
.auth-card h1 { font-size: 1.35rem; font-weight: 700; text-align: center; margin-bottom: .3rem; }
.auth-sub { text-align: center; color: var(--vk-muted); font-size: .84rem; margin-bottom: 1.5rem; }
.auth-alt { text-align: center; font-size: .84rem; margin-top: 1.2rem; }
.auth-alt a { color: var(--vk-primary); font-weight: 600; }
.auth-vendor-band {
    background: var(--vk-gradient); color: #fff; border-radius: var(--radius-md);
    padding: .8rem 1rem; font-size: .8rem; text-align: center; margin-bottom: 1.3rem;
}

/* ---------- Orders ---------- */
.order-card {
    background: #fff; border: 1px solid var(--vk-border);
    border-radius: var(--radius-md); padding: 1.1rem 1.3rem; margin-bottom: 1rem;
}
.order-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: .75rem; flex-wrap: wrap; }
.order-items-line { font-size: .82rem; color: var(--vk-muted); margin: .6rem 0; }
.order-card-bottom { display: flex; justify-content: space-between; align-items: center; }
.order-status {
    font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
    padding: .3rem .7rem; border-radius: var(--radius-pill);
}
.st-done { background: #e6f6ee; color: #0f9d58; }
.st-wip  { background: #fff4e0; color: #c77700; }
.st-move { background: rgba(10,79,163,.1); color: var(--vk-primary); }

/* ---------- Track order ---------- */
.track-card { max-width: 640px; margin: 0 auto; }
.track-steps { display: flex; flex-direction: column; gap: 0; }
.track-step { display: flex; align-items: center; gap: .9rem; position: relative; padding: .9rem 0; }
.track-step::before {
    content: ""; position: absolute; left: 15px; top: 0; bottom: 0;
    width: 2px; background: var(--vk-border);
}
.track-step:first-child::before { top: 50%; }
.track-step:last-child::before { bottom: 50%; }
.ts-dot {
    position: relative; z-index: 1; width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--vk-section); border: 2px solid var(--vk-border);
    color: var(--vk-muted); font-size: .8rem; flex-shrink: 0;
}
.track-step.is-done .ts-dot { background: var(--vk-gradient); border-color: transparent; color: #fff; }
.track-step.is-current .ts-dot { border-color: var(--vk-secondary); color: var(--vk-secondary); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,45,143,.35); } 50% { box-shadow: 0 0 0 8px rgba(255,45,143,0); } }
.ts-label { font-size: .9rem; font-weight: 500; }
.track-step.is-done .ts-label { color: var(--vk-dark); font-weight: 600; }

/* ---------- Dashboards ---------- */
.dash-layout { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.dash-side {
    background: #fff; border: 1px solid var(--vk-border);
    border-radius: var(--radius-md); padding: 1rem; align-self: start;
}
.dash-user { display: flex; align-items: center; gap: .8rem; padding: .5rem .5rem 1rem; border-bottom: 1px solid var(--vk-section); margin-bottom: .7rem; }
.dash-avatar {
    width: 48px; height: 48px; border-radius: 50%; background: var(--vk-gradient);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700;
}
.dash-tab {
    display: flex; align-items: center; gap: .7rem; width: 100%;
    padding: .7rem .8rem; border: none; background: none; text-align: left;
    font-size: .88rem; font-weight: 500; color: var(--vk-text);
    border-radius: var(--radius-sm); transition: all .15s ease;
}
.dash-tab:hover { background: var(--vk-section); }
.dash-tab.is-active { background: var(--vk-gradient-soft); color: var(--vk-primary); font-weight: 600; }
.dash-panel { background: #fff; border: 1px solid var(--vk-border); border-radius: var(--radius-md); padding: 1.5rem; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; margin-bottom: 1.5rem; }
.stat-card {
    border-radius: var(--radius-md); padding: 1.1rem;
    color: #fff; position: relative; overflow: hidden;
}
.stat-card i { font-size: 1.4rem; opacity: .85; }
.stat-card strong { display: block; font-family: var(--font-display); font-size: 1.4rem; margin-top: .3rem; }
.stat-card span { font-size: .75rem; opacity: .9; }
.sc-1 { background: linear-gradient(135deg, #0A4FA3, #063a7a); }
.sc-2 { background: linear-gradient(135deg, #FF2D8F, #a3125c); }
.sc-3 { background: linear-gradient(135deg, #0f9d78, #086a52); }
.sc-4 { background: linear-gradient(135deg, #7b3fa0, #4a2a7d); }
.vendor-table { width: 100%; font-size: .84rem; }
.vendor-table th { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--vk-muted); padding: .6rem .5rem; border-bottom: 2px solid var(--vk-section); }
.vendor-table td { padding: .65rem .5rem; border-bottom: 1px solid var(--vk-section); vertical-align: middle; }
.vp-swatch { display: inline-block; width: 34px; height: 42px; border-radius: 6px; }
.vp-name { font-weight: 500; color: var(--vk-dark); }
.icon-btn-sm { border: none; background: var(--vk-section); width: 30px; height: 30px; border-radius: 8px; margin-right: .3rem; font-size: .8rem; }
.icon-btn-sm:hover { background: var(--vk-gradient-soft); }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--vk-border); border-radius: var(--radius-md); margin-bottom: .8rem; background: #fff; overflow: hidden; }
.faq-q {
    width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    border: none; background: none; text-align: left;
    font-family: var(--font-display); font-weight: 600; font-size: .92rem;
    color: var(--vk-dark); padding: 1rem 1.2rem;
}
.faq-q::after { content: "+"; font-size: 1.3rem; color: var(--vk-secondary); transition: transform .2s ease; }
.faq-item.is-open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.2rem 1.1rem; font-size: .86rem; color: var(--vk-muted); line-height: 1.7; }
.faq-item.is-open .faq-a { display: block; }

/* ---------- Policy / static pages ---------- */
.policy-body { max-width: 800px; margin: 0 auto; font-size: .92rem; line-height: 1.8; }
.policy-body h2 { font-size: 1.15rem; margin: 1.8rem 0 .6rem; }

/* ---------- Contact ---------- */
.contact-info-card {
    background: #fff; border: 1px solid var(--vk-border);
    border-radius: var(--radius-md); padding: 1.3rem;
    display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1rem;
}
.contact-info-card i {
    font-size: 1.3rem; width: 46px; height: 46px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: var(--vk-gradient-soft); color: var(--vk-primary);
}

/* ---------- Extra swatches ---------- */
.sw-red  { background: linear-gradient(135deg, #c0173d, #7d0e2c); }
.sw-gold { background: linear-gradient(135deg, #d4a017, #9a6b00); }

/* ---------- Responsive (inner pages) ---------- */
@media (min-width: 768px) {
    .cart-row { grid-template-columns: 84px 1fr auto; }
    .cart-controls { grid-column: auto; flex-direction: column; align-items: flex-end; justify-content: center; }
    .stat-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 992px) {
    .shop-layout { grid-template-columns: 260px 1fr; }
    .shop-filters { display: block; position: sticky; top: 100px; align-self: start; }
    .filter-toggle-btn { display: none; }
    .pd-layout { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
    .cart-layout { grid-template-columns: 1fr 360px; }
    .dash-layout { grid-template-columns: 260px 1fr; }
}
