/* ============================================
   PLAIN STANDARD — Core Stylesheet
   Built on discipline. Designed for everyday.
   ============================================ */

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

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

:root {
  --cream:       #F0EBE1;
  --off-white:   #FAF8F5;
  --white:       #FFFFFF;
  --black:       #111111;
  --dark:        #1C1C1C;
  --grey-dark:   #4A4A4A;
  --grey-mid:    #8A8A8A;
  --grey-light:  #D8D4CE;
  --stone:       #C4B49A;
  --stone-light: #EAE3D8;
  --olive:       #5C6645;
  --sand:        #D4C4A0;
  --navy:        #1A2840;
  --border:      #E0DAD2;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.12);
  --radius:      4px;
  --max-width:   1400px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--off-white);
}

img { display: block; width: 100%; height: auto; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ── Typography ── */
.serif { font-family: var(--font-serif); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── Layout ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1200px) { .container { padding: 0 60px; } }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.announcement-bar a { text-decoration: underline; }

/* ── Header / Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dark);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }

.nav-links .has-dropdown { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  min-width: 220px;
  padding: 16px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(-8px);
  box-shadow: var(--shadow-md);
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.nav-dropdown a:hover { background: var(--cream); }

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav-icon:hover { color: var(--black); }
.nav-icon svg { width: 18px; height: 18px; flex-shrink: 0; }

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.nav-hamburger { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; flex-direction: column; gap: 5px; padding: 4px; }
  .nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--dark); transition: var(--transition); }
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  pointer-events: none;
}

.mobile-nav.open { pointer-events: all; }

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-nav.open .mobile-nav-overlay { opacity: 1; }

.mobile-nav-panel {
  position: relative;
  width: 320px;
  max-width: 90vw;
  background: var(--white);
  height: 100%;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.mobile-nav-links a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Cart Drawer ── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--white);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.visible { opacity: 1; pointer-events: all; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.cart-header h2 { font-size: 15px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; }

.cart-body { flex: 1; overflow-y: auto; padding: 24px 28px; }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  text-align: center;
  color: var(--grey-mid);
}
.cart-empty svg { width: 48px; height: 48px; opacity: 0.3; }

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

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

.cart-item-info h4 { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.cart-item-info p { font-size: 12px; color: var(--grey-mid); margin-bottom: 12px; }

.cart-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  width: fit-content;
  padding: 4px 12px;
}
.cart-qty button { font-size: 16px; line-height: 1; color: var(--grey-dark); }
.cart-qty span { font-size: 13px; min-width: 16px; text-align: center; }

.cart-item-price { font-size: 14px; font-weight: 500; white-space: nowrap; }
.cart-item-remove { display: block; font-size: 10px; letter-spacing: 0.1em; color: var(--grey-mid); text-decoration: underline; margin-top: 8px; cursor: pointer; }

.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.cart-subtotal strong { font-weight: 600; }

.cart-klarna {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 12px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  width: 100%;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-primary:hover { background: var(--dark); border-color: var(--dark); }

.btn-secondary {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-secondary:hover { background: var(--black); color: var(--white); }

.btn-olive {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
}
.btn-olive:hover { background: #4a5337; border-color: #4a5337; }

.btn-ghost {
  background: transparent;
  color: var(--grey-dark);
  border-color: var(--grey-light);
  font-size: 10px;
  padding: 10px 20px;
}
.btn-ghost:hover { border-color: var(--dark); color: var(--dark); }

.btn-sm { padding: 10px 20px; font-size: 10px; width: auto; }
.btn-icon { width: 44px; height: 44px; padding: 0; flex-shrink: 0; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: calc(100vh - 106px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--cream) 45%, var(--stone-light) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 80px 0;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--black);
}

.hero h1 em { font-style: italic; color: var(--grey-dark); }

.hero-sub {
  font-size: 14px;
  color: var(--grey-dark);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 380px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-actions .btn { width: auto; min-width: 180px; }

.hero-image-col {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 52%;
}

.hero-image-col img,
.hero-image-col .hero-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-img-placeholder {
  background: linear-gradient(160deg, #D8D0C4 0%, #C4B49A 50%, #8A7E6E 100%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 0;
  display: flex;
  gap: 48px;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--black);
  display: block;
}
.hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

@media (max-width: 768px) {
  .hero { min-height: auto; padding: 60px 0 40px; }
  .hero-image-col { display: none; }
  .hero h1 { font-size: clamp(36px, 8vw, 56px); }
  .hero-actions .btn { min-width: 0; flex: 1; }
  .hero-stats { position: relative; bottom: auto; margin-top: 40px; gap: 32px; }
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--black);
  color: var(--white);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.trust-item svg { width: 20px; height: 20px; opacity: 0.8; }

/* ── Section Headers ── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--black);
}

.section-subtitle {
  font-size: 12px;
  color: var(--grey-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}

.view-all {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-dark);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.view-all:hover { color: var(--black); }
.view-all::after { content: '→'; }

/* ── Product Cards ── */
.product-card {
  position: relative;
  cursor: pointer;
}

.product-card-media {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 3/4;
  margin-bottom: 14px;
  border-radius: var(--radius);
}

.product-card-media img,
.product-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-media img,
.product-card:hover .product-img-placeholder { transform: scale(1.04); }

.product-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  z-index: 2;
}

.product-card-badge.badge-olive { background: var(--olive); }
.product-card-badge.badge-save { background: #C24A2E; }

.product-card-actions {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 2;
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateY(0); }

.product-card-info { padding: 0 2px; }

.product-card-name {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--dark);
}

.product-card-variant {
  font-size: 11px;
  color: var(--grey-mid);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}

.product-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.price-old {
  text-decoration: line-through;
  color: var(--grey-mid);
  font-weight: 400;
  font-size: 12px;
}

.price-sale { color: #C24A2E; }

.product-card-colors {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: border-color var(--transition);
  position: relative;
}
.color-dot:hover, .color-dot.active { border-color: var(--dark); }

/* ── Category Split ── */
.category-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  gap: 4px;
  margin: 4px 0;
}

.category-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  cursor: pointer;
  min-height: 500px;
}

.category-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-panel:hover .category-bg { transform: scale(1.03); }

.category-bg-men {
  background: linear-gradient(170deg, #2C2C2C 0%, #111 60%, #000 100%);
}

.category-bg-boys {
  background: linear-gradient(170deg, #8A9070 0%, #6B7558 50%, #4A5337 100%);
}

.category-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.category-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 12px;
}

.category-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .category-split { grid-template-columns: 1fr; min-height: auto; }
  .category-panel { min-height: 340px; }
}

/* ── Product Sections ── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }

.section-bg-cream { background: var(--cream); }
.section-bg-stone { background: var(--stone-light); }
.section-bg-dark { background: var(--dark); color: var(--white); }

/* ── Horizontal Scroll ── */
.scroll-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.scroll-row::-webkit-scrollbar { display: none; }
.scroll-row .product-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

@media (max-width: 768px) { .scroll-row .product-card { flex: 0 0 220px; } }

/* ── Complete the Look ── */
.look-builder {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  min-height: 700px;
  align-items: start;
}

.look-image-area {
  position: sticky;
  top: 88px;
  background: var(--cream);
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.look-image-area img { width: 100%; height: 100%; object-fit: cover; }

.look-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #E8E0D4 0%, #D4C4A0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  opacity: 0.3;
}

.look-panel {
  padding: 0 0 0 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.look-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.look-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--black);
}

.look-items { display: flex; flex-direction: column; gap: 12px; }

.look-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}

.look-item:hover { border-color: var(--dark); }
.look-item.selected { border-color: var(--black); background: var(--off-white); }

.look-item-img {
  width: 72px;
  height: 90px;
  background: var(--cream);
  border-radius: 2px;
  overflow: hidden;
}

.look-item-name { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.look-item-detail { font-size: 11px; color: var(--grey-mid); }
.look-item-price { font-size: 14px; font-weight: 500; }

.look-total {
  background: var(--cream);
  padding: 20px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.look-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.look-total-row.total { font-size: 15px; font-weight: 600; padding-top: 12px; border-top: 1px solid var(--border); }

.look-klarna {
  font-size: 12px;
  color: var(--grey-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 1024px) {
  .look-builder { grid-template-columns: 1fr; }
  .look-image-area { position: relative; top: auto; aspect-ratio: 4/3; }
  .look-panel { padding: 40px 0 0; }
}

/* ── Wardrobe Builder ── */
.wardrobe-hero {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.wardrobe-hero h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 300; margin-bottom: 16px; }
.wardrobe-hero p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 32px; }

.wardrobe-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  overflow-x: auto;
}

.wardrobe-tab {
  padding: 14px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-mid);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all var(--transition);
  cursor: pointer;
}
.wardrobe-tab.active { color: var(--black); border-bottom-color: var(--black); }

.bundle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .bundle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .bundle-grid { grid-template-columns: 1fr; } }

.bundle-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.bundle-card:hover { border-color: var(--dark); box-shadow: var(--shadow-md); }

.bundle-card.featured {
  border-color: var(--black);
  position: relative;
}

.bundle-featured-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.bundle-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  height: 240px;
  background: var(--cream);
}
.bundle-images .bundle-img {
  background: linear-gradient(160deg, #E8E0D4 0%, #C8BAA0 100%);
}
.bundle-images .bundle-img:nth-child(2) { background: linear-gradient(160deg, #D0D4CC 0%, #A8AEA0 100%); }
.bundle-images .bundle-img:nth-child(3) { background: linear-gradient(160deg, #C4C8BC 0%, #9EA6940 100%); }
.bundle-images .bundle-img:last-child { background: linear-gradient(160deg, #1C1C1C 0%, #2C2C2C 100%); }

.bundle-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 16px; }

.bundle-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
}

.bundle-items-list { display: flex; flex-direction: column; gap: 6px; }
.bundle-items-list li {
  font-size: 12px;
  color: var(--grey-dark);
  display: flex;
  justify-content: space-between;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.bundle-items-list li:last-child { border-bottom: none; }

.bundle-pricing { margin-top: auto; }

.bundle-was { font-size: 12px; color: var(--grey-mid); text-decoration: line-through; }
.bundle-now { font-family: var(--font-serif); font-size: 28px; font-weight: 400; color: var(--black); }
.bundle-save {
  display: inline-block;
  background: #C24A2E;
  color: white;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 2px;
  margin-left: 8px;
}

.bundle-klarna {
  font-size: 11px;
  color: var(--grey-mid);
  margin-top: 4px;
}

.bundle-klarna strong { color: var(--dark); }

.bundle-cta { margin-top: 16px; }

/* ── Custom Wardrobe Builder ── */
.builder-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.builder-step {
  margin-bottom: 40px;
}

.builder-step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.step-title { font-size: 15px; font-weight: 500; letter-spacing: 0.06em; }

.builder-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

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

.builder-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  background: var(--white);
}

.builder-item:hover { border-color: var(--dark); }
.builder-item.selected { border-color: var(--black); background: var(--cream); }

.builder-item-img {
  aspect-ratio: 1;
  background: var(--cream);
  border-radius: 2px;
  margin-bottom: 10px;
  overflow: hidden;
}

.builder-item-name { font-size: 11px; font-weight: 500; }
.builder-item-price { font-size: 11px; color: var(--grey-mid); margin-top: 2px; }

.builder-summary {
  position: sticky;
  top: 88px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.builder-summary h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.summary-items { display: flex; flex-direction: column; gap: 12px; }

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.summary-item-remove { color: var(--grey-mid); cursor: pointer; font-size: 16px; line-height: 1; }

.summary-divider { height: 1px; background: var(--border); }

.summary-totals { display: flex; flex-direction: column; gap: 8px; }

.summary-row { display: flex; justify-content: space-between; font-size: 13px; }
.summary-row.total { font-size: 16px; font-weight: 600; }
.summary-row.savings { color: #C24A2E; font-size: 12px; }

@media (max-width: 1024px) {
  .builder-layout { grid-template-columns: 1fr; }
  .builder-summary { position: relative; top: auto; }
}

/* ── Brand Story ── */
.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.brand-story-image {
  background: linear-gradient(135deg, #2C2C2C, #111);
  position: relative;
  overflow: hidden;
}

.brand-story-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background: var(--cream);
}

.brand-story-content .label { color: var(--grey-mid); }
.brand-story-content h2 { font-size: clamp(32px, 3.5vw, 52px); font-weight: 300; color: var(--black); }
.brand-story-content p { font-size: 15px; line-height: 1.9; color: var(--grey-dark); }

.brand-pillars {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.brand-pillar { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.brand-pillar::before { content: ''; width: 20px; height: 1px; background: var(--dark); }

@media (max-width: 768px) {
  .brand-story { grid-template-columns: 1fr; }
  .brand-story-image { min-height: 300px; }
  .brand-story-content { padding: 48px 24px; }
}

/* ── Newsletter ── */
.newsletter {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.newsletter h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 300; margin-bottom: 16px; }
.newsletter p { color: rgba(255,255,255,0.6); margin-bottom: 32px; font-size: 15px; }

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 13px;
  outline: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-form .btn {
  width: auto;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--white);
  color: var(--black);
  padding: 14px 28px;
  border: none;
}
.newsletter-form .btn:hover { background: var(--cream); }

/* ── Footer ── */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 24px; }

.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  font-family: var(--font-sans);
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.75); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-payments { display: flex; gap: 8px; }
.payment-badge {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ── Shop Page ── */
.shop-header {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
}

.shop-header h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 300; }
.shop-header p { font-size: 13px; color: var(--grey-mid); margin-top: 8px; }

.shop-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  gap: 16px;
}

.shop-filters { display: flex; gap: 8px; flex-wrap: wrap; }

.filter-btn {
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--grey-dark);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--black); color: var(--black); background: var(--black); color: var(--white); }

.shop-sort select {
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--dark);
  cursor: pointer;
  outline: none;
  appearance: none;
  padding-right: 32px;
  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='%234A4A4A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1200px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ── Product Detail Page ── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 0;
  align-items: start;
  min-height: 80vh;
}

.product-gallery {
  position: relative;
}

.gallery-main {
  aspect-ratio: 3/4;
  background: var(--cream);
  overflow: hidden;
  border-radius: 0;
}

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

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  padding: 0 8px;
}

.gallery-thumb {
  width: 72px;
  height: 90px;
  background: var(--cream);
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.gallery-thumb.active { border-color: var(--black); }

.product-info {
  padding: 48px;
  position: sticky;
  top: 88px;
}

.product-breadcrumb {
  font-size: 11px;
  color: var(--grey-mid);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.product-breadcrumb span { color: var(--grey-light); }

.product-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: var(--black);
  margin-bottom: 8px;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 500;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--grey-dark);
}

.stars { color: #D4A017; letter-spacing: 2px; }

.product-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
}

.color-selector {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: all var(--transition);
  position: relative;
}
.color-swatch:hover { outline-color: var(--grey-mid); }
.color-swatch.active { outline-color: var(--black); }
.color-swatch-label { font-size: 11px; color: var(--grey-mid); margin-bottom: 12px; }

.size-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.size-btn {
  min-width: 48px;
  height: 48px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}
.size-btn:hover { border-color: var(--dark); }
.size-btn.active { border-color: var(--black); background: var(--black); color: var(--white); }
.size-btn.soldout { color: var(--grey-light); cursor: not-allowed; position: relative; }
.size-btn.soldout::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent calc(50% - 1px), var(--grey-light) 50%, transparent calc(50% + 1px)); }

.size-guide-link { font-size: 11px; color: var(--grey-mid); text-decoration: underline; cursor: pointer; margin-bottom: 24px; display: inline-block; }

.add-to-cart-area { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.bnpl-info {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFB3C7;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 12px;
  color: #333;
}

.bnpl-info .bnpl-badge {
  font-weight: 700;
  font-size: 13px;
  color: var(--black);
  font-family: var(--font-serif);
  letter-spacing: 0.05em;
}

.product-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.product-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--grey-dark);
}
.product-feature::before { content: ''; width: 16px; height: 1px; background: var(--grey-mid); flex-shrink: 0; }

.product-accordion { border-top: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--dark);
  text-align: left;
}
.accordion-icon { transition: transform var(--transition); font-size: 18px; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-item.open .accordion-body { max-height: 400px; }
.accordion-body-inner { padding: 0 0 20px; font-size: 13px; color: var(--grey-dark); line-height: 1.8; }

@media (max-width: 1024px) {
  .product-detail { grid-template-columns: 1fr; }
  .product-info { padding: 32px 24px; position: relative; top: auto; }
}

/* ── Color Swatches Data ── */
.sw-black { background: #111111; }
.sw-white { background: #FFFFFF; border: 1px solid #ddd; }
.sw-stone { background: #C4B49A; }
.sw-sand { background: #D4C4A0; }
.sw-olive { background: #5C6645; }
.sw-grey { background: #8A8A8A; }
.sw-grey-marl { background: #B0B0B0; }
.sw-navy { background: #1A2840; }
.sw-cream { background: #F0EBE1; }

/* ── Product Img Placeholders (color variants) ── */
.pi-black { background: linear-gradient(160deg, #2C2C2C 0%, #111 100%); }
.pi-stone { background: linear-gradient(160deg, #D8CCBC 0%, #BEA888 100%); }
.pi-olive { background: linear-gradient(160deg, #7A8A60 0%, #4A5337 100%); }
.pi-sand { background: linear-gradient(160deg, #E4D8C0 0%, #C4AA80 100%); }
.pi-grey { background: linear-gradient(160deg, #C4C4C4 0%, #8C8C8C 100%); }
.pi-navy { background: linear-gradient(160deg, #2A3850 0%, #1A2840 100%); }
.pi-cream { background: linear-gradient(160deg, #F5F0E8 0%, #E0D4C4 100%); }
.pi-white { background: linear-gradient(160deg, #FAFAFA 0%, #F0EDE8 100%); }

/* ── Utility ── */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.hidden { display: none !important; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }

/* ── Notifications ── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--black);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  z-index: 500;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toast.visible { transform: translateX(-50%) translateY(0); }
.toast svg { width: 16px; height: 16px; }

/* ── Page Transitions ── */
.page-enter { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ── Klarna Badge SVG-style ── */
.klarna-logo {
  display: inline-flex;
  align-items: center;
  background: #FFB3C7;
  color: #000;
  font-weight: 800;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.02em;
}

.clearpay-logo {
  display: inline-flex;
  align-items: center;
  background: #B2FCE4;
  color: #000;
  font-weight: 800;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 3px;
}

/* ── Scroll Indicator ── */
.scroll-indicator {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 24px;
}
.scroll-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--grey-light); }
.scroll-dot.active { background: var(--dark); }

/* ── Size Guide Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white);
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition);
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-close { position: absolute; top: 20px; right: 20px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }

.size-table { width: 100%; border-collapse: collapse; margin-top: 24px; font-size: 13px; }
.size-table th { background: var(--cream); padding: 12px; text-align: left; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
.size-table td { padding: 12px; border-bottom: 1px solid var(--border); }
.size-table tr:last-child td { border-bottom: none; }

/* ── Loading State ── */
.skeleton { background: linear-gradient(90deg, var(--cream) 0%, var(--stone-light) 50%, var(--cream) 100%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius); }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ── Wishlist ── */
.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  z-index: 3;
  border: none;
  cursor: pointer;
}
.wishlist-btn:hover { transform: scale(1.1); }
.wishlist-btn svg { width: 16px; height: 16px; }
.wishlist-btn.active svg { fill: #C24A2E; stroke: #C24A2E; }

/* ── Pagination ── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
}
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}
.page-btn:hover, .page-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }
.page-btn.disabled { opacity: 0.3; cursor: not-allowed; }
