/* ========================================
   MarieClub × Ouvre ton jeu — Boutique
   Premium E-Commerce Design System
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Brand Colors */
  --teal-deep: #0B3D3D;
  --teal-primary: #145555;
  --teal-light: #1A7A7A;
  --teal-accent: #22A6A6;
  --teal-subtle: #E8F5F5;

  /* Neutrals */
  --white: #FFFFFF;
  --cream: #FFFBF7;
  --grey-50: #FAFAF9;
  --grey-100: #F5F4F2;
  --grey-200: #E8E6E3;
  --grey-300: #D4D1CC;
  --grey-400: #A8A29E;
  --grey-500: #78716C;
  --grey-600: #57534E;
  --grey-700: #44403C;
  --grey-800: #292524;
  --grey-900: #1C1917;

  /* Accent */
  --gold: #C9A96E;
  --gold-light: #E3D4B5;
  --rose: #E8BCBC;
  --rose-light: #FFF0F0;

  /* Functional */
  --success: #22C55E;
  --error: #EF4444;
  --warning: #F59E0B;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  color: var(--grey-800);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

/* ── Utility Classes ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

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

/* ── Announcement Bar ── */
.announcement-bar {
  background: linear-gradient(90deg, #C2185B, #E84B8A, #C2185B);
  background-size: 200% 100%;
  animation: gradientShift 6s ease infinite;
  color: var(--white);
  text-align: center;
  padding: 10px var(--space-md);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.announcement-bar span {
  position: relative;
  z-index: 1;
}

.announcement-bar .star {
  color: rgba(255,255,255,0.8);
  margin: 0 8px;
}

/* ── Header / Navigation ── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-xl);
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--teal-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-400);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey-600);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal-primary);
  transition: width var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--teal-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  color: var(--grey-700);
}

.cart-btn:hover {
  background: var(--grey-100);
  color: var(--teal-deep);
}

.cart-btn svg {
  width: 20px;
  height: 20px;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--teal-primary);
  color: var(--white);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform var(--transition-spring);
}

.cart-count.visible {
  transform: scale(1);
}

/* Mobile menu btn */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--grey-700);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--grey-50) 50%, var(--teal-subtle) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 85, 85, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-4xl) var(--space-xl);
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(20, 85, 85, 0.08);
  border: 1px solid rgba(20, 85, 85, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xl);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--grey-900);
  margin-bottom: var(--space-lg);
}

.hero-title em {
  font-style: italic;
  color: var(--teal-primary);
  font-weight: 500;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--grey-500);
  max-width: 480px;
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--teal-deep);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(11, 61, 61, 0.3);
}

.btn-primary:hover {
  background: var(--teal-primary);
  box-shadow: 0 6px 25px rgba(11, 61, 61, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--grey-700);
  border: 1.5px solid var(--grey-300);
}

.btn-secondary:hover {
  border-color: var(--teal-primary);
  color: var(--teal-primary);
  background: rgba(20, 85, 85, 0.04);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(3px);
}

.hero-image {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 3/4;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-floating-card .price-tag {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--teal-deep);
}

.hero-floating-card .price-label {
  font-size: 0.75rem;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Product Section ── */
.product-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--grey-900);
  margin-bottom: var(--space-md);
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-primary), var(--gold));
  margin: 0 auto;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ── Product Gallery ── */
.product-gallery {
  position: sticky;
  top: 100px;
}

.gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grey-100);
  aspect-ratio: 3/4;
  margin-bottom: var(--space-md);
  cursor: zoom-in;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition-base);
}

.gallery-main .zoom-hint {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  color: var(--grey-500);
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-main:hover .zoom-hint {
  opacity: 1;
}

.gallery-thumbnails {
  display: flex;
  gap: var(--space-sm);
}

.gallery-thumb {
  flex: 1;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-base);
  opacity: 0.6;
}

.gallery-thumb:hover {
  opacity: 0.9;
}

.gallery-thumb.active {
  border-color: var(--teal-primary);
  opacity: 1;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Product Info ── */
.product-info {
  padding: var(--space-lg) 0;
}

.product-brand {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-sm);
}

.product-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--grey-900);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.product-subtitle {
  font-size: 0.95rem;
  color: var(--grey-400);
  margin-bottom: var(--space-xl);
}

.product-price-container {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--grey-200);
}

.product-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--teal-deep);
}

.product-tax-note {
  font-size: 0.8rem;
  color: var(--grey-400);
}

.product-description {
  margin-bottom: var(--space-2xl);
}

.product-description h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--grey-800);
  margin-bottom: var(--space-sm);
}

.product-description p {
  font-size: 0.92rem;
  color: var(--grey-500);
  line-height: 1.7;
}

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--grey-600);
}

.feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--teal-primary);
  flex-shrink: 0;
}

/* ── Size Selector ── */
.size-selector {
  margin-bottom: var(--space-2xl);
}

.size-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.size-label span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.size-guide-link {
  font-size: 0.8rem;
  color: var(--teal-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.size-guide-link:hover {
  color: var(--teal-light);
}

.size-options {
  display: flex;
  gap: var(--space-sm);
}

.size-option {
  flex: 1;
  padding: 12px 8px;
  text-align: center;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey-700);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
}

.size-option:hover {
  border-color: var(--grey-400);
  background: var(--grey-50);
}

.size-option.selected {
  border-color: var(--teal-primary);
  background: var(--teal-subtle);
  color: var(--teal-deep);
  font-weight: 600;
}

.size-option.selected::before {
  content: '';
  position: absolute;
  top: -1.5px;
  left: -1.5px;
  right: -1.5px;
  bottom: -1.5px;
  border: 2px solid var(--teal-primary);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.size-error {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: var(--space-sm);
  display: none;
  align-items: center;
  gap: 4px;
}

.size-error.visible {
  display: flex;
}

/* ── Quantity Selector ── */
.quantity-selector {
  margin-bottom: var(--space-2xl);
}

.quantity-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
  display: block;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--grey-600);
  transition: all var(--transition-fast);
}

.qty-btn:hover {
  background: var(--grey-100);
  color: var(--teal-primary);
}

.qty-btn:active {
  background: var(--grey-200);
}

.qty-value {
  width: 50px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--grey-800);
  border-left: 1.5px solid var(--grey-200);
  border-right: 1.5px solid var(--grey-200);
  height: 44px;
  line-height: 44px;
}

/* ── Add to Cart ── */
.add-to-cart-section {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.btn-add-cart {
  flex: 1;
  padding: 16px 32px;
  background: var(--teal-deep);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(11, 61, 61, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-add-cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}

.btn-add-cart:hover::before {
  left: 100%;
}

.btn-add-cart:hover {
  background: var(--teal-primary);
  box-shadow: 0 6px 25px rgba(11, 61, 61, 0.35);
  transform: translateY(-2px);
}

.btn-add-cart:active {
  transform: translateY(0);
}

.btn-add-cart svg {
  width: 18px;
  height: 18px;
}

.btn-add-cart.added {
  background: var(--success);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-wishlist {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  color: var(--grey-400);
}

.btn-wishlist:hover {
  border-color: var(--rose);
  color: var(--rose);
  background: var(--rose-light);
}

.btn-wishlist svg {
  width: 20px;
  height: 20px;
}

/* ── Product Guarantees ── */
.guarantees {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-md);
  padding: var(--space-xl);
  background: var(--grey-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
}

.guarantee-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.guarantee-item svg {
  width: 24px;
  height: 24px;
  color: var(--teal-primary);
}

.guarantee-item span {
  font-size: 0.75rem;
  color: var(--grey-500);
  font-weight: 500;
}

/* ── About / Podcast Section ── */
.about-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(180deg, var(--grey-50), var(--white));
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.about-visual {
  position: relative;
}

.about-card {
  background: var(--teal-deep);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.15), transparent);
  pointer-events: none;
}

.about-card .card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.about-card .card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.about-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.about-card p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.podcast-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.podcast-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  transition: all var(--transition-base);
}

.podcast-link:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.podcast-link svg {
  width: 16px;
  height: 16px;
}

.about-content h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--grey-900);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.about-content h2 em {
  font-style: italic;
  color: var(--teal-primary);
}

.about-content p {
  font-size: 0.95rem;
  color: var(--grey-500);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.about-quote {
  padding: var(--space-xl);
  border-left: 3px solid var(--gold);
  background: rgba(201, 169, 110, 0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.about-quote p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--grey-700);
  margin-bottom: 0;
}

/* ── Newsletter Section ── */
.newsletter-section {
  padding: var(--space-4xl) 0;
  background: var(--cream);
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-xl);
}

.newsletter-inner h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--grey-900);
  margin-bottom: var(--space-sm);
}

.newsletter-inner p {
  color: var(--grey-500);
  font-size: 0.9rem;
  margin-bottom: var(--space-xl);
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background: var(--white);
  transition: border-color var(--transition-fast);
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--teal-primary);
}

.newsletter-form input::placeholder {
  color: var(--grey-400);
}

.newsletter-form button {
  padding: 14px 28px;
  background: var(--teal-deep);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--teal-primary);
  transform: translateY(-1px);
}

/* ── Footer ── */
.footer {
  background: var(--grey-900);
  color: var(--grey-400);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .logo-main {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--grey-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  border-color: var(--teal-accent);
  background: rgba(34, 166, 166, 0.1);
  color: var(--teal-accent);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--teal-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}

.footer-bottom p {
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-xl);
}

.footer-bottom-links a {
  font-size: 0.8rem;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ── Cart Drawer ── */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  max-width: 90vw;
  height: 100%;
  background: var(--white);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xl);
  border-bottom: 1px solid var(--grey-200);
}

.cart-header h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--grey-900);
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  color: var(--grey-600);
}

.cart-close:hover {
  background: var(--grey-100);
}

.cart-close svg {
  width: 20px;
  height: 20px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-xl);
}

.cart-empty {
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
}

.cart-empty svg {
  width: 64px;
  height: 64px;
  color: var(--grey-300);
  margin-bottom: var(--space-lg);
}

.cart-empty h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--grey-700);
  margin-bottom: var(--space-sm);
}

.cart-empty p {
  font-size: 0.85rem;
  color: var(--grey-400);
}

.cart-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--grey-100);
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cart-item-image {
  width: 80px;
  height: 100px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--grey-100);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--grey-800);
  margin-bottom: 4px;
}

.cart-item-variant {
  font-size: 0.8rem;
  color: var(--grey-400);
  margin-bottom: var(--space-sm);
}

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--grey-600);
  transition: background var(--transition-fast);
}

.cart-item-qty button:hover {
  background: var(--grey-100);
}

.cart-item-qty span {
  width: 30px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  border-left: 1px solid var(--grey-200);
  border-right: 1px solid var(--grey-200);
  height: 28px;
  line-height: 28px;
}

.cart-item-price {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal-deep);
}

.cart-item-remove {
  font-size: 0.75rem;
  color: var(--grey-400);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-top: 4px;
  transition: color var(--transition-fast);
}

.cart-item-remove:hover {
  color: var(--error);
}

.cart-footer {
  padding: var(--space-xl);
  border-top: 1px solid var(--grey-200);
  background: var(--grey-50);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.cart-subtotal span:first-child {
  font-size: 0.85rem;
  color: var(--grey-500);
}

.cart-subtotal span:last-child {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--grey-900);
}

.cart-delivery-options {
  background: #F8F8F6;
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-lg);
}

.cart-delivery-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: 10px;
}

.cart-delivery-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: white;
}

.cart-delivery-radio:has(input:checked) {
  border-color: var(--teal-primary);
  background: #F0F7F7;
}

.cart-delivery-radio input[type="radio"] {
  accent-color: var(--teal-primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.cart-delivery-radio span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cart-delivery-radio strong {
  font-size: 0.82rem;
  color: var(--grey-900);
}

.cart-delivery-radio small {
  font-size: 0.75rem;
  color: var(--grey-500);
}

.btn-checkout {
  width: 100%;
  padding: 16px;
  background: var(--teal-deep);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-base);
}

.btn-checkout:hover {
  background: var(--teal-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(11, 61, 61, 0.3);
}

.cart-continue {
  display: block;
  text-align: center;
  margin-top: var(--space-md);
  font-size: 0.8rem;
  color: var(--grey-500);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.cart-continue:hover {
  color: var(--grey-700);
}

/* ── Toast Notification ── */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--grey-900);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  z-index: 3000;
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-spring), opacity 0.2s ease;
  font-size: 0.85rem;
  font-weight: 500;
}

.toast.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

/* ── Lightbox / Image Zoom ── */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  cursor: zoom-out;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 85%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  transform: scale(0.9);
  transition: transform var(--transition-slow);
}

.lightbox.open img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition-fast);
  cursor: pointer;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ── Animations ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-primary), var(--gold));
  z-index: 9999;
  transition: width 50ms;
}

/* ── Responsive Design ── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    padding: var(--space-2xl) var(--space-xl);
  }

  .hero-content {
    text-align: center;
  }

  .hero-description {
    margin: 0 auto var(--space-2xl);
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-floating-card {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: none;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .product-gallery {
    position: static;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: var(--space-2xl) 0;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .guarantees {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .size-options {
    flex-wrap: wrap;
  }

  .size-option {
    min-width: 60px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: var(--space-md);
  }

  .hero-inner {
    padding: var(--space-xl) var(--space-md);
  }

  .product-layout {
    padding: 0 var(--space-md);
  }

  .cart-drawer {
    width: 100vw;
  }

  .add-to-cart-section {
    flex-direction: column;
  }

  .btn-wishlist {
    width: 100%;
    height: 48px;
  }

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

  .also-like-grid {
    grid-template-columns: 1fr;
  }
}

/* Brand Sections */
.brand-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.brand-section-alt {
  background: #F7F5F2;
}

/* Brand Header — OTJ (photos + text side by side) */
.brand-header {
  max-width: 1100px;
  margin: 0 auto var(--space-3xl);
  padding: 0 var(--space-xl);
}

.otj-header {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-2xl);
  align-items: center;
}

.brand-header-images {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.brand-header-img-main img,
.brand-header-img-side img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.brand-header-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.brand-header-content-centered {
  text-align: center;
  align-items: center;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--teal-900);
  line-height: 1.1;
  margin: 0;
}

.brand-subtitle {
  font-size: 1.1rem;
  color: var(--grey-600);
  line-height: 1.6;
  max-width: 340px;
}

/* MC Header — text left, photos right (mirrored from OTJ) */
.mc-header {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-bottom: var(--space-3xl);
}



.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.product-card {
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  background: var(--white);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--grey-100);
}

.product-card-img-main,
.product-card-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.product-card-img-hover {
  opacity: 0;
}

.product-card:hover .product-card-img-main {
  opacity: 0;
}

.product-card:hover .product-card-img-hover {
  opacity: 1;
}

.product-card-badges {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  display: flex;
  gap: var(--space-xs);
  z-index: 2;
}

.badge-new {
  background: var(--teal-deep);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-card-quick {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--white);
  color: var(--grey-800);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  z-index: 2;
}

.product-card-quick svg {
  width: 14px;
  height: 14px;
}

.product-card:hover .product-card-quick {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-card-info {
  padding: var(--space-lg) var(--space-sm) var(--space-sm);
}

.product-card-brand {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--teal-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 4px;
}

.product-card-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--grey-900);
  margin-bottom: var(--space-sm);
}

.product-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card-color {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--grey-500);
}

.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.color-dot.color-grey {
  background-color: #C8C5C0;
}

.color-dot.color-green {
  background-color: #1B3D2F;
}

.color-dot.color-pink {
  background-color: #E84B8A;
}

.color-dot.color-white {
  background-color: #FFFFFF;
  border: 1.5px solid #D0D0D0;
}

.color-dot.color-brown {
  background-color: #8B6F5E;
}

.color-dot.color-black {
  background-color: #1A1A2E;
}

.product-card-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal-deep);
}

/* ═══════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-xl);
  font-size: 0.8rem;
  color: var(--grey-400);
  max-width: 1280px;
  margin: 0 auto;
}

.breadcrumb a {
  color: var(--grey-500);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--teal-primary);
}

.breadcrumb span {
  color: var(--grey-700);
  font-weight: 500;
}

.breadcrumb svg {
  color: var(--grey-300);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   PRODUCT DETAIL SECTION
   ═══════════════════════════════════════ */

.product-detail-section {
  padding: 0 0 var(--space-4xl);
  background: var(--white);
}

/* ═══════════════════════════════════════
   COLOR SELECTOR / SWATCHES
   ═══════════════════════════════════════ */

.color-selector {
  margin-bottom: var(--space-2xl);
}

.color-label {
  margin-bottom: var(--space-md);
}

.color-label span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.color-swatches {
  display: flex;
  gap: var(--space-md);
}

.color-swatch {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  background: var(--white);
}

.color-swatch:hover {
  border-color: var(--grey-400);
  background: var(--grey-50);
}

.color-swatch.active {
  border-color: var(--teal-primary);
  background: var(--teal-subtle);
}

.color-swatch.active::after {
  content: none;
}

.swatch-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  flex-shrink: 0;
  position: relative;
}

.color-swatch.active .swatch-circle::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid var(--teal-primary);
  border-radius: 50%;
}

.swatch-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--grey-700);
}

/* ═══════════════════════════════════════
   ALSO LIKE / RECOMMENDATION SECTION
   ═══════════════════════════════════════ */

.also-like-section {
  padding: var(--space-4xl) 0;
  background: var(--grey-50);
}

.also-like-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-2xl);
  max-width: 900px;
  margin: 0 auto;
}

.product-card-sm .product-card-image {
  aspect-ratio: 3/4;
}

/* ═══════════════════════════════════════
   RESPONSIVE — PRODUCT GRID
   ═══════════════════════════════════════ */

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .otj-header,
  .mc-header {
    grid-template-columns: 1fr;
  }

  .brand-header-images {
    max-height: 300px;
  }

  .brand-header-img-main img,
  .brand-header-img-side img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
  }

  .also-like-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .breadcrumb {
    padding: var(--space-md);
    font-size: 0.75rem;
    gap: 4px;
  }

  .color-swatches {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .brand-header-img-side {
    display: none;
  }

  .brand-header-images {
    grid-template-columns: 1fr;
  }

  .brand-header-img-main img {
    height: 260px;
  }

  .brand-title {
    font-size: 2.2rem;
  }
}

/* ── Product Features List ── */
.product-features {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--grey-700);
  line-height: 1.4;
}

.product-features li::before {
  content: '✓';
  color: var(--teal-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Size Recommendation ── */
.size-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #F8F8F6;
  border-left: 3px solid var(--teal-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 10px var(--space-md);
  font-size: 0.85rem;
  color: var(--grey-700);
  margin: var(--space-md) 0;
  line-height: 1.5;
}

/* ── Contact Email Link ── */
.contact-email-link {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal-primary);
  text-decoration: none;
  border-bottom: 2px solid var(--teal-primary);
  padding-bottom: 2px;
  transition: opacity 0.2s;
  margin-top: var(--space-md);
}

.contact-email-link:hover {
  opacity: 0.75;
}

/* ── Return Policy Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: var(--space-xl);
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  max-width: 560px;
  width: 100%;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-box h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--teal-900);
  margin: 0 0 var(--space-lg);
}

.modal-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-900);
  margin: var(--space-lg) 0 var(--space-sm);
}

.modal-box p {
  font-size: 0.92rem;
  color: var(--grey-700);
  line-height: 1.7;
  margin: 0 0 var(--space-md);
}

.modal-box a {
  color: var(--teal-primary);
  font-weight: 600;
}

.modal-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: var(--grey-100);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-700);
  transition: background 0.2s;
}

.modal-close:hover {
  background: var(--grey-200);
}

/* ── Size Guide Modal ── */
.size-guide-box {
  max-width: 480px;
}

.size-guide-intro {
  font-size: 0.88rem;
  color: var(--grey-600);
  margin: 0 0 var(--space-md);
  line-height: 1.6;
}

.size-guide-warning {
  background: #F8F8F6;
  border-left: 3px solid var(--teal-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 10px var(--space-md);
  font-size: 0.82rem;
  color: var(--grey-700);
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-lg);
  font-size: 0.9rem;
}

.size-guide-table th {
  background: #0B3D3D;
  color: white;
  padding: 10px 14px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.size-guide-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.size-guide-table th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }

.size-guide-table td {
  padding: 10px 14px;
  text-align: center;
  border-bottom: 1px solid var(--grey-100);
  color: var(--grey-800);
}

.size-guide-table tbody tr:nth-child(even) td {
  background: #F8F8F6;
}

.size-guide-table tbody tr:last-child td {
  border-bottom: none;
}

.size-guide-diagram {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.size-guide-diagram svg {
  width: 160px;
  height: auto;
}

.size-guide-contact {
  font-size: 0.82rem;
  color: var(--grey-500);
  text-align: center;
  margin: 0;
}

.size-guide-contact a {
  color: var(--teal-primary);
  font-weight: 600;
}
