@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Syne:wght@700;800&display=swap');

:root {
  --sand: #f5efe6;
  --sand-dark: #e8dfd2;
  --ocean: #1a5c6b;
  --ocean-deep: #0e3d48;
  --ocean-light: #2a8a9e;
  --coral: #e07858;
  --coral-light: #f0a990;
  --white: #ffffff;
  --black: #1a1a1a;
  --text: #2d2d2d;
  --text-light: #6b6b6b;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--sand);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 239, 230, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 92, 107, 0.08);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ocean-deep);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding-top: 5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 4rem;
  background: var(--sand);
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--coral-light);
  border-radius: 2rem;
  width: fit-content;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  color: var(--ocean-deep);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: normal;
  color: var(--coral);
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-light);
  max-width: 28rem;
  line-height: 1.7;
}

.hero-visual {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-deep) 60%, #0a2e37 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 120, 88, 0.15) 0%, transparent 70%);
  top: 10%;
  right: -20%;
}

.hero-visual::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 138, 158, 0.2) 0%, transparent 70%);
  bottom: 10%;
  left: -10%;
}

.hero-visual-text {
  text-align: center;
  z-index: 2;
  padding: 3rem;
}

.hero-visual-text .big-number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 0.9;
  opacity: 0.95;
}

.hero-visual-text .big-label {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-top: 0.75rem;
}

/* ── VALUES ── */
.values {
  padding: 6rem 4rem;
  background: var(--white);
}

.values-header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.values-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--ocean-deep);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.values-header p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.value-card {
  padding: 3rem;
  border: 1px solid var(--sand-dark);
  position: relative;
}

.value-card:hover {
  background: var(--sand);
}

.value-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--coral-light);
  opacity: 0.4;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ocean-deep);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.7;
}

/* ── SPLIT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.split-text {
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ocean-deep);
}

.split-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.split-text p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 32rem;
}

.split-visual {
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.price-stack {
  text-align: center;
}

.price-stack .price-range {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--ocean-deep);
  line-height: 1;
}

.price-stack .price-note {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.75rem;
}

/* ── FEATURES ── */
.features {
  padding: 6rem 4rem;
  background: var(--sand);
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ocean-deep);
  letter-spacing: -0.02em;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--coral);
  margin-top: 0.4rem;
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ocean-deep);
  margin-bottom: 0.4rem;
}

.feature-item p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── CLOSING ── */
.closing {
  padding: 8rem 4rem;
  background: var(--ocean-deep);
  text-align: center;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.closing p {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── FOOTER ── */
footer {
  padding: 2rem 4rem;
  background: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0.6;
}

footer .footer-location {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
}

/* ── NAV LINKS (landing + shop nav) ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  color: var(--ocean-deep);
  background: var(--sand-dark);
}

.nav-link--shop {
  color: var(--ocean);
  font-weight: 600;
}

/* ── HERO CTA ── */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-cta-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--ocean-deep);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, transform 0.15s ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.hero-cta-btn:hover {
  background: var(--ocean);
  transform: translateY(-2px);
}

.hero-cta-note {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ── SHOP HEADER ── */
.shop-header {
  margin-top: 5rem;
  background: var(--ocean-deep);
  padding: 5rem 4rem 4rem;
}

.shop-header-inner {
  max-width: 700px;
}

.shop-header-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(240, 169, 144, 0.35);
  border-radius: 2rem;
}

.shop-header-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.shop-header-title em {
  font-style: normal;
  color: var(--coral);
}

.shop-header-sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}

/* ── SHOP TABS ── */
.shop-tabs-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--sand-dark);
  position: sticky;
  top: 5rem;
  z-index: 50;
}

.shop-tabs {
  display: flex;
  padding: 0 4rem;
  gap: 0;
}

.shop-tab {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.shop-tab:hover {
  color: var(--ocean-deep);
}

.shop-tab--active {
  color: var(--ocean-deep);
  border-bottom-color: var(--coral);
}

/* ── CATALOG SECTION ── */
.catalog-section {
  padding: 4rem 4rem 3rem;
  background: var(--sand);
}

.catalog-section-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.catalog-section-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ocean-deep);
  letter-spacing: -0.02em;
}

.catalog-section-count {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5px;
}

/* ── PRODUCT CARD ── */
.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  transition: transform 0.25s ease;
  outline: none;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(14, 61, 72, 0.12);
  z-index: 2;
  position: relative;
}

.product-card-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-deep) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.product-card-visual-inner {
  padding: 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-card-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral-light);
  background: rgba(224, 120, 88, 0.15);
  padding: 0.25rem 0.6rem;
  border-radius: 2rem;
  width: fit-content;
}

.product-card-display-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.product-card-swatch-row {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}

.product-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: block;
}

.product-card-info {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  border-top: 1px solid var(--sand-dark);
}

.product-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ocean-deep);
  letter-spacing: -0.01em;
}

.product-card-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.5;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-card-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ocean-deep);
}

.product-card-colors {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ── CATALOG BRAND STRIP ── */
.catalog-brand-strip {
  background: var(--ocean-deep);
  padding: 1.5rem 4rem;
}

.catalog-brand-strip-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
}

.strip-divider {
  color: rgba(255,255,255,0.2);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  margin-top: 5rem;
  padding: 1rem 4rem;
  background: var(--white);
  border-bottom: 1px solid var(--sand-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.breadcrumb-link {
  color: var(--ocean);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-link:hover { text-decoration: underline; }

.breadcrumb-sep { color: var(--sand-dark); }
.breadcrumb-current { color: var(--text); font-weight: 500; }

/* ── PRODUCT MAIN ── */
.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}

/* ── PRODUCT VISUAL PANEL ── */
.product-visual-panel {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 5rem;
  max-height: calc(100vh - 5rem);
}

.product-visual-hero {
  flex: 1;
  min-height: 480px;
}

.product-visual-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--ocean) 0%, var(--ocean-deep) 55%, #082730 100%);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.product-visual-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(224, 120, 88, 0.18) 0%, transparent 60%);
}

.product-visual-content {
  padding: 3rem;
  position: relative;
  z-index: 2;
}

.product-visual-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.product-visual-gender {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2rem;
}

.product-visual-swatches {
  display: flex;
  gap: 0.65rem;
}

.product-visual-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-visual-swatch--active,
.product-visual-swatch:hover {
  border-color: rgba(255,255,255,0.8);
  transform: scale(1.15);
}

.product-features-strip {
  background: var(--sand-dark);
  padding: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.product-feature-pill {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocean);
  background: rgba(26, 92, 107, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
}

/* ── PRODUCT INFO PANEL ── */
.product-info-panel {
  background: var(--white);
  overflow-y: auto;
}

.product-info-inner {
  padding: 4rem;
  max-width: 560px;
}

.product-info-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--coral-light);
  border-radius: 2rem;
}

.product-info-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--ocean-deep);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.product-info-tagline {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.product-info-price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--ocean-deep);
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}

/* ── PRODUCT OPTIONS ── */
.product-option-group {
  margin-bottom: 2rem;
}

.product-option-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.product-option-value {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
}

.product-color-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.product-color-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
  outline: none;
}

.product-color-btn:hover {
  transform: scale(1.15);
}

.product-color-btn--active {
  border-color: var(--ocean-deep);
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--ocean-deep);
}

.product-size-row {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.product-size-btn {
  min-width: 48px;
  padding: 0.55rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  text-align: center;
}

.product-size-btn:hover {
  background: var(--sand-dark);
  border-color: var(--ocean-light);
}

.product-size-btn--active {
  background: var(--ocean-deep);
  border-color: var(--ocean-deep);
  color: var(--white);
}

/* ── ADD TO CART ── */
.product-add-btn {
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--ocean-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-bottom: 0.75rem;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.product-add-btn:hover {
  background: var(--ocean);
  transform: translateY(-1px);
}

.product-add-btn--success {
  background: #2e7d32;
}

.product-add-btn--warn {
  background: var(--coral);
}

.product-add-note {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ── PRODUCT DETAIL SECTIONS ── */
.product-detail-section {
  border-top: 1px solid var(--sand-dark);
  padding-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.product-detail-heading {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocean-deep);
  margin-bottom: 0.75rem;
}

.product-detail-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
}

/* ── SIZE GUIDE TABLE ── */
.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.85rem;
}

.size-guide-table th {
  background: var(--sand-dark);
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.6rem 0.75rem;
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.size-guide-table td {
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid var(--sand-dark);
  color: var(--text-light);
  font-weight: 300;
}

.size-guide-table tr:hover td {
  background: var(--sand);
}

/* ── PRODUCT NAV STRIP ── */
.product-nav-strip {
  background: var(--ocean-deep);
  padding: 1.5rem 4rem;
}

.product-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.product-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.product-nav-link:hover {
  color: var(--white);
}

.product-nav-arrow {
  color: var(--coral-light);
  font-size: 1rem;
}

.product-nav-all {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral-light);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(240,169,144,0.4);
  border-radius: 2rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.product-nav-all:hover {
  background: rgba(224, 120, 88, 0.15);
  border-color: var(--coral);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .nav-tagline {
    display: none;
  }

  .nav-links {
    gap: 0;
  }

  .nav-link {
    padding: 0.35rem 0.6rem;
    font-size: 0.8rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 8rem 1.5rem 3rem;
  }

  .hero-visual {
    min-height: 50vh;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .values {
    padding: 4rem 1.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split-text {
    padding: 4rem 1.5rem;
  }

  .split-visual {
    min-height: 40vh;
  }

  .features {
    padding: 4rem 1.5rem;
  }

  .features-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .closing {
    padding: 5rem 1.5rem;
  }

  footer {
    padding: 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .shop-header {
    padding: 3rem 1.5rem 2.5rem;
  }

  .shop-tabs {
    padding: 0 1.5rem;
    overflow-x: auto;
  }

  .catalog-section {
    padding: 3rem 1.5rem 2rem;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }

  .catalog-brand-strip {
    padding: 1.5rem;
  }

  .catalog-brand-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .strip-divider {
    display: none;
  }

  .breadcrumb {
    padding: 0.75rem 1.5rem;
    flex-wrap: wrap;
  }

  .product-main {
    grid-template-columns: 1fr;
  }

  .product-visual-panel {
    position: static;
    max-height: none;
  }

  .product-visual-hero {
    min-height: 320px;
  }

  .product-info-inner {
    padding: 2rem 1.5rem;
  }

  .product-nav-strip {
    padding: 1.25rem 1.5rem;
  }

  .product-nav-inner {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .product-nav-label {
    display: none;
  }
}