/* ─────────────────────────────────────────────
   Vendoty Ecom — Luxury Storefront
   Inspired by Apple / Zara / Nike / COS
   ───────────────────────────────────────────── */

:root {
  /* Neutral palette */
  --v-ink: #0b0b0c;
  --v-ink-soft: #1f1f22;
  --v-muted: #6f6f72;
  --v-muted-2: #8a8a8e;
  --v-line: #ebebeb;
  --v-line-2: #d8d8d8;
  --v-surface: #f7f7f7;
  --v-surface-2: #f1efeb;
  --v-bg: #ffffff;
  --v-card: #ffffff;

  /* Luxury accent — beige & earth */
  --v-beige: #d9c8ad;
  --v-beige-soft: #ece2cd;
  --v-earth: #8a6a3a;
  --v-earth-dark: #6e5128;
  --v-success: #2f6f4e;
  --v-danger: #a03434;

  /* Radii */
  --v-r-sm: 8px;
  --v-r: 14px;
  --v-r-lg: 20px;
  --v-r-pill: 999px;
  --v-r-btn: 10px;

  /* Shadows */
  --v-sh-1: 0 1px 2px rgba(0,0,0,.04);
  --v-sh-2: 0 8px 24px rgba(0,0,0,.06);
  --v-sh-3: 0 16px 40px rgba(0,0,0,.10);
  --v-sh-4: 0 30px 70px rgba(0,0,0,.14);

  /* Type */
  --v-font-sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --v-font-serif: 'Fraunces', 'Times New Roman', Georgia, serif;

  /* Layout */
  --v-container: 1280px;
  --v-gutter: 24px;
  --v-nav-h: 72px;
}

/* ─── Base ─── */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body {
  background: var(--v-bg);
  color: var(--v-ink);
  font-family: var(--v-font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { margin: 0; }

a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--v-earth); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--v-font-serif);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--v-ink);
  line-height: 1.15;
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p { margin: 0 0 1em; }

.text-muted, .text-secondary { color: var(--v-muted) !important; }
.text-dark { color: var(--v-ink) !important; }

/* ─── Container override ─── */
.container-xl {
  width: 100%;
  max-width: var(--v-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--v-gutter);
  padding-right: var(--v-gutter);
}

/* ─── Buttons (override Bootstrap) ─── */
.btn,
button.btn {
  border-radius: var(--v-r-btn);
  font-weight: 600;
  letter-spacing: .005em;
  padding: .75rem 1.4rem;
  font-size: .92rem;
  font-family: var(--v-font-sans);
  border: 1px solid transparent;
  transition: all .22s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.btn-primary, button.btn-primary {
  background: var(--v-ink);
  border-color: var(--v-ink);
  color: #fff;
  box-shadow: none;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: var(--v-earth) !important;
  border-color: var(--v-earth) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(138,106,58,.25);
}
.btn-outline-dark {
  background: transparent;
  border: 1px solid var(--v-ink);
  color: var(--v-ink);
}
.btn-outline-dark:hover, .btn-outline-dark:focus {
  background: var(--v-ink);
  border-color: var(--v-ink);
  color: #fff;
}
.btn-link {
  color: var(--v-ink);
  font-weight: 600;
}
.btn-link:hover { color: var(--v-earth); }
.btn-lg { padding: 1rem 1.6rem; font-size: 1rem; }

/* ─── Forms ─── */
input[type=text], input[type=email], input[type=tel], input[type=password],
input[type=search], input[type=number], select, textarea, .form-control {
  width: 100%;
  background: #fff;
  border: 1px solid var(--v-line);
  border-radius: var(--v-r-btn);
  padding: .85rem 1rem;
  font: inherit;
  color: var(--v-ink);
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
}
input:focus, select:focus, textarea:focus, .form-control:focus {
  border-color: var(--v-ink);
  box-shadow: 0 0 0 4px rgba(11,11,12,.06);
}
input::placeholder, textarea::placeholder { color: var(--v-muted-2); }

/* ─── Alert ─── */
.alert {
  border: 1px solid var(--v-line);
  border-radius: var(--v-r);
  padding: .9rem 1.1rem;
  background: var(--v-surface);
  font-size: .92rem;
}
.alert-success { background: #f1f7f3; border-color: #d6e7dd; color: var(--v-success); }
.alert-danger  { background: #fbf1f1; border-color: #efd6d6; color: var(--v-danger); }

/* ─── Header / Navbar ─── */
.v-header {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  z-index: 1030;
}
.v-header__row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--v-nav-h);
  padding: .9rem 0;
}
.v-brand {
  display: inline-flex;
  align-items: baseline;
  gap: .5rem;
  flex: 0 0 auto;
  letter-spacing: -.02em;
}
.v-brand__mark {
  display: none;
}
.v-brand__text {
  font-family: var(--v-font-serif);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -.02em;
  color: var(--v-ink);
  text-transform: lowercase;
}
.v-brand--footer .v-brand__text { color: #fff; }

.v-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  margin-left: 1rem;
  flex: 1 1 auto;
}
@media (min-width: 992px) { .v-nav { display: flex; } }
.v-nav a {
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--v-ink);
  position: relative;
  padding: .25rem 0;
}
.v-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1.5px;
  background: var(--v-earth);
  transition: width .25s ease;
}
.v-nav a:hover::after, .v-nav a.is-active::after { width: 100%; }
.v-nav a:hover { color: var(--v-earth); }

.v-search-nav {
  /* Without a primary nav next to it, the search bar can stretch and fill
     the middle of the header — Apple/Amazon style. */
  flex: 1 1 auto;
  max-width: 640px;
  display: none;
  align-items: center;
  gap: .5rem;
  height: 44px;
  padding: 0 1.1rem;
  background: var(--v-surface);
  border-radius: var(--v-r-pill);
  border: 1px solid transparent;
  transition: all .2s ease;
  margin: 0 auto;
}
@media (min-width: 992px) { .v-search-nav { display: flex; } }
.v-search-nav:focus-within { background: #fff; border-color: var(--v-ink); box-shadow: 0 0 0 4px rgba(11,11,12,.06); }
.v-search-nav i { color: var(--v-muted); }
.v-search-nav input { flex: 1; border: 0; background: transparent; padding: 0; }
.v-search-nav input:focus { box-shadow: none; }

.v-header__actions {
  display: flex; align-items: center; gap: .5rem;
  margin-left: auto;
}
@media (min-width: 992px) { .v-header__actions { margin-left: 0; } }

.v-iconbtn {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: var(--v-r-pill);
  color: var(--v-ink);
  background: transparent;
  border: 1px solid transparent;
  transition: all .2s ease;
  position: relative;
}
.v-iconbtn:hover { background: var(--v-surface); color: var(--v-ink); }
.v-iconbtn i { font-size: 1.15rem; }

.v-cart {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .95rem .55rem .75rem;
  border-radius: var(--v-r-pill);
  background: var(--v-ink);
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  transition: all .2s ease;
  position: relative;
}
.v-cart:hover { background: var(--v-earth); color: #fff; transform: translateY(-1px); }
.v-cart__label { display: none; }
@media (min-width: 768px) { .v-cart__label { display: inline; } }
.v-cart__badge {
  display: inline-grid; place-items: center;
  min-width: 20px; height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--v-beige);
  color: var(--v-ink);
  font-size: .72rem;
  font-weight: 700;
  margin-left: .15rem;
}
.v-cart__badge.is-pop { animation: vPop .35s ease; }
.v-cart.is-bump { animation: vBump .35s ease; }
@keyframes vPop { 0% { transform: scale(.7); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }
@keyframes vBump { 0% { transform: translateY(0); } 40% { transform: translateY(-2px); } 100% { transform: translateY(0); } }

/* Language switcher */
.v-lang__btn {
  display: inline-flex; align-items: center; gap: .35rem;
  border: 1px solid var(--v-line);
  background: #fff;
  padding: .45rem .7rem;
  border-radius: var(--v-r-pill);
  font-size: .82rem;
  font-weight: 600;
  color: var(--v-ink);
}
.v-lang__btn:hover { border-color: var(--v-ink); }
.v-lang__chev { font-size: .75rem; opacity: .6; }
.v-lang__menu { padding: .4rem; border-radius: var(--v-r); border: 1px solid var(--v-line); box-shadow: var(--v-sh-3); min-width: 200px; }
.v-lang__item {
  display: flex; align-items: center; gap: .65rem;
  padding: .55rem .75rem; border-radius: 10px;
  color: var(--v-ink); font-size: .9rem;
}
.v-lang__item:hover { background: var(--v-surface); color: var(--v-ink); }
.v-lang__item.is-active { background: var(--v-surface-2); }
.v-lang__item-body { display: flex; flex-direction: column; }
.v-lang__item-body small { color: var(--v-muted); font-size: .72rem; }
.v-lang__check { margin-left: auto; color: var(--v-earth); }

/* User dropdown */
.v-user__btn {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid var(--v-line);
  background: #fff;
  padding: .35rem .7rem .35rem .35rem;
  border-radius: var(--v-r-pill);
}
.v-user__btn:hover { border-color: var(--v-ink); }
.v-user__avatar {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--v-ink);
  color: #fff; font-weight: 700; font-size: .8rem;
  letter-spacing: 0;
}
.v-user__avatar--lg { width: 44px; height: 44px; font-size: .95rem; }
.v-user__name { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.v-user__name small { font-size: .65rem; color: var(--v-muted); text-transform: uppercase; letter-spacing: .08em; }
.v-user__name strong { font-size: .85rem; font-weight: 700; }
.v-user__chev { font-size: .75rem; opacity: .6; }
.v-user__menu { padding: .4rem; border-radius: var(--v-r); border: 1px solid var(--v-line); box-shadow: var(--v-sh-3); min-width: 260px; }
.v-user__head { padding: .8rem .75rem; display: flex; gap: .75rem; align-items: center; }
.v-user__head strong { display: block; font-size: .95rem; }
.v-user__head small { color: var(--v-muted); font-size: .78rem; }
.v-user__item {
  display: flex; align-items: center; gap: .65rem;
  padding: .6rem .75rem; border-radius: 10px;
  background: transparent; border: 0; width: 100%;
  text-align: left;
  color: var(--v-ink); font-size: .9rem; font-weight: 500;
}
.v-user__item:hover { background: var(--v-surface); color: var(--v-ink); }
.v-user__item--danger { color: var(--v-danger); }
.v-user__item--danger:hover { background: #fbf1f1; color: var(--v-danger); }

/* ─── Mobile bottom nav ─── */
.v-mobnav {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(16px);
  border-top: 1px solid var(--v-line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 1040;
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom)) 4px;
}
@media (min-width: 992px) { .v-mobnav { display: none; } }
.v-mobnav a {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 6px 4px;
  font-size: .65rem;
  font-weight: 600;
  color: var(--v-muted);
  letter-spacing: .04em;
}
.v-mobnav a i { font-size: 1.25rem; }
.v-mobnav a.is-active { color: var(--v-ink); }
.v-mobnav a:hover { color: var(--v-ink); }
.v-mobnav__cart { position: relative; }
.v-mobnav__cart .v-mobnav__badge {
  position: absolute; top: 2px; right: calc(50% - 18px);
  min-width: 16px; height: 16px;
  border-radius: 999px;
  background: var(--v-earth); color: #fff;
  font-size: .62rem; font-weight: 700;
  display: grid; place-items: center;
  padding: 0 4px;
}

.v-main { min-height: 60vh; padding-bottom: 80px; }
@media (min-width: 992px) { .v-main { padding-bottom: 0; } }

/* ─── Section helpers ─── */
.v-section { padding: 64px 0; }
@media (min-width: 992px) { .v-section { padding: 96px 0; } }
.v-section--tight { padding: 40px 0; }
@media (min-width: 992px) { .v-section--tight { padding: 64px 0; } }

.v-eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--v-earth);
  margin-bottom: .8rem;
}
.v-eyebrow--light { color: var(--v-beige); }
.v-eyebrow--muted { color: var(--v-muted); }

.v-section-title {
  display: flex; align-items: end; justify-content: space-between;
  gap: 1rem; margin-bottom: 28px;
  border-bottom: 1px solid var(--v-line);
  padding-bottom: 12px;
}
.v-section-title h2 { margin: 0; }
.v-section-title a {
  font-size: .85rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--v-ink); white-space: nowrap;
}
.v-section-title a:hover { color: var(--v-earth); }

/* ─── Reveal animations ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ─── Hero ─── */
.v-hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.85) 80%, #fff 100%),
    linear-gradient(135deg, #f1efeb 0%, #e8ddc8 100%);
  overflow: hidden;
  padding: 80px 24px;
}
.v-hero__bg {
  position: absolute; inset: 0;
  background-position: center; background-size: cover;
  opacity: .9;
  z-index: 0;
}
.v-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 30%, rgba(255,255,255,.92) 100%);
}
.v-hero__inner {
  position: relative; z-index: 2;
  max-width: 820px;
}
.v-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.04;
  margin-bottom: 1rem;
}
.v-hero p {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--v-ink-soft);
  margin-bottom: 2rem;
  max-width: 580px;
  margin-left: auto; margin-right: auto;
}
.v-hero__ctas { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ─── Hero search (home variant) ─── */
.v-herosearch {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.v-herosearch__inp { position: relative; margin: 1.4rem 0 1rem; }
.v-search--hero {
  display: flex; align-items: center; gap: .5rem;
  background: #fff;
  border: 1px solid var(--v-line);
  border-radius: var(--v-r-pill);
  padding: .5rem .5rem .5rem 1.2rem;
  box-shadow: var(--v-sh-2);
}
.v-search--hero:focus-within { border-color: var(--v-ink); box-shadow: var(--v-sh-3); }
.v-search--hero i { color: var(--v-muted); }
.v-search--hero input { border: 0; background: transparent; padding: .6rem 0; flex: 1; }
.v-search--hero input:focus { box-shadow: none; }
.v-search--hero .btn { border-radius: var(--v-r-pill); padding: .65rem 1.3rem; }

.v-herosearch__tags {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
  font-size: .85rem; color: var(--v-muted);
  margin-top: 1rem;
}
.v-herosearch__tags span { color: var(--v-muted); }
.v-herosearch__tags a {
  padding: .35rem .85rem;
  background: #fff;
  border: 1px solid var(--v-line);
  border-radius: var(--v-r-pill);
  color: var(--v-ink);
  font-weight: 500;
  transition: all .2s ease;
}
.v-herosearch__tags a:hover { background: var(--v-ink); color: #fff; border-color: var(--v-ink); }

/* ─── Trust strip ─── */
.v-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 48px 0;
  border-top: 1px solid var(--v-line);
  border-bottom: 1px solid var(--v-line);
}
@media (min-width: 768px) { .v-trust { grid-template-columns: repeat(4, 1fr); padding: 56px 0; } }
.v-trust__item {
  display: flex; align-items: center; gap: .9rem;
}
.v-trust__ic {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--v-surface);
  display: grid; place-items: center;
  color: var(--v-earth);
  font-size: 1.15rem;
  flex: 0 0 auto;
}
.v-trust__t { font-weight: 700; font-size: .92rem; line-height: 1.2; }
.v-trust__s { font-size: .78rem; color: var(--v-muted); }

/* ─── Categories strip ─── */
.v-cats {
  display: flex; gap: 16px;
  overflow-x: auto;
  padding: 8px 4px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.v-cats::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
  .v-cats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    overflow: visible;
  }
}
.v-cat {
  flex: 0 0 140px;
  scroll-snap-align: start;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 18px 10px;
  background: var(--v-surface);
  border-radius: var(--v-r);
  transition: all .25s ease;
  text-align: center;
}
@media (min-width: 768px) { .v-cat { flex: 1; } }
.v-cat:hover { background: var(--v-surface-2); transform: translateY(-2px); }
.v-cat__img {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  overflow: hidden;
  border: 1px solid var(--v-line);
}
.v-cat__img img { width: 100%; height: 100%; object-fit: cover; }
.v-cat__img i { font-size: 1.6rem; color: var(--v-muted); }
.v-cat__label {
  font-size: .85rem; font-weight: 600;
  color: var(--v-ink);
  letter-spacing: .01em;
}
.v-cat__count {
  font-size: .7rem; color: var(--v-muted);
}

/* ─── Product grid ─── */
.v-prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 640px) { .v-prod-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 1024px) { .v-prod-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }

.v-prod {
  display: flex; flex-direction: column;
  position: relative;
  background: transparent;
}
.v-prod__mediawrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--v-r);
  background: var(--v-surface);
  aspect-ratio: 1 / 1;
}
.v-prod__media {
  display: block; width: 100%; height: 100%;
}
.v-prod__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
}
.v-prod:hover .v-prod__media img { transform: scale(1.06); }

.v-prod__tags {
  position: absolute; top: 12px; left: 12px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.v-tag {
  display: inline-block;
  padding: .25rem .6rem;
  background: #fff;
  color: var(--v-ink);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: var(--v-sh-1);
}
.v-tag--hot { background: var(--v-ink); color: #fff; }
.v-tag--new { background: var(--v-earth); color: #fff; }
.v-tag--veg { background: var(--v-success); color: #fff; }

.v-prod__fav {
  position: absolute; top: 10px; right: 10px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.92);
  color: var(--v-ink);
  display: grid; place-items: center;
  cursor: pointer;
  transition: all .2s ease;
  backdrop-filter: blur(8px);
}
.v-prod__fav:hover { background: #fff; color: var(--v-danger); transform: scale(1.08); }

.v-prod__addfab {
  position: absolute; bottom: 12px; right: 12px;
  margin: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: all .25s ease;
}
.v-prod:hover .v-prod__addfab { opacity: 1; transform: none; }
@media (hover: none) { .v-prod__addfab { opacity: 1; transform: none; } }
.v-prod__addfab button {
  background: var(--v-ink);
  color: #fff;
  border: 0;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .55rem 1rem;
  border-radius: var(--v-r-pill);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: .35rem;
  transition: background .2s ease;
}
.v-prod__addfab button:hover { background: var(--v-earth); }
.v-prod__addfab button.is-loading { opacity: .7; }

.v-prod__body {
  padding: 14px 4px 0;
  display: flex; flex-direction: column; gap: 4px;
  color: var(--v-ink);
}
.v-prod__brand {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--v-muted);
  font-weight: 700;
}
.v-prod__title {
  font-family: var(--v-font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0;
  line-height: 1.25;
}
.v-prod__desc {
  font-size: .82rem; color: var(--v-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v-prod__meta { display: flex; gap: .5rem; align-items: center; }
.v-prod__rating { font-size: .78rem; color: var(--v-ink); display: inline-flex; align-items: center; gap: 4px; }
.v-prod__rating i { color: var(--v-earth); }
.v-prod__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 6px;
}
.v-prod__price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--v-ink);
}

/* ─── Featured banner row ─── */
.v-banner {
  position: relative;
  border-radius: var(--v-r-lg);
  overflow: hidden;
  background: var(--v-surface-2);
  min-height: 360px;
  display: flex; align-items: center;
  padding: 48px;
  margin: 24px 0;
}
.v-banner__bg {
  position: absolute; inset: 0;
  background-position: center; background-size: cover;
  opacity: .85;
}
.v-banner__body {
  position: relative; z-index: 2;
  max-width: 460px;
  color: var(--v-ink);
}
.v-banner__body h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: .5rem;
}

/* ─── Banner carousel (bootstrap-driven) ─── */
.v-banner-carousel .carousel-item { border-radius: var(--v-r-lg); overflow: hidden; }
.v-banner-slide {
  display: flex; align-items: flex-end;
  min-height: 320px;
  padding: 36px;
  background-size: cover; background-position: center;
  color: #fff;
  position: relative;
}
.v-banner-slide::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.55) 100%);
}
.v-banner-slide__body { position: relative; z-index: 2; max-width: 520px; }
.v-banner-slide__body h3 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.v-banner-slide__body p { color: rgba(255,255,255,.9); margin-bottom: 1rem; }

/* ─── Testimonial ─── */
.v-testi {
  background: var(--v-surface);
  border-radius: var(--v-r);
  padding: 28px;
  border: 1px solid var(--v-line);
  height: 100%;
}
.v-testi__stars { color: var(--v-earth); margin-bottom: 10px; }
.v-testi p {
  font-family: var(--v-font-serif);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--v-ink);
  margin-bottom: 1.2rem;
}
.v-testi__who { display: flex; align-items: center; gap: .7rem; }
.v-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--v-ink); color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: .85rem;
}
.v-testi__who strong { display: block; font-size: .9rem; }
.v-testi__who small { color: var(--v-muted); font-size: .76rem; }

/* ─── Newsletter ─── */
.v-newsletter {
  background: var(--v-ink);
  color: #fff;
  border-radius: var(--v-r-lg);
  padding: 48px 32px;
  display: grid; gap: 28px;
  align-items: center;
}
@media (min-width: 768px) {
  .v-newsletter { grid-template-columns: 1fr 1fr; padding: 64px 56px; }
}
.v-newsletter h2 { color: #fff; }
.v-newsletter p { color: rgba(255,255,255,.7); margin: 0; }
.v-newsletter .v-eyebrow { color: var(--v-beige); }
.v-newsletter__form {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.v-newsletter__form input {
  flex: 1 1 240px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  border-radius: var(--v-r-pill);
  padding: .95rem 1.2rem;
}
.v-newsletter__form input::placeholder { color: rgba(255,255,255,.5); }
.v-newsletter__form input:focus { background: rgba(255,255,255,.12); border-color: var(--v-beige); box-shadow: 0 0 0 4px rgba(217,200,173,.18); }
.v-newsletter__form .btn-primary {
  background: var(--v-beige); border-color: var(--v-beige); color: var(--v-ink);
  border-radius: var(--v-r-pill); padding: .9rem 1.6rem;
}
.v-newsletter__form .btn-primary:hover { background: #fff !important; border-color: #fff !important; color: var(--v-ink) !important; }

/* ─── Empty state ─── */
.v-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--v-muted);
}
.v-empty i { font-size: 2.5rem; color: var(--v-line-2); display: block; margin-bottom: 12px; }

/* ─── Chips (category filter) ─── */
.v-chips {
  display: flex; gap: 8px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scrollbar-width: none;
}
.v-chips::-webkit-scrollbar { display: none; }
.v-chip {
  flex: 0 0 auto;
  padding: .5rem 1rem;
  background: #fff;
  border: 1px solid var(--v-line);
  border-radius: var(--v-r-pill);
  font-size: .85rem; font-weight: 600;
  color: var(--v-ink);
  white-space: nowrap;
  transition: all .2s ease;
}
.v-chip:hover { border-color: var(--v-ink); color: var(--v-ink); }
.v-chip.is-active { background: var(--v-ink); color: #fff; border-color: var(--v-ink); }

/* ─── Product detail ─── */
.v-pd-gallery { display: flex; flex-direction: column; gap: 12px; }
.v-pd-gallery__main {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--v-surface);
  border-radius: var(--v-r-lg);
  overflow: hidden;
}
.v-pd-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.v-pd-gallery__thumbs {
  display: flex; gap: 8px; overflow-x: auto;
  scrollbar-width: none;
}
.v-pd-gallery__thumbs::-webkit-scrollbar { display: none; }
.v-pd-gallery__thumbs button {
  flex: 0 0 80px;
  width: 80px; height: 80px;
  border-radius: var(--v-r-sm);
  overflow: hidden;
  border: 1px solid var(--v-line);
  background: var(--v-surface);
  padding: 0;
  cursor: pointer;
  transition: border-color .2s ease;
}
.v-pd-gallery__thumbs button:hover, .v-pd-gallery__thumbs button.is-active { border-color: var(--v-ink); }
.v-pd-gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.v-pd-info { padding: 0; }
.v-pd-info h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: .25rem; }
.v-pd-info .v-prod__brand { display: block; margin-bottom: .5rem; }

.v-pd-options { margin: 1rem 0; }
.v-pd-options__h {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--v-muted); margin-bottom: .6rem;
}
.v-pd-option {
  display: block;
  position: relative;
  cursor: pointer;
  margin-bottom: 8px;
}
.v-pd-option input { position: absolute; opacity: 0; pointer-events: none; }
.v-pd-option__body {
  display: flex; align-items: center; gap: 8px;
  padding: .85rem 1rem;
  border: 1px solid var(--v-line);
  border-radius: var(--v-r);
  background: #fff;
  transition: all .2s ease;
}
.v-pd-option__body strong { font-weight: 600; }
.v-pd-option__body small { color: var(--v-muted); margin-left: auto; font-size: .85rem; }
.v-pd-option:hover .v-pd-option__body { border-color: var(--v-ink); }
.v-pd-option input:checked + .v-pd-option__body {
  border-color: var(--v-ink);
  background: var(--v-surface);
  box-shadow: inset 0 0 0 1px var(--v-ink);
}

.v-qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--v-line); border-radius: var(--v-r-pill);
  overflow: hidden; background: #fff;
}
.v-qty button {
  border: 0; background: transparent;
  width: 38px; height: 44px;
  font-size: 1.1rem; cursor: pointer;
  color: var(--v-ink);
  transition: background .2s ease;
}
.v-qty button:hover { background: var(--v-surface); }
.v-qty input {
  width: 48px; text-align: center;
  border: 0; padding: 0;
  font-weight: 700;
  background: transparent;
  -moz-appearance: textfield;
}
.v-qty input::-webkit-outer-spin-button, .v-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.v-qty input:focus { box-shadow: none; }
.v-qty span { padding: 0 14px; font-weight: 700; min-width: 32px; text-align: center; }

.v-pd-buy {
  margin-top: 1.2rem;
  padding: 1.2rem;
  background: var(--v-surface);
  border-radius: var(--v-r);
}
.v-pd-foot {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center;
  margin-top: 1rem;
}
.v-pd-price {
  font-size: 1.4rem;
  font-weight: 700;
  margin-right: auto;
}

/* Mobile sticky add to cart */
@media (max-width: 767.98px) {
  .v-pd-foot .btn-primary { flex: 1 1 100%; }
}

/* ─── Cart ─── */
.v-cart-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--v-line);
}
@media (min-width: 768px) {
  .v-cart-row { grid-template-columns: 100px 1fr auto auto auto; }
}
.v-cart-row__img {
  width: 80px; height: 80px;
  border-radius: var(--v-r);
  background: var(--v-surface);
  overflow: hidden;
  display: grid; place-items: center;
}
@media (min-width: 768px) { .v-cart-row__img { width: 100px; height: 100px; } }
.v-cart-row__img img { width: 100%; height: 100%; object-fit: cover; }
.v-cart-row__img i { color: var(--v-muted-2); font-size: 1.5rem; }
.v-cart-row__body strong { display: block; font-family: var(--v-font-serif); font-weight: 600; }
.v-cart-row__body small { color: var(--v-muted); font-size: .82rem; }
.v-cart-row__total { font-weight: 700; }
.v-cart-row__rm {
  background: transparent; border: 0;
  color: var(--v-muted); padding: 6px;
  cursor: pointer; transition: color .2s ease;
}
.v-cart-row__rm:hover { color: var(--v-danger); }

.v-cart-summary {
  background: var(--v-surface);
  border-radius: var(--v-r);
  padding: 24px;
  border: 1px solid var(--v-line);
}
.v-cart-summary h5 {
  font-family: var(--v-font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 14px;
}

/* Wallet option */
.v-wallet-opt {
  display: block;
  padding: 14px;
  border: 1px solid var(--v-line);
  border-radius: var(--v-r);
  background: #fff;
  margin: 8px 0 14px;
  cursor: pointer;
}
.v-wallet-opt input { margin-right: 8px; vertical-align: middle; }
.v-wallet-opt__title { font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.v-wallet-opt__bal { display: block; font-size: .82rem; color: var(--v-muted); margin-top: 4px; }

/* ─── Wallet card (minimal credit-card aesthetic) ─── */

/* Stat tiles row */
.v-wallet-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0;
}
@media (max-width: 720px) {
  .v-wallet-stats { grid-template-columns: 1fr; }
}
.v-wstat {
  background: #fff;
  border: 1px solid var(--v-line, #ebebeb);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  transition: border-color .15s ease, transform .15s ease;
}
.v-wstat:hover {
  border-color: var(--v-ink, #0b0b0c);
  transform: translateY(-1px);
}
.v-wstat i {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--v-surface, #f7f7f7);
  display: grid; place-items: center;
  color: var(--v-earth, #8a6a3a);
  font-size: 1.05rem;
}
.v-wstat small {
  display: block;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--v-muted, #6f6f72);
  font-weight: 600;
}
.v-wstat strong {
  display: block;
  font-family: var(--v-font-serif, "Fraunces", serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--v-ink, #0b0b0c);
  margin-top: 2px;
}

/* Transactions card (single container, separators between rows) */
.v-wtx-card {
  background: #fff;
  border: 1px solid var(--v-line, #ebebeb);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 16px;
}
.v-wtx-card__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--v-line, #ebebeb);
}
.v-wtx-card__head h5 {
  margin: 0;
  font-family: var(--v-font-serif, "Fraunces", serif);
  font-size: 1.05rem;
  font-weight: 700;
}
.v-wtx-card__count {
  background: var(--v-surface, #f7f7f7);
  color: var(--v-muted, #6f6f72);
  font-size: .75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
}

.v-wallet-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1.586 / 1;
  border-radius: 20px;
  padding: 24px 26px;
  overflow: hidden;
  color: #f3ead9;
  background:
    radial-gradient(140% 90% at 100% 0%, rgba(217,176,108,.22), transparent 55%),
    linear-gradient(135deg, #0a0a0c 0%, #161616 50%, #2a1d0a 100%);
  box-shadow:
    0 26px 50px -26px rgba(11,11,12,.6),
    0 10px 22px -12px rgba(11,11,12,.4),
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 0 0 1px rgba(217,176,108,.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}
.v-wallet-card::before {
  /* subtle diagonal sheen */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(118deg, rgba(255,255,255,0) 38%, rgba(255,225,170,.07) 50%, rgba(255,255,255,0) 62%);
  pointer-events: none;
}
.v-wallet-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 32px 60px -26px rgba(11,11,12,.65),
    0 14px 26px -12px rgba(11,11,12,.45),
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 0 0 1px rgba(217,176,108,.2);
}
.v-wallet-card__monogram {
  position: absolute;
  top: 20px; left: 24px;
  font-family: var(--v-font-serif, "Fraunces", serif);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(217,176,108,.32);
  letter-spacing: 0;
  user-select: none;
  z-index: 1;
}
.v-wallet-card__brand {
  position: absolute;
  top: 24px; right: 26px;
  font-size: .64rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(217,176,108,.85);
  z-index: 1;
}
.v-wallet-card__line {
  position: absolute;
  left: 26px; right: 26px;
  bottom: 78px;
  height: 1px;
  background: linear-gradient(90deg, rgba(217,176,108,.45), rgba(217,176,108,0));
  pointer-events: none;
  z-index: 1;
}
.v-wallet-card__body {
  position: relative;
  z-index: 1;
}
.v-wallet-card__body { position: relative; z-index: 1; }
.v-wallet-card__label {
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(217,176,108,.7);
  margin-bottom: 6px;
}
.v-wallet-card__balance {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.v-wallet-card__amount {
  font-family: var(--v-font-serif, "Fraunces", serif);
  font-size: clamp(1.9rem, 4.4vw, 2.4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.01em;
  color: #f7efde;
  text-shadow: 0 1px 1px rgba(0,0,0,.35);
}
.v-wallet-card__cur {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(217,176,108,.9);
}
@media (max-width: 520px) {
  .v-wallet-card { padding: 18px 20px; border-radius: 16px; }
  .v-wallet-card__monogram { top: 14px; left: 18px; font-size: 1.4rem; }
  .v-wallet-card__brand { top: 18px; right: 20px; font-size: .58rem; letter-spacing: .22em; }
}

.v-wallet-hints { margin: 14px 0; }
.v-wallet-hint {
  display: flex; align-items: center; gap: 10px;
  background: var(--v-surface);
  padding: 12px 16px;
  border-radius: var(--v-r);
  font-size: .88rem;
  color: var(--v-ink-soft);
  border: 1px solid var(--v-line);
}
.v-wallet-hint i { color: var(--v-earth); }

.v-wtx-list { list-style: none; margin: 0; padding: 0; }
.v-wtx {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--v-line, #ebebeb);
  transition: background .15s ease;
}
.v-wtx:last-child { border-bottom: 0; }
.v-wtx:hover { background: var(--v-surface, #f7f7f7); }
.v-wtx__ic {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--v-surface, #f7f7f7);
  display: grid; place-items: center;
  font-size: 1.05rem;
}
.v-wtx__body strong { display: block; font-size: .95rem; font-weight: 600; color: var(--v-ink, #0b0b0c); }
.v-wtx__body small { display: block; color: var(--v-muted, #6f6f72); font-size: .78rem; margin-top: 2px; }
.v-wtx__amount {
  font-family: var(--v-font-serif, "Fraunces", serif);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -.01em;
}
.v-wtx__amount.is-pos { color: var(--v-success); }
.v-wtx__amount.is-neg { color: var(--v-ink, #0b0b0c); }
.v-wtx--earn .v-wtx__ic { background: #e9f4ee; color: var(--v-success); }
.v-wtx--redeem .v-wtx__ic { background: var(--v-surface-2); color: var(--v-earth); }
.v-wtx--adjust .v-wtx__ic { background: var(--v-surface); color: var(--v-muted); }
.v-wtx--expire .v-wtx__ic { background: #fbf1f1; color: var(--v-danger); }

/* ─── Account nav ─── */
.v-acct-nav {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--v-surface);
  border-radius: var(--v-r);
  padding: 14px;
  border: 1px solid var(--v-line);
}
@media (max-width: 991.98px) {
  .v-acct-nav {
    flex-direction: row;
    overflow-x: auto;
    padding: 8px;
    scrollbar-width: none;
  }
  .v-acct-nav::-webkit-scrollbar { display: none; }
}
.v-acct-nav__link {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .7rem .9rem;
  border-radius: var(--v-r-sm);
  font-size: .9rem;
  font-weight: 600;
  color: var(--v-ink);
  white-space: nowrap;
  transition: all .2s ease;
}
.v-acct-nav__link:hover { background: #fff; color: var(--v-ink); }
.v-acct-nav__link.is-active {
  background: var(--v-ink); color: #fff;
}

.v-form { display: flex; flex-direction: column; gap: 14px; }
.v-form label { display: flex; flex-direction: column; gap: 6px; font-size: .85rem; color: var(--v-ink); font-weight: 500; }
.v-form label span { font-size: .78rem; color: var(--v-muted); font-weight: 600; letter-spacing: .03em; }

/* ─── Orders ─── */
.v-order-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--v-line);
  border-radius: var(--v-r);
  transition: all .2s ease;
}
.v-order-row:hover { border-color: var(--v-ink); transform: translateY(-1px); box-shadow: var(--v-sh-2); }
.v-order-status {
  padding: .3rem .65rem;
  border-radius: var(--v-r-pill);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--v-surface);
  color: var(--v-ink-soft);
  border: 1px solid var(--v-line);
}
.v-order-status--delivered { background: #e9f4ee; color: var(--v-success); border-color: #cfe5d9; }
.v-order-status--cancelled { background: #fbf1f1; color: var(--v-danger); border-color: #efd6d6; }
.v-order-status--preparing,
.v-order-status--processing,
.v-order-status--confirmed { background: var(--v-surface-2); color: var(--v-earth); border-color: var(--v-beige-soft); }

.v-stars-input { display: inline-flex; gap: 4px; }
.v-star { background: transparent; border: 0; cursor: pointer; padding: 4px; color: var(--v-earth); font-size: 1.15rem; }

/* ─── Auth ─── */
.v-authwrap {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - var(--v-nav-h));
  gap: 0;
}
@media (min-width: 992px) {
  .v-authwrap { grid-template-columns: 1fr 1fr; }
}
.v-authcard {
  padding: 48px 24px;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
  display: flex; flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) { .v-authcard { padding: 64px 40px; } }
.v-authcard .v-brand { margin-bottom: 32px; }
.v-authcard h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: .25rem; }
.v-authcard p { color: var(--v-muted); margin-bottom: 24px; }
.v-auth__sep {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0;
  color: var(--v-muted);
  font-size: .8rem;
}
.v-auth__sep::before, .v-auth__sep::after {
  content: ""; flex: 1; height: 1px; background: var(--v-line);
}
.v-authside {
  display: none;
  position: relative;
  /* Royalty-free Unsplash image, stored locally for reliability. */
  background:
    linear-gradient(135deg, rgba(11,11,12,.55) 0%, rgba(11,11,12,.15) 55%, rgba(11,11,12,.55) 100%),
    url('/img/auth/login.jpg') center/cover no-repeat;
  padding: 64px;
  align-items: flex-end;
  overflow: hidden;
  min-height: 600px;
}
@media (min-width: 992px) {
  .v-authside { display: flex; }
}
.v-authside--register {
  background:
    linear-gradient(135deg, rgba(11,11,12,.6) 0%, rgba(11,11,12,.2) 55%, rgba(11,11,12,.6) 100%),
    url('/img/auth/register.jpg') center/cover no-repeat;
}
.v-authside > div {
  position: relative; z-index: 2;
  max-width: 460px;
  color: #fff;
}
.v-authside h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0 0 1rem;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.v-authside p { color: rgba(255,255,255,.85); }
.v-authside .v-brand__text { color: #fff; }
.v-authside .v-eyebrow {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ─── Footer ─── */
.v-footer {
  background: var(--v-ink);
  color: rgba(255,255,255,.7);
  padding: 80px 0 32px;
  margin-top: 96px;
}
.v-footer h6 {
  font-family: var(--v-font-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.v-footer a { color: rgba(255,255,255,.7); font-size: .9rem; }
.v-footer a:hover { color: #fff; }
.v-footer ul li { margin-bottom: 10px; }
.v-footer__tag { color: rgba(255,255,255,.6); margin: 16px 0 24px; max-width: 320px; }

.v-socials { display: flex; gap: 10px; }
.v-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: grid; place-items: center;
  transition: all .2s ease;
}
.v-socials a:hover { background: var(--v-beige); border-color: var(--v-beige); color: var(--v-ink); transform: translateY(-2px); }

.v-storebtn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-radius: var(--v-r);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff !important;
}
.v-storebtn i { font-size: 1.5rem; }
.v-storebtn small { display: block; font-size: .65rem; opacity: .7; letter-spacing: .08em; text-transform: uppercase; }
.v-storebtn strong { display: block; font-size: .9rem; }
.v-storebtn:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.3); }
.v-storebtn--sm { padding: 8px 12px; }

.v-payments { display: flex; gap: 8px; flex-wrap: wrap; }
.v-pay {
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  color: rgba(255,255,255,.85);
}

/* ─── Toast ─── */
.v-toast-host { position: fixed; bottom: 90px; right: 20px; z-index: 1080; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
@media (min-width: 992px) { .v-toast-host { bottom: 24px; } }
.v-toast {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: var(--v-ink);
  color: #fff;
  border-radius: var(--v-r-pill);
  font-size: .88rem; font-weight: 600;
  box-shadow: var(--v-sh-3);
  transform: translateY(20px); opacity: 0;
  transition: all .25s ease;
}
.v-toast.is-in { transform: none; opacity: 1; }
.v-toast.is-out { transform: translateY(20px); opacity: 0; }
.v-toast i { color: var(--v-beige); }

/* ─── Page loader ─── */
/* ─── Category strip (Zara/Trendyol-style horizontal nav under header) ─── */
.v-catstrip {
  border-top: 1px solid var(--v-line, #ebebeb);
  border-bottom: 1px solid var(--v-line, #ebebeb);
  background: #fff;
}
.v-catstrip__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.v-catstrip__inner::-webkit-scrollbar { display: none; }
.v-catstrip__link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 2px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--v-ink, #0b0b0c);
  text-decoration: none;
  position: relative;
  transition: color .15s ease;
}
.v-catstrip__link:hover { color: var(--v-earth, #8a6a3a); }
.v-catstrip__link.is-active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--v-ink, #0b0b0c);
}
@media (max-width: 720px) {
  .v-catstrip__inner { padding: 0 16px; gap: 20px; }
  .v-catstrip__link  { height: 42px; font-size: .76rem; }
}

/* Centered page loader — polished overlay with backdrop blur + brand ring. */
.v-pageloader {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  background: rgba(20, 14, 8, 0.32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: opacity .22s ease;
}
.v-pageloader.is-visible { opacity: 1; pointer-events: auto; }
.v-pageloader.is-hidden  { opacity: 0; pointer-events: none; }

.v-pageloader__stage {
  position: relative;
  width: 84px; height: 84px;
  display: flex; align-items: center; justify-content: center;
}
.v-pageloader__ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--v-earth, #c9a36a);
  border-right-color: var(--v-earth, #c9a36a);
  animation: vSpin 0.9s cubic-bezier(.55,.15,.45,.85) infinite;
  box-shadow: 0 0 28px rgba(201, 163, 106, 0.25);
}
.v-pageloader__plate {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(160deg, #1c130a, #2b1d0f);
  display: flex; align-items: center; justify-content: center;
  color: var(--v-earth, #c9a36a);
  font-size: 22px;
  box-shadow: inset 0 0 14px rgba(0,0,0,0.35), 0 6px 18px rgba(0,0,0,0.35);
  animation: vPulse 1.8s ease-in-out infinite;
}
.v-pageloader__brand {
  position: absolute;
  bottom: 18%;
  left: 0; right: 0;
  text-align: center;
  color: #fffaf0;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}
.v-pageloader__brand strong { display: block; font-weight: 600; font-size: 15px; }
.v-pageloader__brand small  { opacity: 0.72; font-size: 11.5px; letter-spacing: 1.2px; text-transform: uppercase; }

@keyframes vSpin { to { transform: rotate(360deg); } }
@keyframes vPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(0.94); opacity: 0.82; }
}

/* ─── Search panel ─── */
.v-searchpanel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  width: min(560px, 92vw);
  background: #fff;
  border: 1px solid rgba(11,11,12,.06);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(11,11,12,.04), 0 18px 48px -12px rgba(11,11,12,.18);
  max-height: 64vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 1040;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s ease, transform .2s cubic-bezier(.22,.61,.36,1);
}
.v-searchpanel:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.v-searchpanel::-webkit-scrollbar { width: 8px; }
.v-searchpanel::-webkit-scrollbar-thumb { background: rgba(11,11,12,.12); border-radius: 8px; }
.v-searchpanel::-webkit-scrollbar-thumb:hover { background: rgba(11,11,12,.2); }

.v-sp-sec { padding: 10px 12px 8px; }
.v-sp-sec + .v-sp-sec { border-top: 1px solid rgba(11,11,12,.05); }
.v-sp-head {
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--v-muted);
  font-weight: 600;
  margin-bottom: 8px;
  padding: 0 2px;
}
.v-sp-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.v-sp-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: .32rem .7rem;
  background: transparent;
  border: 1px solid rgba(11,11,12,.1);
  border-radius: 999px;
  font-size: .78rem;
  color: var(--v-ink);
  cursor: pointer;
  transition: background .12s ease, border-color .12s ease, color .12s ease;
}
.v-sp-chip:hover { background: var(--v-ink); border-color: var(--v-ink); color: #fff; }
.v-sp-chip i { font-size: .82rem; opacity: .6; }
.v-sp-chip:hover i { opacity: 1; }
.v-sp-chip img { width: 16px; height: 16px; border-radius: 50%; object-fit: cover; }

.v-sp-list { display: flex; flex-direction: column; gap: 2px; }
.v-sp-item {
  display: grid; grid-template-columns: 40px 1fr auto;
  gap: 12px; align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  position: relative;
  transition: background .12s ease;
}
.v-sp-item:hover { background: rgba(11,11,12,.04); }
.v-sp-item__img {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--v-surface);
  overflow: hidden;
  display: grid; place-items: center;
  border: 1px solid rgba(11,11,12,.05);
}
.v-sp-item__img img { width: 100%; height: 100%; object-fit: cover; }
.v-sp-item__img i { color: var(--v-muted); font-size: 1rem; }
.v-sp-item__body { min-width: 0; }
.v-sp-item__body strong {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--v-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v-sp-item__body small {
  display: block;
  color: var(--v-muted);
  font-size: .72rem;
  margin-top: 1px;
}
.v-sp-item__price {
  font-weight: 600;
  font-size: .84rem;
  color: var(--v-ink);
  white-space: nowrap;
}
.v-sp-empty {
  text-align: center;
  color: var(--v-muted);
  padding: 36px 16px 30px;
  font-size: .85rem;
}
.v-sp-empty i {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 8px;
  opacity: .5;
}

/* Loading shimmer instead of "…" text */
.v-searchpanel__loading {
  position: relative;
  height: 2px;
  margin: 2px 0 0;
  background: rgba(11,11,12,.06);
  border-radius: 2px;
  overflow: hidden;
}
.v-searchpanel__loading::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--v-ink), transparent);
  animation: vSpLoad 1.1s ease-in-out infinite;
  border-radius: 2px;
}
@keyframes vSpLoad {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(280%); }
}

/* ─── Misc ─── */
hr { border: 0; border-top: 1px solid var(--v-line); margin: 1.2rem 0; }

.dropdown-divider { border-top: 1px solid var(--v-line); margin: 6px 0; }
.dropdown-menu { border: 1px solid var(--v-line); border-radius: var(--v-r); box-shadow: var(--v-sh-3); padding: 6px; }

/* ─── Mobile menu drawer ─── */
.v-menubtn {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px;
  background: transparent; border: 0;
  cursor: pointer;
}
@media (min-width: 992px) { .v-menubtn { display: none; } }
.v-menubtn i { font-size: 1.4rem; }

.v-drawer {
  position: fixed; inset: 0;
  z-index: 1050;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.v-drawer.is-open { pointer-events: auto; opacity: 1; }
.v-drawer__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); }
.v-drawer__panel {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: min(86vw, 360px);
  background: #fff;
  padding: 24px;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
  display: flex; flex-direction: column; gap: 12px;
  overflow-y: auto;
}
.v-drawer.is-open .v-drawer__panel { transform: none; }
.v-drawer__close { background: transparent; border: 0; font-size: 1.4rem; align-self: flex-end; cursor: pointer; }
.v-drawer__nav { display: flex; flex-direction: column; gap: 4px; margin-top: 12px; }
.v-drawer__nav a {
  padding: 14px 12px;
  font-size: 1rem; font-weight: 600;
  border-bottom: 1px solid var(--v-line);
  color: var(--v-ink);
}

/* Side bar legacy hide */
.v-side, .v-bubbles, .v-features, .v-side__card, .v-side__promo, .v-side__info { display: none; }

/* Tag / badge legacy compatibility */
.v-pd-options__h { margin-top: 4px; }

/* Row gap helpers retained for bootstrap compatibility */
.row.g-3 > * { padding: 12px; }
.row.g-4 > * { padding: 16px; }

/* Sticky utility */
.is-sticky { position: sticky; top: calc(var(--v-nav-h) + 16px); }

/* ─── Cart drawer (mini-cart) ─── */
.v-cdrawer {
  position: fixed; inset: 0;
  z-index: 1070;
  visibility: hidden;
  opacity: 0;
  transition: opacity .22s ease, visibility .22s linear;
}
.v-cdrawer.is-open { visibility: visible; opacity: 1; }
.v-cdrawer__overlay {
  position: absolute; inset: 0;
  background: rgba(11,11,12,.42);
  /* backdrop-filter is expensive while a sibling is transform-animating —
     a flat translucent layer composites instantly on the GPU. */
}
.v-cdrawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(100vw, 440px);
  background: #fff;
  display: flex; flex-direction: column;
  transform: translate3d(100%, 0, 0);
  transition: transform .28s cubic-bezier(.22, .61, .36, 1);
  box-shadow: -16px 0 32px -16px rgba(0,0,0,.18);
  /* Hint the compositor to put this on its own GPU layer. */
  will-change: transform;
  contain: layout paint;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.v-cdrawer.is-open .v-cdrawer__panel { transform: translate3d(0, 0, 0); }
@media (prefers-reduced-motion: reduce) {
  .v-cdrawer, .v-cdrawer__panel { transition: none !important; }
}
.v-cdrawer__head {
  padding: 20px 22px 14px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--v-line);
}
.v-cdrawer__head h3 { margin: 0; font-size: 1.15rem; display: flex; align-items: center; gap: 6px; }
.v-cdrawer__head h3 small { color: var(--v-muted); font-family: var(--v-font-sans); font-weight: 600; font-size: .82rem; }
.v-cdrawer__close { background: transparent; border: 0; cursor: pointer; font-size: 1.2rem; padding: 6px 8px; border-radius: 50%; color: var(--v-ink); }
.v-cdrawer__close:hover { background: var(--v-surface); }
.v-cdrawer__body {
  flex: 1 1 auto; overflow-y: auto;
  padding: 14px 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.v-cdrawer__loading { display: grid; place-items: center; padding: 60px 0; }
.v-cdrawer__spin {
  width: 32px; height: 32px;
  border: 2px solid var(--v-line);
  border-top-color: var(--v-ink);
  border-radius: 50%;
  animation: vSpin 1s linear infinite;
}
.v-cdrawer__empty {
  text-align: center;
  padding: 50px 14px;
  color: var(--v-muted);
}
.v-cdrawer__empty i { font-size: 2.2rem; display: block; margin-bottom: 14px; color: var(--v-muted-2); }
.v-cdrawer__empty p { margin: 0 0 18px; font-size: .95rem; }
.v-cdrawer__item {
  display: grid; grid-template-columns: 72px 1fr auto;
  gap: 12px; align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--v-line);
}
.v-cdrawer__item:last-child { border-bottom: 0; }
.v-cdrawer__img {
  width: 72px; height: 72px; border-radius: var(--v-r-sm);
  background: var(--v-surface);
  overflow: hidden; display: grid; place-items: center;
}
.v-cdrawer__img img { width: 100%; height: 100%; object-fit: cover; }
.v-cdrawer__img i { color: var(--v-muted-2); font-size: 1.4rem; }
.v-cdrawer__main { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.v-cdrawer__main strong { font-family: var(--v-font-serif); font-weight: 600; font-size: .98rem; line-height: 1.25; }
.v-cdrawer__main small { color: var(--v-muted); font-size: .8rem; }
.v-cdrawer__row { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; gap: 10px; }
.v-cdrawer__qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--v-line); border-radius: var(--v-r-pill);
  overflow: hidden;
}
.v-cdrawer__qty button {
  background: transparent; border: 0; width: 28px; height: 28px; cursor: pointer; color: var(--v-ink);
}
.v-cdrawer__qty button:hover { background: var(--v-surface); }
.v-cdrawer__qty span { padding: 0 10px; font-size: .85rem; font-weight: 600; min-width: 28px; text-align: center; }
.v-cdrawer__line { font-weight: 700; font-size: .92rem; }
.v-cdrawer__rm {
  background: transparent; border: 0; cursor: pointer; color: var(--v-muted);
  padding: 4px 6px; border-radius: 6px;
}
.v-cdrawer__rm:hover { color: var(--v-danger); background: var(--v-surface); }
.v-cdrawer__foot {
  padding: 18px 22px calc(18px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--v-line);
  background: var(--v-surface);
}
.v-cdrawer__sub { display: flex; justify-content: space-between; align-items: baseline; font-size: 1rem; margin-bottom: 4px; }
.v-cdrawer__sub strong { font-family: var(--v-font-serif); font-size: 1.25rem; }
.v-cdrawer__note { display: block; color: var(--v-muted); font-size: .78rem; margin-bottom: 14px; }
.v-cdrawer__cta { display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px; margin-bottom: 12px; }
.v-cdrawer__cta .btn { padding: .85rem 1rem; border-radius: var(--v-r-btn); font-weight: 600; }
.v-cdrawer__trust { display: flex; gap: 14px; justify-content: center; color: var(--v-muted); font-size: .76rem; }
.v-cdrawer__trust i { margin-right: 4px; }

/* ─── Sticky add-to-cart bar (mobile) ─── */
.v-pd-stickybar {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(180%) blur(16px);
  border-top: 1px solid var(--v-line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: none;
  grid-template-columns: auto 1fr;
  gap: 12px; align-items: center;
  z-index: 1035;
  box-shadow: 0 -6px 18px rgba(0,0,0,.06);
}
@media (max-width: 991.98px) {
  .v-pd-stickybar.is-show { display: grid; }
  body.has-pd-stickybar .v-mobnav { display: none; }
}
.v-pd-stickybar__price { font-family: var(--v-font-serif); font-weight: 700; font-size: 1.1rem; }
.v-pd-stickybar__btn { width: 100%; }

/* ─── Swipeable gallery (mobile) ─── */
@media (max-width: 767.98px) {
  .v-pd-gallery__main { display: none; }
  .v-pd-gallery__swipe {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 0; -webkit-overflow-scrolling: touch;
    border-radius: var(--v-r);
    background: var(--v-surface);
  }
  .v-pd-gallery__swipe::-webkit-scrollbar { display: none; }
  .v-pd-gallery__swipe { scrollbar-width: none; }
  .v-pd-gallery__swipe figure {
    flex: 0 0 100%; margin: 0; scroll-snap-align: start;
    aspect-ratio: 1 / 1; display: grid; place-items: center; overflow: hidden;
  }
  .v-pd-gallery__swipe img { width: 100%; height: 100%; object-fit: cover; }
  .v-pd-gallery__dots {
    display: flex; gap: 6px; justify-content: center; margin-top: 10px;
  }
  .v-pd-gallery__dots span {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--v-line-2);
    transition: all .25s ease;
  }
  .v-pd-gallery__dots span.is-active {
    background: var(--v-ink); width: 18px; border-radius: 999px;
  }
  .v-pd-gallery__thumbs { display: none; }
}
@media (min-width: 768px) {
  .v-pd-gallery__swipe, .v-pd-gallery__dots { display: none; }
}

/* ─── Reviews placeholder & star input ─── */
.v-reviews-empty {
  padding: 36px 24px;
  border: 1px dashed var(--v-line-2);
  border-radius: var(--v-r);
  text-align: center;
  background: var(--v-bg);
}
.v-reviews-empty h3 { margin-bottom: 6px; }
.v-reviews-empty p { color: var(--v-muted); margin-bottom: 16px; }
.v-star-input { display: inline-flex; gap: 4px; font-size: 1.4rem; color: var(--v-line-2); }
.v-star-input i { cursor: pointer; transition: color .15s ease; }
.v-star-input i.is-on, .v-star-input:hover i { color: var(--v-beige); }
.v-star-input i:hover ~ i { color: var(--v-line-2); }
.v-star-input__btn { background: transparent; border: 0; padding: 2px 4px; line-height: 1; color: inherit; cursor: pointer; border-radius: 4px; }
.v-star-input__btn:focus-visible { outline: 2px solid var(--v-beige); outline-offset: 2px; }
.v-star-input__btn.is-on i, .v-star-input:hover .v-star-input__btn i { color: var(--v-beige); }
.v-star-input__btn:hover ~ .v-star-input__btn i { color: var(--v-line-2); }

/* ─── FAQ accordion ─── */
.v-faq { display: flex; flex-direction: column; gap: 8px; }
.v-faq__item {
  border: 1px solid var(--v-line);
  border-radius: var(--v-r);
  background: var(--v-bg);
  overflow: hidden;
}
.v-faq__q {
  width: 100%;
  background: transparent; border: 0; cursor: pointer;
  padding: 18px 22px;
  text-align: left; font-weight: 600; font-size: 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  color: var(--v-ink);
}
.v-faq__q i { transition: transform .25s ease; color: var(--v-muted); }
.v-faq__item.is-open .v-faq__q i { transform: rotate(180deg); }
.v-faq__a {
  padding: 0 22px;
  max-height: 0; overflow: hidden;
  color: var(--v-muted);
  transition: max-height .3s ease, padding .3s ease;
}
.v-faq__item.is-open .v-faq__a { padding: 0 22px 18px; max-height: 400px; }

/* ─── Trust badges block ─── */
.v-trust-badges {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--v-line);
  border-radius: var(--v-r);
  background: var(--v-surface);
  margin-top: 1.6rem;
}
.v-trust-badges__item {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; color: var(--v-ink);
}
.v-trust-badges__item i {
  font-size: 1.15rem; color: var(--v-earth);
}
.v-trust-badges__item small { display: block; color: var(--v-muted); font-size: .72rem; }

/* ─── Announcement bar (top strip) ─── */
.v-announce {
  position: relative;
  background: #0b0b0c;
  color: #f6f0e3;
  font-size: .78rem;
  letter-spacing: .04em;
  min-height: 32px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 44px;
  z-index: 1031;
  overflow: hidden;
  transition: opacity .2s ease, transform .2s ease;
}
.v-announce.is-closing { opacity: 0; transform: translateY(-100%); }
.v-announce__track { position: relative; width: 100%; min-height: 32px; }
.v-announce__track > span {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.v-announce__track > span.is-on { opacity: 1; transform: none; pointer-events: auto; }
.v-announce__close {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: transparent; border: 0; color: rgba(246,240,227,.7);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.v-announce__close:hover { background: rgba(255,255,255,.08); color: #fff; }

/* ─── Sticky glassmorphism header on scroll ─── */
.v-header { transition: background-color .2s ease, box-shadow .2s ease, border-color .2s ease; }
.v-header.is-stuck {
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  border-bottom-color: rgba(0,0,0,.08);
}

/* ─── Icon-button wishlist (with badge) ─── */
.v-iconbtn { position: relative; }
.v-iconbtn--wish { align-items: center; justify-content: center; }
.v-iconbtn--wish:hover i { color: var(--v-earth); }
.v-iconbtn__badge {
  position: absolute; top: 4px; right: 4px;
  min-width: 16px; height: 16px;
  border-radius: 999px;
  background: var(--v-earth); color: #fff;
  font-size: .62rem; font-weight: 700;
  display: grid; place-items: center;
  padding: 0 4px;
}
.v-mobnav__wish { position: relative; }
.v-mobnav__wish .v-mobnav__badge { position: absolute; top: 2px; right: calc(50% - 18px); min-width: 16px; height: 16px; border-radius: 999px; background: var(--v-earth); color: #fff; font-size: .62rem; font-weight: 700; display: grid; place-items: center; padding: 0 4px; }

/* ─── Product card hover image switch ─── */
.v-prod__media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f6efe2 0%, #efe6d3 100%);
}
.v-prod__media::after {
  /* warm vignette + subtle gold sheen on hover */
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 110%, rgba(11,11,12,.22), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 1;
}
.v-prod:hover .v-prod__media::after { opacity: 1; }

.v-prod__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22,.61,.36,1), opacity .45s ease, filter .35s ease;
}
.v-prod__img--alt {
  position: absolute; inset: 0;
  opacity: 0;
}
.v-prod:hover .v-prod__img { transform: scale(1.06); filter: saturate(1.08) contrast(1.03); }
/* Only cross-fade when there IS an alt image — otherwise the primary stays
   so the card never flashes white. */
.v-prod__media:has(.v-prod__img--alt):hover .v-prod__img--primary { opacity: 0; }
.v-prod:hover .v-prod__img--alt { opacity: 1; }

.v-prod__fav { position: relative; }
.v-prod__fav.is-on { color: var(--v-danger); background: #fff; }
.v-prod__fav.is-on i { color: var(--v-danger); }
.v-prod__fav-msg {
  position: absolute; right: calc(100% + 8px); top: 50%;
  transform: translate(6px, -50%);
  background: var(--v-ink); color: #fff;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.v-prod__fav-msg.is-show { opacity: 1; transform: translate(0, -50%); }

/* Discount badge */
.v-tag--disc { background: var(--v-danger); color: #fff; }

/* ─── Detail accordions ─── */
.v-pd-accordions {
  margin-top: 48px;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--v-line);
}
.v-acc { border-bottom: 1px solid var(--v-line); }
.v-acc__q {
  width: 100%;
  background: transparent; border: 0; cursor: pointer;
  padding: 22px 0;
  text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--v-font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--v-ink);
  letter-spacing: -.01em;
}
.v-acc__q i { transition: transform .25s ease; color: var(--v-muted); font-size: 1.1rem; }
.v-acc.is-open .v-acc__q i { transform: rotate(180deg); }
.v-acc__a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.22,.61,.36,1);
}
.v-acc__inner { padding: 0 0 22px; color: var(--v-ink-soft); font-size: .95rem; line-height: 1.65; }
.v-acc__inner p { margin-bottom: .8em; }

.v-pd-leadtext { color: var(--v-ink-soft); margin-bottom: 1.4rem; font-size: 1rem; line-height: 1.6; }

/* ─── Cart drawer: shipping progress + recommendations ─── */
.v-cdrawer__ship {
  padding: 14px 22px 16px;
  border-bottom: 1px solid var(--v-line);
  background: var(--v-surface-2);
}
.v-cdrawer__ship-text {
  font-size: .82rem;
  color: var(--v-ink);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.v-cdrawer__ship-text i { color: var(--v-earth); }
.v-cdrawer__ship.is-unlocked .v-cdrawer__ship-text i { color: var(--v-success); }
.v-cdrawer__ship-bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(11,11,12,.08);
  overflow: hidden;
}
.v-cdrawer__ship-bar span {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--v-earth) 0%, var(--v-beige) 100%);
  border-radius: 999px;
  transition: width .5s cubic-bezier(.22,.61,.36,1);
}
.v-cdrawer__ship.is-unlocked .v-cdrawer__ship-bar span {
  background: linear-gradient(90deg, var(--v-success) 0%, #6da987 100%);
}

.v-cdrawer__reco {
  padding: 14px 22px 18px;
  border-top: 1px solid var(--v-line);
  background: #fff;
}
.v-cdrawer__reco-head {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--v-muted);
  margin-bottom: 10px;
}
.v-cdrawer__reco-list { display: flex; flex-direction: column; gap: 8px; }
.v-cdrawer__reco-item {
  display: grid; grid-template-columns: 48px 1fr; gap: 10px;
  align-items: center;
  padding: 6px;
  border-radius: var(--v-r-sm);
  border: 1px solid var(--v-line);
  background: #fff;
  transition: border-color .2s ease, transform .2s ease;
}
.v-cdrawer__reco-item:hover { border-color: var(--v-ink); transform: translateY(-1px); }
.v-cdrawer__reco-img {
  width: 48px; height: 48px;
  border-radius: var(--v-r-sm);
  background: var(--v-surface);
  overflow: hidden;
  display: grid; place-items: center;
}
.v-cdrawer__reco-img img { width: 100%; height: 100%; object-fit: cover; }
.v-cdrawer__reco-img i { color: var(--v-muted-2); }
.v-cdrawer__reco-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.v-cdrawer__reco-body strong {
  font-family: var(--v-font-serif);
  font-weight: 600; font-size: .9rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.v-cdrawer__reco-body span { font-size: .82rem; color: var(--v-ink); font-weight: 700; }

/* ─── Auth polish: larger inputs, editorial layout ─── */
.v-authwrap { background: #fff; }
.v-authcard h1 {
  font-family: var(--v-font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: .35em;
}
.v-authcard .v-form input,
.v-authcard .v-form select {
  height: 52px;
  border-radius: 12px;
  padding: 0 1rem;
  font-size: 1rem;
  border: 1px solid var(--v-line-2);
  background: #fff;
}
.v-authcard .v-form input:focus { border-color: var(--v-ink); box-shadow: 0 0 0 4px rgba(11,11,12,.06); }
.v-authcard .v-form label span { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--v-muted); font-weight: 700; }
.v-authcard .btn-lg { height: 52px; border-radius: 12px; }

/* Luxury minimal checkbox (Remember me etc.) */
.v-check {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
  margin: 0;
  cursor: pointer;
  user-select: none;
  font-size: .85rem;
  color: var(--v-muted, #6f6f72);
  white-space: nowrap;
  line-height: 1;
}
/* Visually hide the native input but keep it focusable & clickable via the label. */
.v-check__inp {
  position: absolute !important;
  opacity: 0;
  width: 18px; height: 18px;
  margin: 0; padding: 0;
  pointer-events: none;
}
.v-check__box {
  width: 18px; height: 18px;
  border: 1.5px solid var(--v-line, #d8d8d8);
  border-radius: 5px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s ease, background .15s ease;
  flex: 0 0 18px;
  box-sizing: border-box;
}
.v-check__box svg {
  opacity: 0;
  transform: scale(.6);
  transition: opacity .12s ease, transform .12s ease;
}
.v-check__inp:checked + .v-check__box {
  background: var(--v-ink, #0b0b0c);
  border-color: var(--v-ink, #0b0b0c);
}
.v-check__inp:checked + .v-check__box svg {
  opacity: 1;
  transform: scale(1);
}
.v-check__inp:focus-visible + .v-check__box {
  outline: 2px solid var(--v-earth, #8a6a3a);
  outline-offset: 2px;
}
.v-check:hover .v-check__box { border-color: var(--v-ink, #0b0b0c); }
.v-check__lbl { line-height: 1; display: inline-block; }

/* ─── Pickup branch dropdown ─── */
.v-pickup { display: flex; flex-direction: column; gap: 10px; }
.v-pickup__select {
  width: 100%;
  height: 48px;
  padding: 0 42px 0 14px;
  border: 1px solid var(--v-line, #ebebeb);
  border-radius: 12px;
  background-color: #fff;
  font-size: .95rem;
  color: var(--v-ink, #0b0b0c);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none' stroke='%230b0b0c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color .15s ease, box-shadow .15s ease;
  cursor: pointer;
}
.v-pickup__select:hover  { border-color: var(--v-ink, #0b0b0c); }
.v-pickup__select:focus  { outline: none; border-color: var(--v-ink, #0b0b0c); box-shadow: 0 0 0 4px rgba(11,11,12,.06); }
.v-pickup__details {
  display: flex; flex-direction: column; gap: 6px;
  padding: 12px 14px;
  background: var(--v-surface, #f7f7f7);
  border-radius: 10px;
  font-size: .85rem;
  color: var(--v-ink-soft, #3f3f44);
}
.v-pickup__details > div { display: flex; align-items: center; gap: 8px; }
.v-pickup__details i { color: var(--v-earth, #8a6a3a); flex: 0 0 16px; }

.v-auth__social-proof {
  font-size: .82rem; color: var(--v-muted);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 18px;
}
.v-auth__social-proof i { color: var(--v-earth); }
.v-auth__social-proof strong { color: var(--v-ink); font-weight: 700; }

/* ─── Social proof inline ─── */
.v-socialproof {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 6px; padding: 6px 12px;
  background: var(--v-surface-2);
  border-radius: var(--v-r-pill);
  font-size: .8rem; color: var(--v-ink);
}
.v-socialproof i { color: var(--v-earth); }

/* ─── Legal pages ─── */
.v-legal {
  max-width: 780px;
  margin: 0 auto;
  color: var(--v-ink, #0b0b0c);
}
.v-legal h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -.01em;
  margin: 0 0 12px;
}
.v-legal__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--v-ink-soft, #3f3f44);
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--v-line, #ebebeb);
}
.v-legal h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: -.005em;
  margin: 40px 0 14px;
  color: var(--v-ink, #0b0b0c);
}
.v-legal h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin: 26px 0 10px;
  color: var(--v-earth, #8a6a3a);
}
.v-legal p,
.v-legal li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--v-ink-soft, #3f3f44);
}
.v-legal p { margin: 0 0 14px; }
.v-legal ul,
.v-legal ol {
  margin: 0 0 18px;
  padding-left: 22px;
}
.v-legal li { margin-bottom: 8px; }
.v-legal a {
  color: var(--v-earth, #8a6a3a);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.v-legal a:hover { color: var(--v-ink, #0b0b0c); }
.v-legal strong { color: var(--v-ink, #0b0b0c); font-weight: 600; }
.v-legal__form {
  background: var(--v-surface, #f7f7f7);
  border: 1px solid var(--v-line, #ebebeb);
  border-radius: 12px;
  padding: 20px 22px;
  margin: 8px 0 18px;
  font-size: .95rem;
}
.v-legal__form p { margin: 0; }
