/*==================================================================
  VESTRA — Theme Layer
  ------------------------------------------------------------------
  Loaded after util.css + main.css. Owns the design tokens that
  main.css now references, then re-skins the components on top.
==================================================================*/


/*//////////////////////////////////////////////////////////////////
[ 1. Design tokens ]*/
:root {
  /* --- Brand: warm clay against a warm ink ------------------- */
  --c-brand:        #c25a38;
  --c-brand-ink:    #a8452a;  /* passes AA on white for body copy */
  --c-brand-deep:   #8c3720;
  --c-brand-soft:   #f7e9e3;
  --c-brand-veil:   rgba(23, 19, 15, 0.58);
  --c-brand-veil-0: rgba(23, 19, 15, 0);

  --c-gold:         #c79a3f;
  --c-rose:         #c0334a;
  --c-sale:         #b5321f;

  /* --- Warm ink ramp ----------------------------------------- */
  --c-ink-900: #17130f;
  --c-ink-800: #241e18;
  --c-ink-700: #453c33;
  --c-ink-600: #5c5248;
  --c-ink-500: #837868;
  --c-ink-450: #938878;
  --c-ink-400: #a69b8b;
  --c-ink-350: #b3a899;
  --c-ink-300: #cfc6b8;

  /* --- Surfaces & lines -------------------------------------- */
  --c-sand-50:     #faf7f2;
  --c-sand-100:    #f4efe7;
  --c-line:        #e7e0d5;
  --c-line-strong: #d8cfc1;

  /* --- Type ------------------------------------------------- */
  --f-display: PlayfairDisplay-Bold, 'Playfair Display', Georgia, serif;
  --f-display-reg: PlayfairDisplay-Regular, 'Playfair Display', Georgia, serif;
  --f-sans: Poppins-Regular, 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --f-sans-med: Poppins-Medium, 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --f-label: Montserrat-Bold, 'Montserrat', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* --- Elevation: warm-tinted, never pure black ------------- */
  --sh-xs: 0 1px 2px rgba(23, 19, 15, .05);
  --sh-sm: 0 2px 8px rgba(23, 19, 15, .06);
  --sh-md: 0 8px 24px -6px rgba(23, 19, 15, .12), 0 2px 6px rgba(23, 19, 15, .05);
  --sh-lg: 0 18px 44px -12px rgba(23, 19, 15, .18), 0 4px 12px rgba(23, 19, 15, .06);
  --sh-brand: 0 10px 28px -8px rgba(194, 90, 56, .45);

  /* --- Geometry --------------------------------------------- */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* --- Motion ----------------------------------------------- */
  --e-out: cubic-bezier(.22, .61, .36, 1);
  --e-inout: cubic-bezier(.65, .05, .36, 1);
  --e-spring: cubic-bezier(.34, 1.56, .64, 1);
  --t-fast: .18s;
  --t-mid: .34s;
  --t-slow: .6s;

  --header-h: 74px;
}


/*//////////////////////////////////////////////////////////////////
[ 2. Base ]*/
html { scroll-behavior: smooth; }

body {
  background-color: var(--c-sand-50);
  color: var(--c-ink-700);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Warm the generic white surfaces so the page reads as paper, not screen. */
.bg0 { background-color: #fff; }
.bg6, .bg8 { background-color: var(--c-sand-100); }

::selection { background: var(--c-brand); color: #fff; }

img { max-width: 100%; }

/* Fade images in as they decode rather than snapping in row by row. */
img[loading="lazy"] {
  animation: vs-img-in var(--t-slow) var(--e-out) both;
}
@keyframes vs-img-in { from { opacity: 0; } to { opacity: 1; } }

/* --- Scrollbar ---------------------------------------------- */
* { scrollbar-width: thin; scrollbar-color: var(--c-line-strong) transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--c-sand-100); }
::-webkit-scrollbar-thumb {
  background: var(--c-line-strong);
  border-radius: var(--r-pill);
  border: 2px solid var(--c-sand-100);
}
::-webkit-scrollbar-thumb:hover { background: var(--c-ink-400); }


/*//////////////////////////////////////////////////////////////////
[ 3. Accessibility ]*/
.vs-skip {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 2000;
  padding: 12px 22px;
  background: var(--c-ink-900);
  color: #fff;
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: transform var(--t-fast) var(--e-out);
}
.vs-skip:focus { transform: translate(-50%, 0); color: #fff; }

/* Visible ring for keyboard users only — never for mouse clicks. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

.vs-sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/*//////////////////////////////////////////////////////////////////
[ 4. Typography ]*/

/* Editorial display type — the biggest single break from the original,
   which set nearly everything in Poppins. */
.ltext-201, .ltext-202, .ltext-203, .ltext-204,
.mtext-111, .ltext-103, .ltext-105, .ltext-106, .ltext-107 {
  font-family: var(--f-display);
  letter-spacing: -.015em;
}

.ltext-201 {
  font-size: 68px;
  line-height: 1.04;
  text-transform: none;   /* uppercase Playfair loses all its character */
  letter-spacing: -.025em;
}

.ltext-103 {
  font-family: var(--f-display);
  font-size: 40px;
  line-height: 1.14;
  text-transform: none;
  letter-spacing: -.02em;
  color: var(--c-ink-900);
}

.ltext-101, .ltext-102 {
  font-family: var(--f-display-reg);
  letter-spacing: -.01em;
}

/* --- Eyebrow / kicker --------------------------------------- */
.vs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-brand-ink);
}
.vs-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--c-brand);
  border-radius: 2px;
}
.vs-eyebrow--center::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--c-brand);
  border-radius: 2px;
}
.vs-eyebrow--light { color: var(--c-brand-soft); }
.vs-eyebrow--light::before, .vs-eyebrow--light::after { background: var(--c-brand); }

/* --- Section heading block ---------------------------------- */
.vs-sec-head { margin-bottom: 46px; }
.vs-sec-head--center { text-align: center; }
.vs-sec-head--center .vs-eyebrow { justify-content: center; }
.vs-sec-head h2,
.vs-sec-head .vs-h2 {
  font-family: var(--f-display);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -.022em;
  color: var(--c-ink-900);
  margin: 16px 0 0;
}
.vs-sec-head p {
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-ink-600);
  max-width: 56ch;
  margin: 14px 0 0;
}
.vs-sec-head--center p { margin-left: auto; margin-right: auto; }

.vs-lede {
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.8;
  color: var(--c-ink-600);
}


/*//////////////////////////////////////////////////////////////////
[ 5. Buttons ]*/

/* Common shape for the template's button size classes. */
.size-101, .size-102, .size-103, .size-104, .size-105,
.size-107, .size-108, .size-109, .size-116, .size-301 {
  border-radius: var(--r-pill);
}

.bor1, .bor2 { border-radius: var(--r-pill); }

/* Primary: clay fill, ink on hover, with a lift. */
.bg1 {
  background-color: var(--c-brand);
  position: relative;
  overflow: hidden;
}
.bg1.bor1, a.bg1, button.bg1 {
  box-shadow: var(--sh-brand);
  transition: background-color var(--t-mid) var(--e-out),
              box-shadow var(--t-mid) var(--e-out),
              transform var(--t-mid) var(--e-out),
              color var(--t-mid) var(--e-out);
}
.hov-btn1:hover,
.hov-btn2:hover {
  background-color: var(--c-ink-900) !important;
  border-color: var(--c-ink-900) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}
.hov-btn3:hover {
  background-color: var(--c-brand) !important;
  border-color: var(--c-brand) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--sh-brand);
}
.hov-btn1:active, .hov-btn2:active, .hov-btn3:active { transform: translateY(0); }

/* Dark button (bg3 is the ink surface) */
.bg3 { background-color: var(--c-ink-900); }

/* Secondary / outline */
.bg2 {
  background-color: transparent;
  border: 1px solid var(--c-line-strong);
  color: var(--c-ink-900);
}

/* Ghost pill used by the new sections */
.vs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-family: var(--f-label);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t-mid) var(--e-out);
  text-align: center;
}
.vs-btn i { font-size: 15px; transition: transform var(--t-mid) var(--e-out); }
.vs-btn:hover i { transform: translateX(4px); }

.vs-btn--primary {
  background: var(--c-brand);
  color: #fff;
  box-shadow: var(--sh-brand);
}
.vs-btn--primary:hover {
  background: var(--c-ink-900);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}

.vs-btn--ink { background: var(--c-ink-900); color: #fff; }
.vs-btn--ink:hover { background: var(--c-brand); color: #fff; transform: translateY(-2px); box-shadow: var(--sh-brand); }

.vs-btn--outline {
  background: transparent;
  border-color: var(--c-line-strong);
  color: var(--c-ink-900);
}
.vs-btn--outline:hover {
  background: var(--c-ink-900);
  border-color: var(--c-ink-900);
  color: #fff;
  transform: translateY(-2px);
}

.vs-btn--light {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.4);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.vs-btn--light:hover { background: #fff; border-color: #fff; color: var(--c-ink-900); }

/* Text link with an underline that draws in */
.vs-link {
  position: relative;
  display: inline-block;
  font-family: var(--f-label);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-ink-900);
  padding-bottom: 4px;
}
.vs-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--c-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid) var(--e-out);
}
.vs-link:hover { color: var(--c-brand-ink); }
.vs-link:hover::after { transform: scaleX(1); }


/*//////////////////////////////////////////////////////////////////
[ 6. Header ]*/
.top-bar {
  background-color: var(--c-ink-900);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.left-top-bar {
  font-family: var(--f-label);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-sand-100);
}
.right-top-bar a {
  font-family: var(--f-sans);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--c-ink-350);
  border-right: none !important;
  border-left: none !important;
}
.right-top-bar a:hover { color: #fff; }

.wrap-menu-desktop {
  background: rgba(250, 247, 242, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow var(--t-mid) var(--e-out),
              background-color var(--t-mid) var(--e-out);
}
.fix-menu-desktop .wrap-menu-desktop {
  background: rgba(250, 247, 242, .93);
  box-shadow: var(--sh-sm);
}

/* --- Wordmark ------------------------------------------------ */
.vs-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-family: var(--f-display);
  font-size: 27px;
  line-height: 1;
  letter-spacing: .015em;
  color: var(--c-ink-900);
  text-decoration: none;
  transition: color var(--t-fast) var(--e-out);
}
.vs-logo:hover { color: var(--c-brand-ink); }
.vs-logo__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-brand);
  display: inline-block;
  margin-bottom: 2px;
  flex: 0 0 auto;
}
.vs-logo__sub {
  display: block;
  font-family: var(--f-label);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--c-ink-400);
  margin-top: 4px;
}
.logo-mobile .vs-logo { font-size: 23px; }

/* --- Nav ----------------------------------------------------- */
/* inline-block, not inline: an inline box is not a reliable containing block
   for the absolutely-positioned underline below. */
.main-menu > li > a {
  font-family: var(--f-sans-med);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-ink-800);
  position: relative;
  display: inline-block;
}
/* The link box is only text-height + 5px padding, so the rule sits on its
   baseline edge rather than being inset. */
.main-menu > li > a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--c-brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-mid) var(--e-out);
}
.main-menu > li:hover > a::after,
.main-menu > li.active-menu > a::after { transform: scaleX(1); }
.main-menu > li:hover > a,
.main-menu > li.active-menu > a { color: var(--c-brand-ink); }

.main-menu .sub-menu {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 10px;
  overflow: hidden;
}
.main-menu .sub-menu li a {
  font-family: var(--f-sans);
  font-size: 13px;
  border-radius: var(--r-sm);
  color: var(--c-ink-700);
  transition: background-color var(--t-fast) var(--e-out), color var(--t-fast) var(--e-out), padding-left var(--t-fast) var(--e-out);
}
.main-menu .sub-menu li a:hover {
  background: var(--c-sand-100);
  color: var(--c-brand-ink);
  padding-left: 26px;
}

/* Menu badge (data-label1) */
.label1::after {
  background-color: var(--c-brand) !important;
  border-radius: var(--r-pill);
  font-family: var(--f-label);
  font-size: 8px;
  letter-spacing: .1em;
  padding: 0 8px;
  box-shadow: var(--sh-xs);
}

/* --- Header icons -------------------------------------------- */
.icon-header-item {
  font-size: 20px;
  border-radius: 50%;
  transition: color var(--t-fast) var(--e-out), transform var(--t-fast) var(--e-spring);
}
.icon-header-item:hover { transform: translateY(-2px); }
.icon-header-noti::after {
  background-color: var(--c-brand) !important;
  font-family: var(--f-label);
  font-size: 9px;
  border: 2px solid var(--c-sand-50);
  min-width: 19px;
  height: 19px;
  line-height: 15px;
  border-radius: var(--r-pill);
}

.wrap-header-mobile { background-color: var(--c-sand-50); border-bottom: 1px solid var(--c-line); }
.menu-mobile { background-color: var(--c-ink-900); }
.topbar-mobile li { background-color: var(--c-ink-800); }
.main-menu-m > li { border-bottom: 1px solid rgba(255,255,255,.06); }
.main-menu-m li a {
  font-family: var(--f-sans-med);
  font-size: 13.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* --- Search overlay ------------------------------------------ */
.modal-search-header { background-color: rgba(23,19,15,.94); backdrop-filter: blur(8px); }
.wrap-search-header {
  border-bottom: 1px solid rgba(255,255,255,.28);
  transition: border-color var(--t-mid) var(--e-out);
}
.wrap-search-header:focus-within { border-bottom-color: var(--c-brand); }
.wrap-search-header input { font-family: var(--f-display-reg); font-size: 30px; color: #fff; }


/*//////////////////////////////////////////////////////////////////
[ 7. Hero slider ]*/

/* The template pinned this to calc(100vh - 40px), so on every screen size the
   first viewport was hero and nothing else — no cue that the page continues.
   Capping it leaves a sliver of the next section showing. */
.item-slick1 {
  background-position: center;
  background-size: cover;
  height: min(86vh, 820px);
}
@media (max-width: 991px) {
  .item-slick1 { height: min(78vh, 620px) !important; }
}

/* Legible text over photography, without flattening the image. */
.item-slick1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(23,19,15,.72) 0%,
    rgba(23,19,15,.46) 42%,
    rgba(23,19,15,.10) 72%,
    rgba(23,19,15,0) 100%);
  pointer-events: none;
}
.item-slick1 > .container { position: relative; z-index: 2; }

.item-slick1 .ltext-101,
.item-slick1 .ltext-201 { color: #fff !important; }
.item-slick1 .ltext-101 {
  font-family: var(--f-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--c-brand-soft) !important;
}
.item-slick1 .ltext-201 {
  font-size: clamp(38px, 6.4vw, 82px);
  text-shadow: 0 2px 30px rgba(0,0,0,.28);
  max-width: 17ch;
}
.vs-hero-sub {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.88);
  max-width: 44ch;
  margin-bottom: 34px;
}

/* Slider arrows + dots */
.wrap-slick1 .slick-prev, .wrap-slick1 .slick-next,
.arrow-slick1 {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.14) !important;
  border: 1px solid rgba(255,255,255,.34);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff !important;
  transition: all var(--t-mid) var(--e-out);
}
.wrap-slick1 .slick-prev:hover, .wrap-slick1 .slick-next:hover,
.arrow-slick1:hover { background: #fff !important; color: var(--c-ink-900) !important; }

.wrap-slick1-dots li { margin: 0 5px; }
.wrap-slick1-dots li button,
.slick1 .slick-dots li button {
  width: 9px; height: 9px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.45);
  border: none;
  transition: all var(--t-mid) var(--e-out);
}
.wrap-slick1-dots li.slick-active button,
.slick1 .slick-dots li.slick-active button {
  width: 30px;
  background: #fff;
}


/*//////////////////////////////////////////////////////////////////
[ 8. Category blocks (block1) ]*/
.block1 {
  border: none;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--t-mid) var(--e-out), transform var(--t-mid) var(--e-out);
}
.block1:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.block1 img {
  transition: transform 1.1s var(--e-out);
  will-change: transform;
}
.block1:hover img { transform: scale(1.07); }

/* The category shots are cut-outs on near-white, so the scrim only needs to
   cover the caption band — anything higher greys out the whole garment. */
.block1-txt {
  background: linear-gradient(to top,
    rgba(23,19,15,.80) 0%,
    rgba(23,19,15,.44) 26%,
    rgba(23,19,15,.10) 52%,
    rgba(23,19,15,0) 78%) !important;
  justify-content: flex-end !important;
}
.block1-name {
  font-family: var(--f-display);
  font-size: 30px;
  letter-spacing: -.015em;
  color: #fff !important;
}
.block1-info {
  font-family: var(--f-label);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-brand-soft) !important;
  font-size: 10.5px !important;
}
.block1-txt-child2 { border-bottom-color: var(--c-brand); }
.block1-link { font-family: var(--f-label); font-size: 11px; letter-spacing: .16em; }


/*//////////////////////////////////////////////////////////////////
[ 9. Product card (block2) ]*/
.block2 {
  background: #fff;
  border-radius: var(--r-md);
  padding: 12px 12px 18px;
  box-shadow: var(--sh-xs);
  transition: box-shadow var(--t-mid) var(--e-out), transform var(--t-mid) var(--e-out);
  height: 100%;
}
.block2:hover { box-shadow: var(--sh-md); transform: translateY(-5px); }

.block2-pic {
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--c-sand-100);
  aspect-ratio: 3 / 4;
}
.block2-pic > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--e-out);
  will-change: transform;
}
.block2:hover .block2-pic > img { transform: scale(1.06); }

/* Quick-view: a full-width bar that rises out of the image edge. */
.block2-btn {
  left: 12px !important;
  right: 12px;
  bottom: -56px !important;
  transform: none !important;
  width: auto;
  min-width: 0 !important;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.94) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none !important;
  box-shadow: var(--sh-md);
  font-family: var(--f-label);
  font-size: 10.5px;
  letter-spacing: .16em;
  color: var(--c-ink-900) !important;
  height: 44px;
  transition: bottom var(--t-mid) var(--e-out), background-color var(--t-fast) var(--e-out), color var(--t-fast) var(--e-out);
}
.block2-pic:hover .block2-btn,
.block2:hover .block2-btn { bottom: 12px !important; }
.block2-btn:hover { background: var(--c-ink-900) !important; color: #fff !important; }

/* Product meta */
.block2-txt { padding: 0 4px; }
.block2-txt-child1 > a {
  font-family: var(--f-sans-med) !important;
  font-size: 14.5px !important;
  line-height: 1.45 !important;
  color: var(--c-ink-900) !important;
  transition: color var(--t-fast) var(--e-out);
}
.block2-txt-child1 > a:hover { color: var(--c-brand-ink) !important; }
.block2-txt-child1 > span {
  font-family: var(--f-sans-med) !important;
  font-size: 15px !important;
  color: var(--c-brand-ink) !important;
}

/* Struck-through original price */
.vs-was {
  font-family: var(--f-sans);
  font-size: 13px;
  color: var(--c-ink-400);
  text-decoration: line-through;
  margin-left: 8px;
}

/* Wishlist button */
.btn-addwish-b2 {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: var(--c-sand-100);
  transition: background-color var(--t-fast) var(--e-out), transform var(--t-fast) var(--e-spring);
}
.btn-addwish-b2:hover { background: var(--c-brand-soft); transform: scale(1.1); }
.btn-addwish-b2 img { width: 16px; }
.btn-addwish-b2 .icon-heart2 {
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.js-addedwish-b2 { background: var(--c-brand-soft); }

/* --- Badges -------------------------------------------------- */
.vs-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  height: 25px;
  padding: 0 11px;
  border-radius: var(--r-pill);
  font-family: var(--f-label);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--c-ink-900);
  box-shadow: var(--sh-sm);
}
.vs-badge--sale { background: var(--c-sale); }
.vs-badge--new { background: var(--c-brand); }
.vs-badge--soft { background: #fff; color: var(--c-ink-900); }

/* --- Star rating --------------------------------------------- */
.vs-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--c-gold);
  font-size: 12px;
}
.vs-stars span {
  font-family: var(--f-sans);
  font-size: 11.5px;
  color: var(--c-ink-400);
  margin-left: 5px;
}


/*//////////////////////////////////////////////////////////////////
[ 10. Filter bar / tabs ]*/
.filter-tope-group button {
  font-family: var(--f-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--c-ink-500);
  padding: 9px 18px;
  border-radius: var(--r-pill);
  border: 1px solid transparent !important;
  margin-right: 8px !important;
  transition: all var(--t-fast) var(--e-out);
}
.filter-tope-group button:hover { color: var(--c-ink-900); background: var(--c-sand-100); }
.filter-tope-group button.how-active1 {
  color: #fff;
  background: var(--c-ink-900);
  border-color: var(--c-ink-900) !important;
}
/* The original drew an underline pseudo-element on hover — redundant now. */
.hov1::after { display: none !important; }

.size-104, .size-105 {
  border-radius: var(--r-pill);
  font-family: var(--f-label);
  font-size: 10.5px;
  letter-spacing: .13em;
}
.bor4 { border-radius: var(--r-pill); border-color: var(--c-line-strong); }

.wrap-filter { border-radius: var(--r-md); background: var(--c-sand-100) !important; }
.filter-link { font-family: var(--f-sans); font-size: 13.5px; }
.filter-link-active, .filter-link:hover { color: var(--c-brand-ink); }

.bor7 { border-radius: var(--r-pill); }
.hov-tag1:hover { background-color: var(--c-brand) !important; border-color: var(--c-brand) !important; color: #fff !important; }


/*//////////////////////////////////////////////////////////////////
[ 11. Cart panel ]*/
.wrap-header-cart .header-cart {
  background-color: #fff;
  box-shadow: var(--sh-lg);
}
.header-cart-title { border-bottom: 1px solid var(--c-line); }
.header-cart-title span { font-family: var(--f-display); font-size: 23px; letter-spacing: -.01em; }
.header-cart-item { padding-bottom: 14px; border-bottom: 1px solid var(--c-line); }
.header-cart-item-img { border-radius: var(--r-sm); overflow: hidden; }
.header-cart-item-name { font-family: var(--f-sans-med); font-size: 14px; color: var(--c-ink-900); }
.header-cart-item-info { font-family: var(--f-sans); font-size: 13px; color: var(--c-ink-500); }
.header-cart-total {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--c-ink-900);
  border-top: 1px solid var(--c-line);
  padding-top: 20px !important;
}


/*//////////////////////////////////////////////////////////////////
[ 12. Forms ]*/
input, textarea, select, button { font-family: var(--f-sans); }

.bor8 { border-radius: var(--r-pill); border-color: var(--c-line-strong); }
.bor8:focus-within { border-color: var(--c-brand); box-shadow: 0 0 0 3px var(--c-brand-soft); }

.vs-field {
  width: 100%;
  height: 52px;
  padding: 0 20px;
  background: #fff;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-pill);
  font-size: 14px;
  color: var(--c-ink-900);
  transition: border-color var(--t-fast) var(--e-out), box-shadow var(--t-fast) var(--e-out);
}
.vs-field:focus {
  outline: none;
  border-color: var(--c-brand);
  box-shadow: 0 0 0 3px var(--c-brand-soft);
}
.vs-field::placeholder { color: var(--c-ink-400); }
textarea.vs-field { height: auto; padding: 16px 20px; border-radius: var(--r-md); resize: vertical; }

/* select2 skin */
.rs1-select2 .select2-container--default .select2-selection--single { border-radius: var(--r-pill); }
.rs1-select2 .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--c-brand) !important;
}
.select2-dropdown { border-radius: var(--r-md) !important; overflow: hidden; box-shadow: var(--sh-lg); }

/* Quantity stepper */
.wrap-num-product { border-radius: var(--r-pill); overflow: hidden; border: 1px solid var(--c-line-strong); }
.btn-num-product-down, .btn-num-product-up { transition: background-color var(--t-fast) var(--e-out), color var(--t-fast) var(--e-out); }
.btn-num-product-down:hover, .btn-num-product-up:hover { background: var(--c-brand); color: #fff; }


/*//////////////////////////////////////////////////////////////////
[ 13. Footer ]*/
footer.bg3 {
  background-color: var(--c-ink-900);
  background-image:
    radial-gradient(900px 380px at 12% -10%, rgba(194,90,56,.16), transparent 70%),
    radial-gradient(700px 300px at 88% 0%, rgba(199,154,63,.09), transparent 70%);
}
footer h4.stext-301 {
  font-family: var(--f-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
}
footer .stext-107 { font-family: var(--f-sans); font-size: 13.5px; line-height: 1.85; }
footer a.stext-107 { color: var(--c-ink-350); transition: color var(--t-fast) var(--e-out), padding-left var(--t-fast) var(--e-out); }
footer a.stext-107:hover { color: #fff; padding-left: 5px; }

.vs-foot-brand .vs-logo { color: #fff; font-size: 30px; }
.vs-foot-brand .vs-logo__sub { color: var(--c-ink-450); }
.vs-foot-about {
  font-family: var(--f-sans);
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--c-ink-350);
  max-width: 34ch;
  margin-top: 20px;
}

.vs-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  color: var(--c-ink-350);
  font-size: 15px;
  margin-right: 9px;
  transition: all var(--t-fast) var(--e-out);
}
.vs-social:hover {
  background: var(--c-brand);
  border-color: var(--c-brand);
  color: #fff;
  transform: translateY(-3px);
}

/* Newsletter */
.vs-news { position: relative; max-width: 400px; }
.vs-news input {
  width: 100%;
  height: 52px;
  padding: 0 130px 0 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-pill);
  color: #fff;
  font-size: 13.5px;
}
.vs-news input::placeholder { color: var(--c-ink-450); }
.vs-news input:focus {
  outline: none;
  border-color: var(--c-brand);
  background: rgba(255,255,255,.1);
}
.vs-news button {
  position: absolute;
  right: 5px; top: 5px;
  height: 42px;
  padding: 0 22px;
  border: none;
  border-radius: var(--r-pill);
  background: var(--c-brand);
  color: #fff;
  font-family: var(--f-label);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--t-fast) var(--e-out);
}
.vs-news button:hover { background: #fff; color: var(--c-ink-900); }
.vs-news small {
  display: block;
  margin: 12px 0 0 22px;
  font-family: var(--f-sans);
  font-size: 11.5px;
  color: var(--c-ink-450);
}

.vs-foot-bottom {
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.vs-foot-bottom p { font-family: var(--f-sans); font-size: 12.5px; color: var(--c-ink-450); }
.vs-foot-bottom a { color: var(--c-ink-350); }
.vs-foot-bottom a:hover { color: #fff; }
.vs-pay img { height: 22px; width: auto; opacity: .55; transition: opacity var(--t-fast) var(--e-out); }
.vs-pay a:hover img { opacity: 1; }


/*//////////////////////////////////////////////////////////////////
[ 14. Back-to-top ]*/
.btn-back-to-top {
  border: none;
  border-radius: 50%;
  width: 48px; height: 48px;
  background: var(--c-ink-900);
  box-shadow: var(--sh-lg);
  right: 24px; bottom: 24px;
  transition: background-color var(--t-fast) var(--e-out), transform var(--t-fast) var(--e-spring);
}
.btn-back-to-top:hover { background: var(--c-brand); transform: translateY(-4px); }
.symbol-btn-back-to-top { color: #fff; font-size: 22px; }


/*//////////////////////////////////////////////////////////////////
[ 15. New sections ]*/

/* --- 15a. Trust / USP strip ---------------------------------- */
.vs-usp {
  background: #fff;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 40px 0;
}
.vs-usp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.vs-usp__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 6px 24px;
  border-right: 1px solid var(--c-line);
}
.vs-usp__item:last-child { border-right: none; }
.vs-usp__ico {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-brand-soft);
  color: var(--c-brand-ink);
  font-size: 21px;
}
.vs-usp__item h5 {
  font-family: var(--f-label);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--c-ink-900);
  margin: 5px 0 6px;
}
.vs-usp__item p {
  font-family: var(--f-sans);
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--c-ink-500);
  margin: 0;
}

/* --- 15b. Scrolling announcement marquee --------------------- */
.vs-marquee {
  background: var(--c-ink-900);
  color: var(--c-sand-100);
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.vs-marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 46px;
  animation: vs-scroll 34s linear infinite;
  will-change: transform;
}
.vs-marquee:hover .vs-marquee__track { animation-play-state: paused; }
.vs-marquee span {
  font-family: var(--f-display-reg);
  font-size: 21px;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  gap: 46px;
}
.vs-marquee span::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-brand);
  display: inline-block;
}
@keyframes vs-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- 15c. Editorial split ------------------------------------ */
.vs-editorial { background: var(--c-sand-100); overflow: hidden; }
.vs-editorial__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 70px;
}
.vs-editorial__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 5;
}
.vs-editorial__media img { width: 100%; height: 100%; object-fit: cover; }
.vs-editorial__badge {
  position: absolute;
  right: 22px; bottom: 22px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 16px 22px;
  box-shadow: var(--sh-md);
  text-align: center;
}
.vs-editorial__badge strong {
  display: block;
  font-family: var(--f-display);
  font-size: 30px;
  line-height: 1;
  color: var(--c-ink-900);
}
.vs-editorial__badge span {
  font-family: var(--f-label);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-ink-500);
}

/* Numbered value list */
.vs-values { list-style: none; padding: 0; margin: 30px 0 36px; }
.vs-values li {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--c-line-strong);
}
.vs-values li:last-child { border-bottom: 1px solid var(--c-line-strong); }
.vs-values b {
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--c-brand-ink);
  flex: 0 0 30px;
  padding-top: 3px;
}
.vs-values h5 {
  font-family: var(--f-sans-med);
  font-size: 15px;
  color: var(--c-ink-900);
  margin: 0 0 5px;
}
.vs-values p {
  font-family: var(--f-sans);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--c-ink-600);
  margin: 0;
}

/* --- 15d. Testimonials --------------------------------------- */
.vs-quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.vs-quote {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 34px 30px 28px;
  position: relative;
  transition: box-shadow var(--t-mid) var(--e-out), transform var(--t-mid) var(--e-out);
}
.vs-quote:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.vs-quote__mark {
  font-family: var(--f-display);
  font-size: 62px;
  line-height: .6;
  color: var(--c-brand);
  opacity: .22;
}
.vs-quote p {
  font-family: var(--f-sans);
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--c-ink-700);
  margin: 12px 0 24px;
}
.vs-quote__who {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
}
.vs-quote__who img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

/* Only one stock avatar ships with the theme, so three identical faces read as
   fake. Monogram discs are honest and stay on-brand. */
.vs-avatar {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-brand-soft);
  color: var(--c-brand-deep);
  font-family: var(--f-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}
.vs-quote__who strong {
  display: block;
  font-family: var(--f-sans-med);
  font-size: 14px;
  color: var(--c-ink-900);
}
.vs-quote__who span {
  font-family: var(--f-sans);
  font-size: 12px;
  color: var(--c-ink-450);
}

/* --- 15e. Instagram / lookbook grid -------------------------- */
.vs-look__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.vs-look__cell {
  position: relative;
  display: block;
  border-radius: var(--r-sm);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--c-sand-100);
}
.vs-look__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--e-out);
}
.vs-look__cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-brand);
  opacity: 0;
  transition: opacity var(--t-mid) var(--e-out);
}
.vs-look__cell:hover img { transform: scale(1.09); }
.vs-look__cell:hover::after { opacity: .34; }
.vs-look__cell i {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(.6);
  z-index: 2;
  color: #fff;
  font-size: 24px;
  opacity: 0;
  transition: all var(--t-mid) var(--e-spring);
}
.vs-look__cell:hover i { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* --- 15f. Toast --------------------------------------------- */
.vs-toast-host {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 1800;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.vs-toast {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 264px;
  max-width: 360px;
  padding: 14px 18px;
  background: var(--c-ink-900);
  color: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  font-family: var(--f-sans);
  font-size: 13.5px;
  transform: translateY(14px);
  opacity: 0;
  transition: transform var(--t-mid) var(--e-spring), opacity var(--t-mid) var(--e-out);
  pointer-events: auto;
}
.vs-toast.is-in { transform: translateY(0); opacity: 1; }
.vs-toast__ico {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--c-brand);
  font-size: 15px;
}
.vs-toast strong { display: block; font-family: var(--f-sans-med); font-size: 13.5px; }
.vs-toast small { color: var(--c-ink-350); font-size: 12px; }

/* --- 15g. Page hero (inner pages) --------------------------- */
/* The photo is set inline on the element itself, not through a custom property:
   a url() inside a custom property resolves against the stylesheet's base URL
   in Firefox, which pointed these at /css/images/. The scrim does the dimming
   that an opacity layer used to. */
.vs-pagehero {
  position: relative;
  padding: 96px 0 84px;
  background-color: var(--c-ink-900);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.vs-pagehero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(23,19,15,.92) 0%,
    rgba(23,19,15,.82) 45%,
    rgba(23,19,15,.62) 100%);
}
.vs-pagehero > .container { position: relative; z-index: 2; }
.vs-pagehero h1 {
  font-family: var(--f-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.06;
  letter-spacing: -.024em;
  color: #fff;
  margin: 16px 0 0;
}
.vs-pagehero p {
  font-family: var(--f-sans);
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(255,255,255,.76);
  max-width: 56ch;
  margin: 16px 0 0;
}
.vs-crumb {
  font-family: var(--f-sans);
  font-size: 12.5px;
  color: rgba(255,255,255,.6);
  margin-top: 22px;
}
.vs-crumb a { color: rgba(255,255,255,.82); }
.vs-crumb a:hover { color: var(--c-brand-soft); }
.vs-crumb i { margin: 0 9px; font-size: 10px; opacity: .6; }


/*//////////////////////////////////////////////////////////////////
[ 16. Motion — scroll reveal ]*/
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s var(--e-out), transform .72s var(--e-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="zoom"]  { transform: scale(.95); }

/* No-JS and reduced-motion users must still see everything. */
.no-js [data-reveal] { opacity: 1; transform: none; }

/* The hero headline is the page's LCP element but the template gates it behind
   a JS timer, so a script failure leaves a wordless photo. These two rules are
   the safety net; enhance.js also force-reveals if Slick never initialises. */
.no-js .layer-slick1 { visibility: visible !important; }
.layer-slick1.vs-force-visible { visibility: visible !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .vs-marquee__track { animation: none !important; }
  img[loading="lazy"] { animation: none !important; }
}


/*//////////////////////////////////////////////////////////////////
[ 17. Misc component polish ]*/

/* Blog cards */
.blog-item, .vs-post {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: box-shadow var(--t-mid) var(--e-out), transform var(--t-mid) var(--e-out);
}
.blog-item:hover, .vs-post:hover { box-shadow: var(--sh-md); transform: translateY(-5px); }
.hov-img0 { border-radius: var(--r-sm); overflow: hidden; }
.hov-img0 img { transition: transform .9s var(--e-out); }
.hov-img0:hover img { transform: scale(1.06); }

/* Pagination */
.pagination .item-pagination {
  border-radius: 50%;
  font-family: var(--f-sans-med);
  font-size: 13.5px;
  transition: all var(--t-fast) var(--e-out);
}
.pagination .item-pagination:hover,
.pagination .active-pagination {
  background-color: var(--c-ink-900) !important;
  border-color: var(--c-ink-900) !important;
  color: #fff !important;
}

/* Tables (cart) */
.table-shopping-cart { border-radius: var(--r-md); overflow: hidden; }
.table-shopping-cart .table_head { background: var(--c-ink-900); }
.table-shopping-cart .table_head th { color: #fff; font-family: var(--f-label); font-size: 10.5px; letter-spacing: .13em; }
.table-shopping-cart .table_row { transition: background-color var(--t-fast) var(--e-out); }
.table-shopping-cart .table_row:hover { background: var(--c-sand-50); }

/* Quick-view modal */
.wrap-modal1 .overlay-modal1 { background: rgba(23,19,15,.72); backdrop-filter: blur(4px); }
.wrap-modal1 .bg0 { border-radius: var(--r-lg); box-shadow: var(--sh-lg); }

/* Tabs (product detail) */
.tab01 .nav-tabs .nav-link {
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-ink-500);
}
.tab01 .nav-tabs .nav-link.active { color: var(--c-ink-900); }
.tab01 .nav-tabs .nav-link::before { background-color: var(--c-brand) !important; }

/* Accent-tinted section wrapper */
.vs-tint { background: var(--c-sand-100); }
.vs-ink-sec { background: var(--c-ink-900); }
.vs-ink-sec .vs-sec-head h2, .vs-ink-sec .vs-sec-head .vs-h2 { color: #fff; }
.vs-ink-sec .vs-sec-head p { color: rgba(255,255,255,.7); }

/* Sale countdown / stat row */
.vs-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 42px;
}
.vs-stat { text-align: center; }
.vs-stat strong {
  display: block;
  font-family: var(--f-display);
  font-size: 40px;
  line-height: 1;
  color: var(--c-ink-900);
}
.vs-stat span {
  font-family: var(--f-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-ink-500);
}


/*//////////////////////////////////////////////////////////////////
[ 18. Responsive ]*/
@media (max-width: 1199px) {
  .vs-look__grid { grid-template-columns: repeat(4, 1fr); }
  .vs-editorial__grid { gap: 44px; }
}

@media (max-width: 991px) {
  .ltext-201 { font-size: 46px; }
  .ltext-103 { font-size: 32px; }
  .vs-usp__grid { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .vs-usp__item:nth-child(2n) { border-right: none; }
  .vs-editorial__grid { grid-template-columns: 1fr; gap: 40px; }
  .vs-editorial__media { aspect-ratio: 16 / 11; }
  .vs-quotes__grid { grid-template-columns: 1fr; }
  .vs-stats { gap: 16px; }
  .vs-stat strong { font-size: 32px; }
}

@media (max-width: 767px) {
  .ltext-201 { font-size: 36px; }
  .vs-usp__grid { grid-template-columns: 1fr; }
  .vs-usp__item { border-right: none; padding: 6px 0; }
  .vs-look__grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .vs-marquee span { font-size: 17px; }
  .vs-toast-host { left: 14px; right: 14px; bottom: 14px; }
  .vs-toast { min-width: 0; max-width: none; }
  .block2 { padding: 10px 10px 14px; }
  .vs-pagehero { padding: 64px 0 56px; }
}

@media (max-width: 575px) {
  .vs-look__grid { grid-template-columns: repeat(2, 1fr); }
  .vs-quote { padding: 26px 22px 22px; }
}


/*//////////////////////////////////////////////////////////////////
[ 19. Print ]*/
@media print {
  header, footer, .btn-back-to-top, .wrap-header-cart,
  .vs-marquee, .vs-toast-host, .section-slide { display: none !important; }
  body { background: #fff; color: #000; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
