/* =============================================
   VILOGUE 2026 — Design System
   Font: Cormorant Garamond (display) + DM Sans
   Theme: Dark luxury on mobile, light on desktop
============================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,500;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

:root {
  --ink:        #0A0A0A;
  --paper:      #F7F3EE;
  --gold:       #C9A96E;
  --gold-d:     #A8853A;
  --gold-lt:    #EAD9BB;
  --muted:      #8A847C;
  --surface:    #141414;
  --card:       #1C1C1C;
  --border:     rgba(201,169,110,0.18);
  --border-lt:  rgba(0,0,0,0.08);
  --r-sm:       10px;
  --r-md:       16px;
  --r-lg:       24px;
  --font-d:     'Cormorant Garamond', serif;
  --font-b:     'DM Sans', sans-serif;
  --nav-h:      60px;
  --bottom-h:   74px;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-d:   0 8px 40px rgba(0,0,0,0.28);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-b);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---- TYPOGRAPHY ---- */
.vil-display { font-family: var(--font-d); font-weight: 300; }
.vil-display-b { font-family: var(--font-d); font-weight: 600; }

/* ---- UTILITY ---- */
.vil-container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.vil-section { padding: 40px 0; }
.vil-sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }

/* ==========================================
   TOP NAVBAR
========================================== */
.vil-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  background: rgba(247,243,238,0.95);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid var(--border-lt);
  display: flex; align-items: center;
}
.vil-navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px;
}
.vil-navbar__logo {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.vil-navbar__logo span { color: var(--gold); }
.vil-navbar__actions { display: flex; align-items: center; gap: 8px; }
.vil-navbar__btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background: transparent;
  transition: background 0.2s;
}
.vil-navbar__btn:hover { background: rgba(0,0,0,0.06); }
.vil-navbar__btn svg { width: 20px; color: var(--ink); }
.vil-cart-badge {
  position: absolute; top: 2px; right: 2px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.58rem;
  font-weight: 700;
  min-width: 16px; height: 16px;
  border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
  display: none;
}
.vil-cart-badge.has-items { display: flex; }

/* ==========================================
   BOTTOM NAV (mobile)
========================================== */
.vil-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  height: var(--bottom-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-lt);
  display: flex; align-items: center; justify-content: space-around;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.vil-bottom-nav__item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 8px 0;
}
.vil-bottom-nav__item svg { width: 22px; }
.vil-bottom-nav__item.active { color: var(--ink); }
.vil-bottom-nav__item.active svg path,
.vil-bottom-nav__item.active svg circle { stroke: var(--ink); }
/* Cart centre button */
.vil-bottom-nav__cart {
  width: 52px; height: 52px;
  background: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: -20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  position: relative;
}
.vil-bottom-nav__cart svg { width: 22px; color: white; }

/* ==========================================
   PAGE LAYOUT
========================================== */
.vil-page {
  padding-top: var(--nav-h);
  padding-bottom: var(--bottom-h);
  min-height: 100vh;
}
.vil-page--full { padding-bottom: 0; }

/* ==========================================
   BUTTONS
========================================== */
.vil-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-b);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 12px 24px;
  border-radius: var(--r-md);
  transition: all 0.2s;
  cursor: pointer;
}
.vil-btn--primary {
  background: var(--ink);
  color: white;
  border: 1.5px solid var(--ink);
}
.vil-btn--primary:hover { background: #2a2a2a; }
.vil-btn--gold {
  background: var(--gold);
  color: var(--ink);
  border: 1.5px solid var(--gold);
}
.vil-btn--gold:hover { background: var(--gold-d); border-color: var(--gold-d); }
.vil-btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-lt);
}
.vil-btn--outline:hover { border-color: var(--ink); }
.vil-btn--full { width: 100%; }
.vil-btn:disabled { opacity: 0.5; pointer-events: none; }
.vil-btn--loading { pointer-events: none; }
.vil-btn--loading::after {
  content: '';
  width: 14px; height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================
   FORM ELEMENTS
========================================== */
.vil-form-group { margin-bottom: 16px; }
.vil-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.vil-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-lt);
  border-radius: var(--r-sm);
  background: white;
  color: var(--ink);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.vil-input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}
.vil-input::placeholder { color: var(--muted); }
.vil-input--error { border-color: #e74c3c !important; }
.vil-error-msg { font-size: 0.75rem; color: #e74c3c; margin-top: 4px; }
.vil-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A847C' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

/* Input with icon */
.vil-input-wrap { position: relative; }
.vil-input-wrap svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; color: var(--muted); pointer-events: none; }
.vil-input-wrap .vil-input { padding-left: 42px; }

/* ==========================================
   CARDS
========================================== */
.vil-card {
  background: white;
  border: 1px solid var(--border-lt);
  border-radius: var(--r-md);
  overflow: hidden;
}
.vil-card__body { padding: 20px; }

/* ==========================================
   PRODUCT CARD
========================================== */
.vil-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .vil-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .vil-product-grid { grid-template-columns: repeat(4, 1fr); } }

.vil-product-card {
  background: white;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border-lt);
  transition: box-shadow 0.2s, transform 0.2s;
}
.vil-product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.vil-product-card__img-wrap {
  aspect-ratio: 3/4;
  background: #f2ede8;
  position: relative;
  overflow: hidden;
}
.vil-product-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vil-product-card:hover .vil-product-card__img-wrap img { transform: scale(1.05); }
.vil-product-card__body { padding: 12px; }
.vil-product-card__name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 2px;
}
.vil-product-card__price {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.vil-product-card__like {
  position: absolute; top: 8px; right: 8px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.vil-product-card__like:hover { background: white; transform: scale(1.1); }
.vil-product-card__like svg { width: 15px; }
.vil-product-card__like .heart-icon.liked path { fill: #ff385c; stroke: none; }

/* ==========================================
   BADGE
========================================== */
.vil-badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.vil-badge--gold { background: var(--gold); color: var(--ink); }
.vil-badge--dark { background: var(--ink); color: white; }
.vil-badge--green { background: #d1fae5; color: #065f46; }
.vil-badge--red { background: #fee2e2; color: #991b1b; }
.vil-badge--yellow { background: #fef9c3; color: #713f12; }

/* ==========================================
   LAZY IMAGES
========================================== */
.vil-lazy { opacity: 0; transition: opacity 0.4s ease; }
.vil-lazy.loaded { opacity: 1; }

/* ==========================================
   HORIZONTAL SCROLL
========================================== */
.vil-hscroll {
  overflow-x: auto; overflow-y: hidden;
  display: flex; gap: 14px;
  padding: 2px 20px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.vil-hscroll::-webkit-scrollbar { display: none; }
.vil-hscroll > * { scroll-snap-align: start; flex-shrink: 0; }

/* ==========================================
   SECTION HEADER
========================================== */
.vil-section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 0 20px;
  margin-bottom: 16px;
}
.vil-section-title {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.vil-section-title em { font-style: italic; color: var(--gold-d); }
.vil-view-all {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 4px;
  transition: color 0.2s;
}
.vil-view-all:hover { color: var(--ink); }
.vil-view-all svg { width: 13px; }

/* ==========================================
   FILTER PILLS
========================================== */
.vil-pills {
  display: flex; gap: 8px; flex-wrap: nowrap;
  overflow-x: auto; scrollbar-width: none;
  padding: 0 20px 4px;
}
.vil-pills::-webkit-scrollbar { display: none; }
.vil-pill {
  flex-shrink: 0;
  padding: 7px 18px;
  border-radius: 99px;
  border: 1.5px solid var(--border-lt);
  background: white;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.vil-pill:hover { color: var(--ink); border-color: rgba(0,0,0,0.2); }
.vil-pill.active {
  background: var(--ink); color: white; border-color: var(--ink); font-weight: 500;
}

/* ==========================================
   HERO SEARCH
========================================== */
.vil-search-bar {
  display: flex; align-items: center; gap: 10px;
  background: white;
  border: 1.5px solid var(--border-lt);
  border-radius: 99px;
  padding: 10px 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.vil-search-bar input {
  flex: 1; min-width: 0;
  border: none; outline: none; background: none;
  font-size: 0.88rem;
  color: var(--ink);
}
.vil-search-bar input::placeholder { color: var(--muted); }
.vil-search-bar svg { width: 18px; color: var(--muted); flex-shrink: 0; }
.vil-search-bar__filter {
  display: flex; align-items: center; gap: 5px;
  background: var(--ink);
  color: white;
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 500;
  flex-shrink: 0;
  transition: background 0.2s;
}
.vil-search-bar__filter:hover { background: #333; }
.vil-search-bar__filter svg { width: 13px; }

/* ==========================================
   CART DRAWER
========================================== */
.vil-drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 1000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.vil-drawer-overlay.open { opacity: 1; pointer-events: all; }
.vil-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(400px, 100vw);
  background: white;
  z-index: 1001;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
}
.vil-drawer.open { transform: translateX(0); }
.vil-drawer__head {
  padding: 20px;
  border-bottom: 1px solid var(--border-lt);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.vil-drawer__title { font-family: var(--font-d); font-size: 1.4rem; font-weight: 500; }
.vil-drawer__close {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border-lt);
  cursor: pointer; transition: all 0.2s;
}
.vil-drawer__close:hover { background: var(--ink); color: white; border-color: var(--ink); }
.vil-drawer__close svg { width: 16px; }
.vil-drawer__body { flex: 1; overflow-y: auto; padding: 20px; }
.vil-drawer__footer {
  padding: 20px;
  border-top: 1px solid var(--border-lt);
  flex-shrink: 0;
  background: #fafafa;
}
.vil-drawer__total {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.vil-drawer__total-label { font-size: 0.85rem; color: var(--muted); }
.vil-drawer__total-amount { font-family: var(--font-d); font-size: 1.5rem; font-weight: 600; }

/* Cart Item */
.vil-cart-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-lt);
}
.vil-cart-item:last-child { border-bottom: none; }
.vil-cart-item__img {
  width: 70px; height: 90px;
  border-radius: var(--r-sm);
  background: #f2ede8;
  overflow: hidden; flex-shrink: 0;
}
.vil-cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.vil-cart-item__info { flex: 1; min-width: 0; }
.vil-cart-item__name { font-size: 0.85rem; font-weight: 500; color: var(--ink); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vil-cart-item__meta { font-size: 0.72rem; color: var(--muted); margin-bottom: 8px; }
.vil-cart-item__actions { display: flex; align-items: center; gap: 8px; }
.vil-qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all 0.15s;
  background: white;
}
.vil-qty-btn:hover { border-color: var(--ink); background: var(--ink); color: white; }
.vil-qty-display { font-size: 0.9rem; font-weight: 500; min-width: 20px; text-align: center; }
.vil-cart-item__price { font-family: var(--font-d); font-size: 1rem; font-weight: 600; white-space: nowrap; }
.vil-cart-item__remove { font-size: 0.7rem; color: #e74c3c; cursor: pointer; transition: opacity 0.2s; background: none; border: none; padding: 2px 0; }
.vil-cart-item__remove:hover { opacity: 0.7; }

/* ==========================================
   TOAST NOTIFICATIONS
========================================== */
.vil-toast-wrap {
  position: fixed; top: 80px; right: 20px; z-index: 9999;
  display: flex; flex-direction: column; gap: 8px;
  pointer-events: none;
}
.vil-toast {
  display: flex; align-items: center; gap: 10px;
  background: var(--ink);
  color: white;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  box-shadow: var(--shadow-d);
  min-width: 240px; max-width: 320px;
  animation: toastIn 0.3s ease;
  pointer-events: all;
}
.vil-toast svg { width: 16px; flex-shrink: 0; }
.vil-toast--success { background: #059669; }
.vil-toast--error   { background: #dc2626; }
.vil-toast--info    { background: var(--ink); }
.vil-toast--warning { background: #d97706; }
@keyframes toastIn {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes toastOut {
  to { transform: translateX(110%); opacity: 0; }
}

/* ==========================================
   EMPTY STATE
========================================== */
.vil-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.vil-empty svg { width: 48px; margin: 0 auto 16px; opacity: 0.3; }
.vil-empty h3 { font-family: var(--font-d); font-size: 1.3rem; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
.vil-empty p { font-size: 0.85rem; }

/* ==========================================
   PAGE ANIMATIONS
========================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.vil-animate { animation: fadeUp 0.5s ease both; }
.vil-animate--d1 { animation-delay: 0.1s; }
.vil-animate--d2 { animation-delay: 0.2s; }
.vil-animate--d3 { animation-delay: 0.3s; }

/* ==========================================
   RESPONSIVE
========================================== */
@media (min-width: 768px) {
  .vil-bottom-nav { display: none; }
  .vil-page { padding-bottom: 0; }
}
@media (max-width: 767px) {
  .vil-navbar__logo { font-size: 1.2rem; }
}

/* ==========================================
   LOADING SPINNER
========================================== */
.vil-spinner {
  width: 24px; height: 24px;
  border: 2.5px solid rgba(201,169,110,0.3);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 40px auto;
}

/* ==========================================
   PRICE DISPLAY
========================================== */
.vil-price {
  font-family: var(--font-d);
  font-weight: 600;
  color: var(--ink);
}
.vil-price--lg { font-size: 1.6rem; }
.vil-price--md { font-size: 1.1rem; }

/* ==========================================
   STEPS / BREADCRUMB (checkout)
========================================== */
.vil-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 16px 20px;
}
.vil-step {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  flex: 1; position: relative;
}
.vil-step::after {
  content: '';
  position: absolute; top: 14px; left: 50%; right: -50%;
  height: 2px; background: var(--border-lt); z-index: 0;
}
.vil-step:last-child::after { display: none; }
.vil-step__dot {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--border-lt);
  background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
  position: relative; z-index: 1;
  transition: all 0.2s;
}
.vil-step.active .vil-step__dot { background: var(--ink); border-color: var(--ink); color: white; }
.vil-step.done .vil-step__dot { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.vil-step.done::after { background: var(--gold); }
.vil-step.active::after { background: var(--border-lt); }
.vil-step__label { font-size: 0.62rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.vil-step.active .vil-step__label { color: var(--ink); }

/* ==========================================
   ORDER TIMELINE
========================================== */
.vil-timeline { position: relative; padding-left: 28px; }
.vil-timeline::before {
  content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px;
  width: 2px; background: var(--border-lt);
}
.vil-timeline__item { position: relative; margin-bottom: 24px; }
.vil-timeline__dot {
  position: absolute; left: -24px; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #e2e2e2;
  border: 2px solid white;
}
.vil-timeline__item--active .vil-timeline__dot {
  background: #059669;
  box-shadow: 0 0 0 4px rgba(5,150,105,0.15);
}
.vil-timeline__title { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.vil-timeline__desc  { font-size: 0.78rem; color: var(--muted); }
.vil-timeline__date  { font-size: 0.7rem; color: var(--muted); margin-top: 2px; }

/* ==========================================
   CATEGORY CIRCLE
========================================== */
.vil-cat-circle {
  width: 68px; height: 68px; border-radius: 50%;
  overflow: hidden; border: 2px solid var(--border-lt);
  background: #f2ede8;
  transition: border-color 0.2s, transform 0.2s;
}
.vil-cat-circle img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.vil-cat-pill:hover .vil-cat-circle { border-color: var(--gold); transform: translateY(-3px); }
.vil-cat-pill:hover .vil-cat-circle img { transform: scale(1.08); }
.vil-cat-pill { display: flex; flex-direction: column; align-items: center; gap: 7px; text-decoration: none; }
.vil-cat-name { font-size: 0.65rem; color: var(--muted); text-align: center; font-weight: 400; max-width: 70px; line-height: 1.3; }

/* ==========================================
   AUTH PAGE
========================================== */
.vil-auth {
  min-height: 100vh;
  display: flex; flex-direction: column;
  background: linear-gradient(155deg, #1a1208 0%, #0f0d0b 50%, #0a0a14 100%);
  color: white;
}
.vil-auth__top {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 60px 30px 30px;
  text-align: center;
}
.vil-auth__logo { font-family: var(--font-d); font-size: 2.4rem; font-weight: 600; letter-spacing: 0.15em; color: white; margin-bottom: 6px; }
.vil-auth__logo span { color: var(--gold); }
.vil-auth__tagline { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.vil-auth__bottom {
  background: white;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: 32px 24px 48px;
  color: var(--ink);
}
.vil-auth__title { font-family: var(--font-d); font-size: 1.8rem; font-weight: 500; margin-bottom: 4px; }
.vil-auth__sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 24px; }

/* ==========================================
   HERO BANNER
========================================== */
.vil-hero { background: var(--paper); padding: 20px 20px 0; }
.vil-hero__greeting { font-family: var(--font-d); font-size: 1.8rem; font-weight: 300; line-height: 1.2; margin-bottom: 4px; }
.vil-hero__greeting strong { font-weight: 600; color: var(--gold-d); }
.vil-hero__sub { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }

.vil-banner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.vil-banner {
  border-radius: var(--r-md); overflow: hidden;
  min-height: 150px; position: relative;
  display: flex; align-items: flex-end;
}
.vil-banner-1 { background: linear-gradient(145deg, #1a1208, #2a1f0a); }
.vil-banner-2 { background: linear-gradient(145deg, #0d0d18, #1a1828); }
.vil-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 55%);
}
.vil-banner__content { position: relative; z-index: 1; padding: 14px; }
.vil-banner__tag {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 99px; padding: 2px 8px;
  display: inline-block; margin-bottom: 5px;
}
.vil-banner__title { font-family: var(--font-d); font-size: 1rem; font-weight: 600; color: white; line-height: 1.2; margin-bottom: 3px; }
.vil-banner__cta { font-size: 0.68rem; color: var(--gold); display: flex; align-items: center; gap: 3px; }
.vil-banner__cta svg { width: 11px; }

/* ── Or Divider ─────────────────────────────── */
.vil-or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 18px;
}

.vil-or-divider::before,
.vil-or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e5e5;
}

.vil-or-divider span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ── Social Button ──────────────────────────── */
.vil-social-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vil-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.vil-social-btn:hover {
  border-color: #bbb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  background: #fafafa;
  color: var(--ink);
}

.vil-social-btn img {
  flex-shrink: 0;
}


/* WhatsApp floating button */
.vil-wa-float {
  position: fixed;
  bottom: 84px;          /* sits above your bottom nav bar */
  right: 20px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.vil-wa-float:hover,
.vil-wa-float:active {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
}
