/* ============================================
   VALNESE — Main Stylesheet
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', -apple-system, sans-serif; font-size: 15px; color: #0A0A0A; background: #fff; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --black: #0A0A0A;
  --white: #FFFFFF;
  --off-white: #F7F6F3;
  --light-gray: #EEECEA;
  --mid-gray: #888;
  --border: #E2E0DC;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --nav-height: 70px;
  --bar-height: 40px;
}

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  height: var(--bar-height);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 1001;
  gap: 0;
}
.announcement-bar span { color: rgba(255,255,255,0.35); margin: 0 16px; }

/* Scrolling marquee */
.announcement-bar.ann-scroll { overflow: hidden; justify-content: flex-start; }
.ann-track { overflow: hidden; width: 100%; }
.ann-inner {
  display: inline-flex;
  white-space: nowrap;
  animation: ann-marquee 32s linear infinite;
  will-change: transform;
}
.ann-track:hover .ann-inner { animation-play-state: paused; }
@keyframes ann-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: var(--bar-height);
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}
.header-inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
}
.site-logo { display: flex; align-items: center; }
.site-logo img { height: 38px; width: auto; }
.logo-fallback { font-size: 20px; font-weight: 900; letter-spacing: 0.3em; text-transform: uppercase; }

/* ── Main Nav ── */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
}
.nav-item { position: relative; }
.nav-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  padding: 28px 0;
  display: block;
  white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width 0.3s ease;
}
.nav-item:hover .nav-link::after,
.nav-link.active::after { width: 100%; }

/* ── Header Icons ── */
.header-icons { display: flex; align-items: center; gap: 18px; justify-content: flex-end; }
.header-icon { cursor: pointer; display: flex; align-items: center; justify-content: center; position: relative; }
.header-icon svg { width: 19px; height: 19px; stroke: var(--black); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.cart-badge {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--black);
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
  width: 15px; height: 15px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--black); transition: all 0.3s; }

/* ── Mega Menu ── */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--black);
  padding: 36px 40px;
  display: none;
  gap: 48px;
  min-width: 520px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
  z-index: 998;
}
.nav-item:hover .mega-menu { display: flex; }
.mega-col { min-width: 130px; }
.mega-col h4 {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.mega-col ul { display: flex; flex-direction: column; gap: 9px; }
.mega-col ul li a {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.mega-col ul li a:hover { opacity: 0.4; }
.mega-visual {
  width: 140px;
  flex-shrink: 0;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mega-visual-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
}
.mega-visual span {
  font-size: 9px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1.5px solid transparent;
  font-family: var(--font-sans);
}
.btn-white { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline-white:hover { border-color: var(--white); }
.btn-black { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-black:hover { background: transparent; color: var(--black); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }

/* ── Hero ── */
.hero {
  height: calc(100vh - var(--nav-height) - var(--bar-height));
  min-height: 620px;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #1c1c1c 0%, #0A0A0A 55%, #111 100%);
}
.hero-img-hint {
  position: absolute;
  inset: 32px;
  border: 1px dashed rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-img-hint span {
  font-size: 10px;
  color: rgba(255,255,255,0.08);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 88px;
  max-width: 960px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.5vw, 100px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.hero-title em { font-style: italic; color: rgba(255,255,255,0.55); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Collections Tiles ── */
.collections { display: grid; grid-template-columns: 1fr 1fr; }
.collection-tile {
  position: relative;
  aspect-ratio: 9/11;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.collection-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.collection-tile:nth-child(1) .collection-bg { background: linear-gradient(155deg, #1e1e1e 0%, #0a0a0a 100%); }
.collection-tile:nth-child(2) .collection-bg { background: linear-gradient(155deg, #2a2a2a 0%, #141414 100%); }
.collection-tile:hover .collection-bg { transform: scale(1.04); }
.collection-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.collection-hint span { font-size: 10px; color: rgba(255,255,255,0.06); letter-spacing: 0.15em; text-transform: uppercase; }
.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.0) 55%);
}
.collection-content { position: relative; z-index: 2; padding: 44px; width: 100%; }
.collection-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}
.collection-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.1;
}
.collection-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.collection-link::after { content: '→'; transition: transform 0.25s; }
.collection-tile:hover .collection-link::after { transform: translateX(5px); }

/* ── Features / Made To Order ── */
.features-section {
  padding: 100px 48px;
  max-width: 1440px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.feature-item { text-align: center; }
.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--black); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.feature-title { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px; }
.feature-desc { font-size: 14px; color: var(--mid-gray); line-height: 1.75; }

/* ── Products ── */
.products-section { padding: 80px 48px; background: var(--off-white); }
.products-section .section-header {
  max-width: 1440px;
  margin: 0 auto 48px;
  text-align: left;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.products-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card { cursor: pointer; }
.product-image {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-image-bg { transform: scale(1.05); }
.p-bg-1 { background: linear-gradient(155deg, #1a1a1a, #0d0d0d); }
.p-bg-2 { background: linear-gradient(155deg, #252525, #111); }
.p-bg-3 { background: linear-gradient(155deg, #1e1e1e, #2d2d2d); }
.p-bg-4 { background: linear-gradient(155deg, #161616, #222); }
.p-bg-5 { background: linear-gradient(155deg, #2a2a2a, #0a0a0a); }
.p-bg-6 { background: linear-gradient(155deg, #111, #1c1c1c); }
.p-bg-7 { background: linear-gradient(155deg, #222, #333); }
.p-bg-8 { background: linear-gradient(155deg, #181818, #0d0d0d); }
.product-img-hint {
  position: relative;
  z-index: 1;
  font-size: 9px;
  color: rgba(255,255,255,0.1);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--white);
  color: var(--black);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  z-index: 2;
}
.product-quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,0.92);
  color: var(--white);
  padding: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 3;
}
.product-card:hover .product-quick-add { transform: translateY(0); }

/* Real product photo — sits over gradient bg, same hover zoom */
.product-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
  transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
  display: block;
}
.product-card:hover .product-photo { transform: scale(1.05); }

.product-info { padding: 14px 0 20px; }
.product-collection { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 6px; }
.product-name { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 4px; letter-spacing: 0.01em; }
.product-price { font-size: 13px; font-weight: 500; color: var(--black); }
.product-note { font-size: 11px; color: var(--mid-gray); margin-top: 2px; }

/* ── Brand Story ── */
.brand-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.brand-visual {
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
}
.brand-visual-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #111 0%, #222 50%, #0a0a0a 100%); }
.brand-visual-hint { position: relative; z-index: 1; font-size: 10px; color: rgba(255,255,255,0.1); letter-spacing: 0.15em; text-transform: uppercase; }
.brand-content { display: flex; flex-direction: column; justify-content: center; padding: 88px; background: var(--off-white); }
.brand-content .section-eyebrow { text-align: left; }
.brand-content .section-title { text-align: left; margin-bottom: 24px; font-size: clamp(28px, 3vw, 44px); }
.brand-content p { font-size: 15px; color: #555; line-height: 1.85; margin-bottom: 20px; }

/* ── Newsletter ── */
.newsletter-section { padding: 100px 48px; background: var(--black); text-align: center; }
.newsletter-section .section-eyebrow { color: rgba(255,255,255,0.35); }
.newsletter-section .section-title { color: var(--white); margin-bottom: 40px; }
.newsletter-form { display: flex; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  color: var(--white);
  font-size: 13px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: rgba(255,255,255,0.35); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.25); letter-spacing: 0.06em; }
.newsletter-form button {
  padding: 16px 28px;
  background: var(--white);
  color: var(--black);
  border: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-sans);
  white-space: nowrap;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: #e8e8e8; }

/* ── Footer ── */
.site-footer { background: #080808; color: var(--white); padding: 80px 48px 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid {
  max-width: 1440px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
}
.footer-logo { font-size: 18px; font-weight: 900; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 18px; }
.footer-logo img { height: 32px; width: auto; margin-bottom: 18px; filter: invert(1); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.75; max-width: 260px; margin-bottom: 28px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.social-link:hover { border-color: var(--white); color: var(--white); }
.footer-col h5 { font-size: 9px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-legal { font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 0.05em; }
.footer-legal a { color: rgba(255,255,255,0.35); }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ── Page Hero (interior pages) ── */
.page-hero {
  height: 320px;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding: 52px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background: linear-gradient(155deg, #1a1a1a, #0a0a0a); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); font-weight: 700; color: var(--white); letter-spacing: -0.02em; line-height: 1; }

/* ── Shop Page ── */
.shop-section { padding: 60px 48px; max-width: 1440px; margin: 0 auto; }
.shop-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.shop-filters { display: flex; gap: 28px; flex-wrap: wrap; }
.filter-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
  border-bottom: 1.5px solid transparent;
  font-family: var(--font-sans);
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover { color: var(--black); border-bottom-color: var(--black); }
.shop-count { font-size: 12px; color: var(--mid-gray); }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── About Page ── */
.about-intro {
  max-width: 960px;
  margin: 0 auto;
  padding: 100px 48px;
  text-align: center;
}
.about-intro .section-title { margin-bottom: 28px; font-size: clamp(36px, 5vw, 64px); }
.about-intro p { font-size: 17px; color: #555; line-height: 1.85; margin-bottom: 16px; max-width: 680px; margin-left: auto; margin-right: auto; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.about-visual {
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #1a1a1a, #0a0a0a); }
.about-visual-hint { position: relative; z-index: 1; font-size: 10px; color: rgba(255,255,255,0.1); letter-spacing: 0.15em; text-transform: uppercase; }
.about-text { padding: 80px; display: flex; flex-direction: column; justify-content: center; background: var(--off-white); }
.about-text .section-title { text-align: left; font-size: clamp(28px, 3vw, 42px); margin-bottom: 24px; }
.about-text p { font-size: 15px; color: #555; line-height: 1.85; margin-bottom: 16px; }
.values-section { padding: 100px 48px; background: var(--off-white); }
.values-grid {
  max-width: 1200px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card { padding: 40px 32px; background: var(--white); border-top: 2px solid var(--black); }
.value-num { font-family: var(--font-display); font-size: 52px; font-weight: 700; color: var(--light-gray); margin-bottom: 16px; line-height: 1; }
.value-title { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
.value-desc { font-size: 13px; color: var(--mid-gray); line-height: 1.7; }

/* ── Contact Page ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; max-width: 1440px; margin: 0 auto; }
.contact-left { padding: 88px; background: var(--off-white); display: flex; flex-direction: column; justify-content: center; }
.contact-left .section-title { text-align: left; font-size: clamp(28px, 3vw, 44px); margin-bottom: 20px; }
.contact-left > p { font-size: 15px; color: #555; line-height: 1.85; margin-bottom: 48px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail h5 { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 5px; }
.contact-detail p { font-size: 14px; }
.contact-right { padding: 88px; display: flex; flex-direction: column; justify-content: center; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid-gray); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid var(--border);
  background: var(--off-white);
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--black); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 36px;
}
.form-note { font-size: 11px; color: var(--mid-gray); line-height: 1.6; }

/* ── Mobile Nav ── */
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 1098; }
.mobile-overlay.open { display: block; }
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(380px, 100vw);
  height: 100vh;
  background: var(--white);
  z-index: 1099;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { right: 0; }
.mobile-nav-header {
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-header .logo-text { font-size: 16px; font-weight: 900; letter-spacing: 0.28em; }
.close-btn { background: none; border: none; font-size: 26px; cursor: pointer; color: var(--black); line-height: 1; padding: 0; font-weight: 300; }
.mobile-nav-body { padding: 24px 28px; flex: 1; }
.m-nav-item { border-bottom: 1px solid var(--border); }
.m-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
  color: var(--black);
}
.m-arrow { font-size: 20px; font-weight: 300; transition: transform 0.2s; }
.m-nav-toggle.open .m-arrow { transform: rotate(45deg); }
.m-sub { display: none; padding-bottom: 16px; }
.m-sub.open { display: block; }
.m-sub-group { margin-bottom: 20px; }
.m-sub-group h5 { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 8px; padding-left: 12px; }
.m-sub-group ul li a { display: block; padding: 7px 12px; font-size: 13px; color: var(--black); }
.m-simple-link { display: block; padding: 16px 0; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; border-bottom: 1px solid var(--border); }
.m-cta { margin-top: 28px; }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .products-grid, .shop-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-left, .contact-right { padding: 64px; }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { grid-template-columns: 1fr auto; }
  .hero-content { padding: 0 40px 60px; }
  .features-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .brand-section, .about-split { grid-template-columns: 1fr; }
  .brand-content { padding: 64px 48px; }
  .about-text { padding: 64px 48px; }
  .products-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 60px 40px; }
}
@media (max-width: 640px) {
  :root { --nav-height: 60px; --bar-height: 36px; }
  .header-inner { padding: 0 20px; }
  .hero-content { padding: 0 24px 48px; }
  .collections { grid-template-columns: 1fr; }
  .collection-tile { aspect-ratio: 4/3; }
  .collection-content { padding: 32px; }
  .features-section, .products-section, .shop-section, .about-intro, .values-section { padding: 60px 20px; }
  .brand-content, .about-text, .contact-left, .contact-right { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .site-footer { padding: 60px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid rgba(255,255,255,0.12); border-bottom: none; }
  .newsletter-section { padding: 72px 24px; }
  .products-grid, .shop-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .page-hero { padding: 36px 24px; height: 220px; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   CART DRAWER
   ══════════════════════════════════════════ */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.42);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: #fff;
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 48px rgba(0,0,0,0.12);
}
.cart-drawer.open {
  transform: translateX(0);
}

/* Head */
.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 32px 22px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-head-left {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.cart-drawer-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--black);
}
.cart-drawer-count {
  font-size: 11px;
  color: var(--mid-gray);
  font-weight: 500;
}
.cart-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  color: var(--black);
  font-size: 22px;
  line-height: 1;
  transition: opacity 0.2s;
  font-family: var(--font-sans);
}
.cart-close:hover { opacity: 0.35; }

/* Body */
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}
.cart-drawer-body::-webkit-scrollbar { width: 4px; }
.cart-drawer-body::-webkit-scrollbar-track { background: transparent; }
.cart-drawer-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* Empty state */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 300px;
  gap: 14px;
  padding: 48px 32px;
  text-align: center;
}
.cart-empty-icon {
  width: 48px;
  height: 48px;
  stroke: var(--border);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 4px;
}
.cart-empty p {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.6;
  max-width: 220px;
}
.cart-empty-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 1px;
  transition: opacity 0.2s;
  margin-top: 6px;
}
.cart-empty-link:hover { opacity: 0.45; }

/* Cart items */
.cart-item {
  display: flex;
  gap: 16px;
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 68px;
  height: 82px;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  background: #1a1a1a;
}
.cart-item-img-bg {
  position: absolute;
  inset: 0;
  opacity: 0.9;
}
.cart-item-img-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cart-item-collection {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 5px;
}
.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 5px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-note {
  font-size: 10px;
  color: var(--mid-gray);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  font-style: italic;
}
.cart-item-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.03em;
}
.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  color: var(--mid-gray);
  transition: color 0.2s;
  align-self: flex-start;
  flex-shrink: 0;
  line-height: 1;
}
.cart-item-remove:hover { color: var(--black); }
.cart-item-remove svg {
  display: block;
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* Footer */
.cart-drawer-foot {
  padding: 22px 32px 32px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: #fff;
}
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 5px;
}
.cart-subtotal-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.cart-subtotal-amount {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.01em;
}
.cart-foot-note {
  font-size: 11px;
  color: var(--mid-gray);
  margin-bottom: 20px;
  line-height: 1.55;
}
.cart-proceed {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  border: 1.5px solid var(--black);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  font-family: var(--font-sans);
  text-decoration: none;
  margin-bottom: 10px;
}
.cart-proceed:hover {
  background: transparent;
  color: var(--black);
}
.cart-clear-link {
  display: block;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-gray);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: var(--font-sans);
  width: 100%;
}
.cart-clear-link:hover { color: var(--black); }

/* Add-to-cart feedback */
.product-quick-add.added {
  background: rgba(0,0,0,0.88) !important;
}

@media (max-width: 480px) {
  .cart-drawer { width: 100vw; }
  .cart-drawer-head, .cart-item, .cart-drawer-foot { padding-left: 20px; padding-right: 20px; }
}

/* ══════════════════════════════════════════
   PRODUCT PAGE
   ══════════════════════════════════════════ */

.product-page {
  display: grid;
  grid-template-columns: 58% 42%;
  max-width: 1600px;
  margin: 0 auto;
  min-height: calc(100vh - 110px);
}

/* ── Left: sticky gallery with thumbnail strip ── */
.product-gallery {
  position: sticky;
  top: 110px;
  height: calc(100vh - 110px);
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

/* Vertical thumbnail strip */
.product-thumbnails {
  width: 80px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 10px;
  background: #f7f6f4;
  border-right: 1px solid var(--border);
  overflow-y: auto;
}
.product-thumb {
  width: 60px;
  height: 72px;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid transparent;
  outline: none;
  flex-shrink: 0;
  transition: border-color 0.2s;
  position: relative;
}
.product-thumb.active { border-color: var(--black); }
.product-thumb:hover:not(.active) { border-color: #aaa; }
.product-thumb > div {
  width: 100%;
  height: 100%;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.product-thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.45);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 3px 2px;
}

/* Main large image */
.product-gallery-main {
  flex: 1;
  position: relative;
  height: 100%;
  background: #111;
  overflow: hidden;
}
.product-main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 2;
  transition: transform 0.6s ease, opacity 0.3s ease;
}
.product-main-img.switching { opacity: 0; transform: scale(1.02); }
.product-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.product-img-placeholder p {
  font-size: 10px;
  color: rgba(255,255,255,0.12);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── Right: scrollable details panel ── */
.product-details {
  padding: 52px 60px 80px;
  overflow-y: auto;
  background: #fff;
  border-left: 1px solid var(--border);
}
.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 28px;
}
.product-breadcrumb a { color: var(--mid-gray); transition: color 0.2s; }
.product-breadcrumb a:hover { color: var(--black); }
.product-breadcrumb span { color: var(--border); font-weight: 400; font-size: 13px; letter-spacing: 0; text-transform: none; }
.product-page-badge {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  margin-bottom: 14px;
}
.product-page-collection {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 10px;
}
.product-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 22px;
}
.product-price-lg {
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}
.product-price-note {
  font-size: 11px;
  color: var(--mid-gray);
  line-height: 1.6;
}
.product-divider { height: 1px; background: var(--border); margin: 24px 0; }
.product-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}
.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.product-features li {
  font-size: 13px;
  color: #333;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.product-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── Leather colour swatches ── */
.product-swatches {
  margin-bottom: 28px;
}
.product-swatches-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.product-swatches-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.product-swatches-selected {
  font-size: 11px;
  font-weight: 500;
  color: var(--black);
}
.product-swatch-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.product-swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.18);
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  outline: none;
}
.product-swatch:hover { transform: scale(1.12); }
.product-swatch.active {
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.25), 0 0 0 3px #fff, 0 0 0 4.5px var(--black);
}
.product-swatch[title]::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 4px 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}
.product-swatch:hover::after { opacity: 1; }

/* ── CTA buttons ── */
.product-cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.product-cta-row .btn { justify-content: center; padding: 18px 24px; font-size: 11px; letter-spacing: 0.14em; }
.product-add-btn { cursor: pointer; font-family: var(--font-sans); }
.product-add-btn:active { transform: scale(0.98); }

/* ── Accordion sections ── */
.product-accordion {
  border-top: 1px solid var(--border);
}
.product-acc-item {
  border-bottom: 1px solid var(--border);
}
.product-acc-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 0;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  text-align: left;
}
.product-acc-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  position: relative;
}
.product-acc-icon::before,
.product-acc-icon::after {
  content: '';
  position: absolute;
  background: var(--black);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.product-acc-icon::before { width: 14px; height: 1.5px; top: 50%; left: 0; transform: translateY(-50%); }
.product-acc-icon::after  { width: 1.5px; height: 14px; top: 0; left: 50%; transform: translateX(-50%); }
.product-acc-item.open .product-acc-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.product-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
}
.product-acc-item.open .product-acc-body { max-height: 600px; }
.product-acc-content {
  padding-bottom: 22px;
}
.product-acc-content p {
  font-size: 13px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 10px;
}
.product-acc-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.product-acc-content li {
  font-size: 13px;
  color: #444;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.product-acc-content li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
/* Spec table inside accordion */
.product-acc-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.product-acc-spec-row {
  display: contents;
}
.product-acc-spec-cell {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.product-acc-spec-cell:nth-child(2n) { border-right: none; padding-left: 20px; }
.product-acc-spec-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 3px;
}
.product-acc-spec-val {
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
}
/* Process steps inside accordion */
.product-acc-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-acc-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.product-acc-step-num {
  width: 22px;
  height: 22px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--mid-gray);
  flex-shrink: 0;
  margin-top: 1px;
}
.product-acc-step-text { font-size: 13px; color: #555; line-height: 1.6; }
.product-acc-step-text strong { color: var(--black); }

/* Trust strip */
.product-trust {
  display: flex;
  gap: 20px;
  padding: 20px 0 0;
  flex-wrap: wrap;
}
.product-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #666;
}
.product-trust-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}

/* Related */
.related-section {
  padding: 80px 60px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.related-section .section-header { margin-bottom: 36px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .product-page { grid-template-columns: 1fr; }
  .product-gallery { position: static; height: 70vw; min-height: 320px; }
  .product-thumbnails { width: 64px; padding: 10px 7px; }
  .product-thumb { width: 50px; height: 58px; }
  .product-details { padding: 40px 36px 60px; border-left: none; border-top: 1px solid var(--border); }
  .related-section { padding: 60px 32px; }
  .related-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 640px) {
  .product-gallery { height: 80vw; }
  .product-thumbnails { display: none; }
  .product-details { padding: 28px 20px 48px; }
  .related-section { padding: 48px 20px; }
  .related-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-acc-specs { grid-template-columns: 1fr; }
  .product-acc-spec-cell { border-right: none !important; padding-left: 0 !important; }
  .product-trust { gap: 14px; }
}
