/** Shopify CDN: Minification failed

Line 17:13 Expected identifier but found whitespace
Line 17:15 Unexpected "{"
Line 17:25 Expected ":"
Line 18:15 Expected identifier but found whitespace
Line 18:17 Unexpected "{"
Line 18:27 Expected ":"

**/
/* =============================================================
   Velle Noir Theme — theme.css
   ============================================================= */

/* ---- Variables ---- */
:root {
  --color-bg: {{ settings.color_background | default: '#ffffff' }};
  --color-text: {{ settings.color_text | default: '#1a1a1a' }};
  --color-text-light: #666666;
  --color-border: #e0e0e0;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-off-white: #f9f9f9;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #e8e8e8;
  --color-gray-300: #d0d0d0;
  --color-gray-500: #999999;
  --color-gray-700: #555555;
  --color-red: #c41230;
  --color-green: #2d7d2d;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --header-height: 58px;
  --announce-height: 38px;
  --radius: 4px;
  --transition: 0.22s ease;
  --max-width: 1200px;
  --side-pad: 20px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }
*:focus-visible { outline: 2px solid var(--color-black); outline-offset: 2px; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ---- Skip link ---- */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--color-black);
  color: var(--color-white);
  padding: 8px 16px;
  font-size: 13px;
  transition: top 0.2s;
}
.skip-to-content:focus { top: 8px; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--color-black);
  color: var(--color-white);
  height: var(--announce-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.announcement-bar__track {
  display: flex;
  white-space: nowrap;
  animation: vn-marquee 22s linear infinite;
}
.announcement-bar__text {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 40px;
}
@keyframes vn-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
}
.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.site-logo__img { height: 34px; width: auto; }
.site-logo__name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.site-nav__link {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-text);
  transition: opacity var(--transition);
  white-space: nowrap;
}
.site-nav__link:hover,
.site-nav__link[aria-current="page"] { opacity: 0.6; }
.header-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.header-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 36px;
  height: 36px;
  transition: opacity var(--transition);
  background: transparent;
  border: none;
  cursor: pointer;
}
.header-icon-btn:hover { opacity: 0.6; }
.header-icon-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 9px;
  font-weight: 600;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.cart-count[data-count="0"] { display: none; }
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 36px; height: 36px;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger-btn span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--color-black);
  transition: var(--transition);
}

/* ============================================================
   OVERLAY
   ============================================================ */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 200;
}
.overlay.is-active { display: block; }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 300px;
  height: 100%;
  background: var(--color-white);
  z-index: 300;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
}
.mobile-menu__logo {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mobile-menu__close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.mobile-menu__links { padding: 24px 0; flex: 1; }
.mobile-menu__link {
  display: block;
  padding: 13px 24px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--color-gray-100);
  transition: background var(--transition);
}
.mobile-menu__link:hover { background: var(--color-gray-100); }
.mobile-menu__bottom {
  padding: 20px 24px;
  border-top: 1px solid var(--color-border);
}
.mobile-menu__footer-link {
  display: block;
  font-size: 13px;
  color: var(--color-text-light);
  padding: 8px 0;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100%;
  background: var(--color-white);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.cart-drawer__close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}
.cart-drawer__empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-text-light);
}
.cart-drawer__empty-icon { font-size: 48px; margin-bottom: 12px; }
.cart-drawer__empty p { font-size: 14px; margin-bottom: 20px; }
.cart-drawer__empty-cta {
  display: inline-block;
  padding: 10px 24px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.cart-item__img {
  width: 80px; height: 100px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-gray-100);
}
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.cart-item__variant { font-size: 12px; color: var(--color-text-light); margin-bottom: 10px; }
.cart-item__row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.cart-item__price { font-size: 14px; font-weight: 600; }
.cart-item__qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.cart-item__qty-btn {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.cart-item__qty-val { font-size: 13px; min-width: 24px; text-align: center; }
.cart-item__remove {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  color: var(--color-text-light);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.cart-drawer__footer {
  border-top: 1px solid var(--color-border);
  padding: 16px 20px;
  flex-shrink: 0;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 14px;
}
.cart-subtotal__label { color: var(--color-text-light); }
.cart-subtotal__value { font-weight: 600; font-size: 16px; }
.cart-note { font-size: 11px; color: var(--color-text-light); margin-bottom: 14px; text-align: center; }
.cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  transition: background var(--transition);
  margin-bottom: 10px;
  border: none;
  cursor: pointer;
}
.cart-checkout-btn:hover { background: #222; }
.cart-continue-btn {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-light);
  text-decoration: underline;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
}
.cart-loading { text-align: center; padding: 20px; color: var(--color-text-light); font-size: 13px; }

/* ============================================================
   SEARCH MODAL
   ============================================================ */
.search-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.97);
  z-index: 400;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
}
.search-modal.is-open { display: flex; }
.search-modal__close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.search-modal__inner { width: 100%; max-width: 600px; padding: 0 20px; }
.search-form {
  display: flex;
  border-bottom: 2px solid var(--color-black);
  padding-bottom: 8px;
  margin-bottom: 20px;
}
.search-form__input {
  flex: 1;
  font-size: 22px;
  font-family: var(--font-heading);
  border: none;
  outline: none;
  background: transparent;
  color: var(--color-text);
}
.search-form__input::placeholder { color: var(--color-gray-300); }
.search-form__submit {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  background: none;
  border: none;
  cursor: pointer;
}
.search-hint { font-size: 13px; color: var(--color-text-light); }
.predictive-results { margin-top: 16px; }
.predictive-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
}
.predictive-result-item:hover { opacity: 0.7; }
.predictive-result-item img {
  width: 48px; height: 60px;
  object-fit: cover;
  background: var(--color-gray-100);
  flex-shrink: 0;
}
.predictive-result-item__name { font-size: 14px; font-weight: 500; }
.predictive-result-item__price { font-size: 13px; color: var(--color-text-light); }

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero-banner {
  position: relative;
  background: var(--color-black);
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-banner__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-banner__overlay {
  position: absolute;
  inset: 0;
}
.hero-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 20px;
  width: 100%;
  color: var(--color-white);
}
.hero-banner__eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
  opacity: 0.85;
}
.hero-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.hero-banner__subtitle {
  font-size: 15px;
  opacity: 0.85;
  max-width: 420px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-banner__btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
  border: none;
  cursor: pointer;
}
.hero-banner__btn:hover { background: var(--color-black); color: var(--color-white); }

/* ============================================================
   FEATURED PRODUCT CARD (home page)
   ============================================================ */
.featured-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px var(--side-pad) 40px;
}
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  color: var(--color-text-light);
  font-size: 14px;
  margin-bottom: 36px;
}
.product-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}
.product-card { display: block; color: inherit; text-decoration: none; }
.product-card__media {
  position: relative;
  overflow: hidden;
  background: var(--color-gray-100);
  aspect-ratio: 2/3;
  margin-bottom: 14px;
}
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 2px;
}
.product-card__info { text-align: center; }
.product-card__name { font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.product-card__price { font-size: 14px; }
.product-card__price s { color: var(--color-text-light); margin-left: 6px; font-weight: 300; }
.product-card__rating {
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.stars { color: #f5a623; letter-spacing: 1px; }

/* ============================================================
   HOME CONTACT
   ============================================================ */
.home-contact {
  background: var(--color-gray-100);
  padding: 60px var(--side-pad);
}
.home-contact__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.home-contact h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 10px;
}
.home-contact p {
  color: var(--color-text-light);
  font-size: 14px;
  margin-bottom: 32px;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--color-text);
}
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-size: 14px;
  color: var(--color-text);
  outline: none;
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--color-black); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  border-radius: var(--radius);
  margin-top: 8px;
}
.form-submit:hover { background: #222; }
.form-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  text-align: center;
  margin-top: 12px;
}
.form-error {
  background: #ffebee;
  border: 1px solid #ef9a9a;
  color: var(--color-red);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  margin-bottom: 12px;
}

/* ============================================================
   PRODUCT PAGE — BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 14px var(--side-pad);
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 12px;
  color: var(--color-text-light);
}
.breadcrumb a { color: var(--color-text-light); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { margin: 0 6px; }

/* ============================================================
   PRODUCT PAGE — MAIN GRID
   ============================================================ */
.product-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-pad) 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* GALLERY */
.product-gallery { position: sticky; top: calc(var(--header-height) + 16px); }
.product-gallery__main {
  position: relative;
  background: var(--color-gray-100);
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 10px;
}
.product-gallery__main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.25s;
}
.gallery-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  transition: background var(--transition);
}
.gallery-arrow:hover { background: var(--color-white); }
.gallery-arrow--prev { left: 10px; }
.gallery-arrow--next { right: 10px; }
.gallery-arrow svg { width: 16px; height: 16px; }
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
}
.gallery-thumb {
  aspect-ratio: 1;
  cursor: pointer;
  overflow: hidden;
  background: var(--color-gray-100);
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.gallery-thumb.is-active { border-color: var(--color-black); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* PRODUCT INFO */
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--color-text-light);
}
.product-rating .stars { font-size: 14px; }
.product-rating__link { text-decoration: underline; }
.product-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}
.product-feature { font-size: 13px; }
.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.product-price__current { font-size: 24px; font-weight: 600; }
.product-price__compare {
  font-size: 16px;
  color: var(--color-text-light);
  text-decoration: line-through;
  font-weight: 300;
}
.product-price__badge {
  background: var(--color-red);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.05em;
}
.product-divider { border: none; border-top: 1px solid var(--color-border); margin: 20px 0; }

/* Selectors */
.selector-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.selector-label__value {
  font-weight: 400;
  text-transform: none;
  margin-left: 6px;
  color: var(--color-text-light);
}
/* Color swatches */
.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.color-swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid var(--color-white);
  outline: 2px solid transparent;
  transition: outline-color var(--transition);
  position: relative;
}
.color-swatch.is-active { outline-color: var(--color-black); }
.color-swatch[data-option-value="White"] { border-color: var(--color-gray-300); }
.color-swatch.is-unavailable {
  opacity: 0.35;
  cursor: not-allowed;
}
.color-swatch.is-unavailable::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, transparent calc(50% - 0.5px), #999 calc(50% - 0.5px), #999 calc(50% + 0.5px), transparent calc(50% + 0.5px));
  border-radius: 50%;
}

/* Size buttons */
.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}
.size-btn {
  min-width: 52px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.size-btn:hover { border-color: var(--color-black); }
.size-btn.is-active { background: var(--color-black); color: var(--color-white); border-color: var(--color-black); }
.size-btn.is-unavailable {
  border-color: var(--color-gray-200);
  color: var(--color-gray-300);
  cursor: not-allowed;
  text-decoration: line-through;
}
.size-guide-link {
  font-size: 12px;
  text-decoration: underline;
  color: var(--color-text-light);
  display: inline-block;
  margin-bottom: 22px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

/* ATC row */
.atc-message { color: var(--color-red); font-size: 12px; margin-bottom: 12px; display: none; }
.atc-message.is-visible { display: block; }
.atc-success { color: var(--color-green); font-size: 12px; margin-bottom: 12px; display: none; }
.atc-success.is-visible { display: block; }
.atc-row { display: flex; gap: 10px; margin-bottom: 16px; align-items: center; }
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}
.qty-btn {
  width: 42px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 300;
  background: transparent; border: none; cursor: pointer;
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--color-gray-100); }
.qty-val {
  width: 46px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 500;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}
.atc-btn {
  flex: 1; height: 50px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border: none; cursor: pointer;
  transition: background var(--transition);
}
.atc-btn:hover { background: #1a1a1a; }
.atc-btn:disabled { background: var(--color-gray-300); cursor: not-allowed; }
.atc-btn.is-loading { opacity: 0.6; cursor: wait; }

/* Trust badges */
.trust-badges {
  display: flex;
  border: 1px solid var(--color-border);
  margin-bottom: 22px;
}
.trust-badge {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  text-align: center;
  border-right: 1px solid var(--color-border);
  gap: 5px;
}
.trust-badge:last-child { border-right: none; }
.trust-badge__icon { font-size: 20px; }
.trust-badge__text { font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; line-height: 1.3; }

/* Inline testimonials */
.testimonials-inline {
  margin: 28px 0;
  background: var(--color-gray-100);
  padding: 22px;
  border-radius: var(--radius);
}
.testimonial-mini {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}
.testimonial-mini:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.testimonial-mini__stars { color: #f5a623; font-size: 13px; margin-bottom: 5px; }
.testimonial-mini__text { font-size: 13px; line-height: 1.55; margin-bottom: 5px; font-style: italic; }
.testimonial-mini__name { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--color-text-light); }

/* ============================================================
   ACCORDIONS
   ============================================================ */
.accordions { margin: 8px 0; }
.accordion { border-top: 1px solid var(--color-border); }
.accordion:last-child { border-bottom: 1px solid var(--color-border); }
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--color-text);
}
.accordion__icon {
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.accordion.is-open .accordion__icon { transform: rotate(45deg); }
.accordion__body {
  display: none;
  padding-bottom: 18px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--color-text-light);
}
.accordion.is-open .accordion__body { display: block; }
.accordion__body img { max-width: 100%; margin-top: 12px; }
.accordion__body a { text-decoration: underline; }

/* ============================================================
   PRODUCT SECTIONS (below fold)
   ============================================================ */

/* Video */
.video-section {
  background: var(--color-black);
  color: var(--color-white);
  padding: 60px var(--side-pad);
  text-align: center;
}
.video-section__heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.video-section__sub {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto; margin-right: auto;
}
.video-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.video-wrap video { width: 100%; border-radius: var(--radius); display: block; }

/* Feature grid */
.feature-grid-section {
  padding: 60px var(--side-pad);
  max-width: var(--max-width);
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
}
.feature-block { text-align: center; }
.feature-block__media {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--color-gray-100);
}
.feature-block__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feature-block:hover .feature-block__media img { transform: scale(1.04); }
.feature-block__name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
.feature-block__desc { font-size: 13px; color: var(--color-text-light); line-height: 1.6; }

/* Body image */
.body-image-section {
  position: relative;
  overflow: hidden;
}
.body-image-section__img { width: 100%; max-height: 700px; object-fit: cover; display: block; }
.body-image-section__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.body-image-section__content {
  color: var(--color-white);
  text-align: center;
  padding: 20px;
}
.body-image-section__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.body-image-section__content p {
  font-size: 15px;
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.65;
}
.body-image-section__btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border: none; cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.body-image-section__btn:hover { background: var(--color-black); color: var(--color-white); }

/* Stats bar */
.stats-bar {
  background: var(--color-black);
  color: var(--color-white);
  padding: 36px var(--side-pad);
}
.stats-bar__inner {
  display: flex;
  max-width: var(--max-width);
  margin: 0 auto;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat:last-child { border-right: none; }
.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }

/* Guarantee */
.guarantee-section {
  background: var(--color-gray-100);
  padding: 56px var(--side-pad);
  text-align: center;
}
.guarantee-section__inner { max-width: 600px; margin: 0 auto; }
.guarantee-badge {
  width: 80px; height: 80px;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
}
.guarantee-section h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 14px;
}
.guarantee-section p { font-size: 14px; color: var(--color-text-light); line-height: 1.7; }

/* Reviews */
.reviews-section { padding: 60px var(--side-pad); }
.reviews-section__inner { max-width: var(--max-width); margin: 0 auto; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 36px;
}
.review-card {
  border: 1px solid var(--color-border);
  padding: 24px;
  border-radius: var(--radius);
}
.review-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-gray-200);
  flex-shrink: 0;
}
.review-card__name { font-size: 14px; font-weight: 600; }
.review-card__loc { font-size: 12px; color: var(--color-text-light); }
.review-card__stars { color: #f5a623; font-size: 14px; margin-bottom: 10px; }
.review-card__text { font-size: 13px; color: var(--color-text-light); line-height: 1.65; font-style: italic; }
.review-card__date { font-size: 11px; color: var(--color-gray-300); margin-top: 12px; }

/* Comparison table */
.comparison-section { padding: 60px var(--side-pad); background: var(--color-gray-100); }
.comparison-section__inner { max-width: 700px; margin: 0 auto; }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th {
  padding: 14px 20px;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
  text-align: center;
}
.comparison-table th.col-us { background: var(--color-black); color: var(--color-white); }
.comparison-table th.col-them { background: var(--color-gray-300); color: var(--color-text); }
.comparison-table th:first-child { text-align: left; background: transparent; }
.comparison-table td {
  padding: 14px 20px;
  font-size: 13px;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  background: var(--color-white);
}
.comparison-table td:first-child { text-align: left; font-weight: 500; }
.comparison-table tbody tr:nth-child(even) td { background: var(--color-off-white); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.icon-check { color: var(--color-green); font-size: 16px; font-weight: 700; }
.icon-cross { color: var(--color-red); font-size: 16px; font-weight: 700; }

/* FAQ */
.faq-section { padding: 60px var(--side-pad); max-width: 740px; margin: 0 auto; }

/* Subscribe */
.subscribe-section {
  background: var(--color-black);
  color: var(--color-white);
  padding: 56px var(--side-pad);
  text-align: center;
}
.subscribe-section h2 {
  font-family: var(--font-heading);
  font-size: 30px; font-weight: 400;
  margin-bottom: 10px; letter-spacing: 0.03em;
}
.subscribe-section p {
  font-size: 14px; opacity: 0.75;
  margin-bottom: 28px; max-width: 420px;
  margin-left: auto; margin-right: auto;
}
.subscribe-form { display: flex; max-width: 420px; margin: 0 auto; }
.subscribe-input {
  flex: 1;
  padding: 13px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  border-right: none;
  color: var(--color-white);
  font-size: 14px;
  outline: none;
}
.subscribe-input::placeholder { color: rgba(255,255,255,0.5); }
.subscribe-btn {
  padding: 13px 24px;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
  border: 1px solid var(--color-white); cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.subscribe-btn:hover { background: var(--color-gray-200); }
.subscribe-success { margin-top: 16px; font-size: 13px; opacity: 0.9; }

/* Why choose us */
.why-section { padding: 56px var(--side-pad); }
.why-section__inner { max-width: var(--max-width); margin: 0 auto; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  text-align: center;
}
.why-item__icon { font-size: 36px; margin-bottom: 14px; }
.why-item__title { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.why-item__desc { font-size: 13px; color: var(--color-text-light); line-height: 1.55; }

/* ============================================================
   STICKY ATC
   ============================================================ */
.sticky-atc {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 14px var(--side-pad);
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}
.sticky-atc.is-visible { transform: translateY(0); }
.sticky-atc__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.sticky-atc__info { flex: 1; }
.sticky-atc__name { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.sticky-atc__price { font-size: 13px; color: var(--color-text-light); }
.sticky-atc__price s { text-decoration: line-through; }
.sticky-atc__btn {
  padding: 12px 28px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
  white-space: nowrap; border: none; cursor: pointer;
  transition: background var(--transition);
}
.sticky-atc__btn:hover { background: #222; }

/* ============================================================
   PAGE TEMPLATES (contact, track, policy)
   ============================================================ */
.page-header {
  text-align: center;
  padding: 48px var(--side-pad) 36px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 48px;
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.page-header p { font-size: 14px; color: var(--color-text-light); max-width: 480px; margin: 0 auto; line-height: 1.65; }
.contact-page-form { max-width: 540px; margin: 0 auto; padding: 0 var(--side-pad) 60px; }
.track-page-inner { max-width: 500px; margin: 0 auto; padding: 0 var(--side-pad) 60px; text-align: center; }
.track-page-inner .form-group { text-align: left; }
.track-page-note { font-size: 12px; color: var(--color-text-light); margin-top: 14px; line-height: 1.6; }
.policy-page { max-width: 680px; margin: 0 auto; padding: 0 var(--side-pad) 60px; }
.policy-page h2 {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 500;
  margin: 28px 0 12px;
}
.policy-page p { font-size: 14px; color: var(--color-text-light); line-height: 1.75; margin-bottom: 16px; }
.policy-page ul { list-style: disc; padding-left: 20px; margin-bottom: 16px; }
.policy-page li { font-size: 14px; color: var(--color-text-light); line-height: 1.75; margin-bottom: 6px; }
.policy-page a { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-black);
  color: rgba(255,255,255,0.75);
  padding: 48px var(--side-pad) 28px;
}
.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand__logo {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 12px;
}
.footer-brand__desc { font-size: 13px; line-height: 1.65; max-width: 220px; }
.footer-col h4 {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--color-white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-bottom__copy { font-size: 12px; }
.footer-payments { display: flex; gap: 8px; }
.payment-icon {
  background: rgba(255,255,255,0.1);
  border-radius: 3px; padding: 3px 7px;
  font-size: 10px; letter-spacing: 0.05em;
  font-weight: 600; color: rgba(255,255,255,0.7);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .site-nav { display: none; }
  .hamburger-btn { display: flex !important; }

  .product-main { grid-template-columns: 1fr; gap: 24px; }
  .product-gallery { position: static; }
  .product-gallery__thumbs { grid-template-columns: repeat(8,1fr); }

  .feature-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .stats-bar__inner { flex-wrap: wrap; }
  .stat { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 18px 0; }
  .stat:last-child { border-bottom: none; }
  .comparison-table { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }
}

@media (max-width: 600px) {
  :root { --side-pad: 16px; }
  .feature-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stats-bar__inner { flex-direction: column; }
  .stat { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .product-gallery__thumbs { grid-template-columns: repeat(4,1fr); }
  .trust-badges { flex-wrap: wrap; }
  .trust-badge { min-width: 33%; }
  .subscribe-form { flex-direction: column; }
  .subscribe-input { border-right: 1px solid rgba(255,255,255,0.3); border-bottom: none; }
  .sticky-atc__inner { gap: 10px; }
  .comparison-table th:first-child, .comparison-table td:first-child { max-width: 120px; font-size: 12px; }
}

@media (min-width: 901px) {
  .hamburger-btn { display: none !important; }
}
