/* ============================================
   MONDAY CLOSET CO. — MAIN STYLESHEET
   Neo Brutalist Design System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-bg: #faf9f6;
  --color-surface: #ffffff;
  --color-primary: #1a1a2e;
  --color-secondary: #f5e642;
  --color-accent: #e84855;
  --color-accent-dark: #c73540;
  --color-text: #1a1a2e;
  --color-text-muted: #5a5a7a;
  --color-border: #1a1a2e;
  --color-card-bg: #ffffff;
  --color-strip: #1a1a2e;
  --color-strip-text: #f5e642;

  --shadow-card: 4px 4px 0px #1a1a2e;
  --shadow-card-hover: 6px 6px 0px #1a1a2e;
  --shadow-btn: 3px 3px 0px #1a1a2e;
  --shadow-btn-hover: 5px 5px 0px #1a1a2e;
  --shadow-accent: 4px 4px 0px var(--color-accent);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --font-main: 'Urbanist', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --nav-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: all 0.2s ease; }

ul { list-style: none; }

address { font-style: normal; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-main);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; font-weight: 700; }

p { color: var(--color-text-muted); line-height: 1.7; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  box-shadow: var(--shadow-btn-hover);
  transform: translate(-1px, -1px);
  background: var(--color-secondary);
}

.btn-primary:active {
  box-shadow: 1px 1px 0px var(--color-border);
  transform: translate(2px, 2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
  box-shadow: var(--shadow-btn-hover);
  transform: translate(-1px, -1px);
}

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: 3px 3px 0 var(--color-border);
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}

.btn-outline-sm:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--color-border);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--color-surface);
  border-bottom: 2px solid var(--color-border);
  box-shadow: 0 2px 0 var(--color-border);
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-text);
  background: var(--color-secondary);
  border-color: var(--color-border);
  box-shadow: 2px 2px 0 var(--color-border);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cart-btn {
  position: relative;
  background: var(--color-primary);
  color: var(--color-secondary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: all 0.15s ease;
  font-size: 1rem;
}

.cart-btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: var(--shadow-btn-hover);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-surface);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-btn);
  transition: all 0.15s ease;
}

.hamburger:hover { box-shadow: var(--shadow-btn-hover); transform: translate(-1px,-1px); }

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.5);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active { display: block; opacity: 1; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--color-surface);
  border-left: 2px solid var(--color-border);
  z-index: 1200;
  padding: 5rem 2rem 2rem;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 0 var(--color-border);
}

.mobile-menu.active { right: 0; }

.mobile-menu ul { display: flex; flex-direction: column; gap: 0.5rem; }

.mobile-menu ul li a {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 1rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  color: var(--color-text);
}

.mobile-menu ul li a:hover {
  background: var(--color-secondary);
  border-color: var(--color-border);
  box-shadow: 3px 3px 0 var(--color-border);
}

.mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--color-accent);
  color: #fff;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: var(--shadow-btn);
  transition: all 0.15s ease;
}

.mobile-close:hover { transform: translate(-1px,-1px); box-shadow: var(--shadow-btn-hover); }

/* Cart Sidebar */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.5);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-overlay.active { display: block; opacity: 1; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(400px, 90vw);
  height: 100%;
  background: var(--color-surface);
  border-left: 2px solid var(--color-border);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 0 var(--color-border);
}

.cart-sidebar.active { right: 0; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 2px solid var(--color-border);
}

.cart-header h3 { font-size: 1.25rem; font-weight: 800; }

.cart-header button {
  background: var(--color-accent);
  color: #fff;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: var(--shadow-btn);
  transition: all 0.15s ease;
}

.cart-header button:hover { transform: translate(-1px,-1px); box-shadow: var(--shadow-btn-hover); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-empty { color: var(--color-text-muted); font-size: 0.95rem; text-align: center; padding: 2rem 0; }

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  background: var(--color-bg);
}

.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 700; font-size: 0.9rem; color: var(--color-text); }
.cart-item-price { font-size: 0.85rem; color: var(--color-accent); font-weight: 700; }

.cart-item-remove {
  background: none;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.cart-item-remove:hover { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }

.cart-footer {
  padding: 1.5rem;
  border-top: 2px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 1.1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 3rem;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 45%;
  height: 80%;
  background: var(--color-secondary);
  border: 2px solid var(--color-border);
  border-radius: 0 0 0 120px;
  z-index: 0;
  opacity: 0.4;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-btn);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.hero-accent {
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}

.hero-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-tags span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.75rem;
  box-shadow: 2px 2px 0 var(--color-border);
}

.hero-tags span i { color: var(--color-accent); font-size: 0.75rem; }

.hero-visual { position: relative; }

.hero-img-block {
  position: relative;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: 8px 8px 0 var(--color-border);
}

.hero-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  display: block;
}

.hero-float-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--color-secondary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.hero-float-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: var(--color-secondary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-float-card strong {
  display: block;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--color-text);
}

.hero-float-card span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   VALUE STRIP
   ============================================ */
.value-strip {
  background: var(--color-primary);
  border-top: 2px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
  padding: 1.25rem 0;
  overflow: hidden;
}

.value-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1.5rem;
  white-space: nowrap;
}

.value-item i { font-size: 1rem; }

.value-divider {
  width: 2px;
  height: 24px;
  background: rgba(245,230,66,0.3);
  flex-shrink: 0;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-text);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.3rem 0.85rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: 2px 2px 0 var(--color-border);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   PRODUCT CATALOG
   ============================================ */
.catalog-section {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--color-card-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translate(-2px, -2px);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f0ede8;
}

.product-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--color-secondary);
  color: var(--color-text);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: 2px 2px 0 var(--color-border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.new-badge {
  background: var(--color-accent);
  color: #fff;
}

.product-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 0;
}

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

.product-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.2rem 0.5rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1.5px solid var(--color-border);
  margin-top: auto;
}

.product-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-text);
}

.btn-add-cart {
  background: var(--color-primary);
  color: var(--color-secondary);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.55rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-add-cart:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translate(-1px,-1px);
  box-shadow: var(--shadow-btn-hover);
}

.btn-add-cart:active {
  transform: translate(1px,1px);
  box-shadow: 1px 1px 0 var(--color-border);
}

/* ============================================
   FEATURE SECTIONS (ZIGZAG)
   ============================================ */
.features-section {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
  border-top: 2px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px dashed rgba(26,26,46,0.15);
}

.feature-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.feature-row-reverse { direction: rtl; }
.feature-row-reverse > * { direction: ltr; }

.feature-img-wrap {
  position: relative;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.feature-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.feature-img-wrap:hover .feature-img { transform: scale(1.03); }

.feature-icon-badge {
  width: 52px;
  height: 52px;
  background: var(--color-secondary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.feature-heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.feature-text-col p { margin-bottom: 1rem; }
.feature-text-col p:last-of-type { margin-bottom: 1.5rem; }

/* ============================================
   TABS SECTION
   ============================================ */
.tabs-section {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.tabs-wrapper {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.tab-nav {
  display: flex;
  border-bottom: 2px solid var(--color-border);
  background: var(--color-primary);
  overflow-x: auto;
  scrollbar-width: none;
}

.tab-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  flex: 1;
  min-width: max-content;
  background: none;
  border: none;
  border-right: 2px solid rgba(255,255,255,0.1);
  color: rgba(245,230,66,0.6);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tab-btn:last-child { border-right: none; }

.tab-btn:hover { color: var(--color-secondary); background: rgba(255,255,255,0.05); }

.tab-btn.active {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 800;
}

.tab-panels { background: var(--color-surface); }

.tab-panel {
  display: none;
  padding: 2.5rem;
}

.tab-panel.active { display: block; }

.tab-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.tab-panel-text h4 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.tab-panel-text p { margin-bottom: 0.85rem; font-size: 0.95rem; }

.tab-panel-img {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.tab-panel-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* ============================================
   LOOKBOOK / CAROUSEL
   ============================================ */
.lookbook-section {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
  border-top: 2px solid var(--color-border);
}

.lookbook-card {
  background: var(--color-card-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  height: 100%;
  transition: all 0.2s ease;
}

.lookbook-card:hover {
  transform: translate(-2px,-2px);
  box-shadow: var(--shadow-card-hover);
}

.lookbook-img-wrap { overflow: hidden; }

.lookbook-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.lookbook-card:hover .lookbook-img { transform: scale(1.04); }

.lookbook-card-body { padding: 1.25rem; }

.lookbook-label {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-text);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: 2px 2px 0 var(--color-border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.lookbook-card-body h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.lookbook-card-body p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Splide overrides */
.splide__arrow {
  background: var(--color-primary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  box-shadow: var(--shadow-btn);
  transition: all 0.15s ease;
}

.splide__arrow:hover { transform: translate(-1px,-1px); box-shadow: var(--shadow-btn-hover); }

.splide__arrow svg { fill: var(--color-secondary); }

.splide__pagination__page {
  background: var(--color-border);
  border: 1.5px solid var(--color-border);
  width: 10px;
  height: 10px;
  transition: all 0.2s ease;
}

.splide__pagination__page.is-active {
  background: var(--color-accent);
  transform: scale(1.3);
}

/* ============================================
   GIFT CARD CTA
   ============================================ */
.gift-cta-section {
  padding: var(--space-2xl) 0;
  background: var(--color-primary);
  border-top: 2px solid var(--color-border);
}

.gift-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.gift-cta-text .section-label { color: var(--color-secondary); }

.gift-cta-text h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.gift-cta-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.gift-cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.gift-cta-actions .btn-outline {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
  box-shadow: 3px 3px 0 var(--color-secondary);
}

.gift-cta-actions .btn-outline:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.gift-card-mockup {
  width: 280px;
  flex-shrink: 0;
}

.gift-card-inner {
  background: linear-gradient(135deg, #2a2a4e 0%, #1a1a2e 100%);
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 8px 8px 0 var(--color-secondary);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gift-card-amount {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-secondary);
  letter-spacing: 0.05em;
}

.gift-card-code {
  font-family: monospace;
  font-size: 1rem;
  color: rgba(245,230,66,0.6);
  letter-spacing: 0.1em;
  border-top: 1px solid rgba(245,230,66,0.2);
  padding-top: 0.75rem;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: calc(var(--nav-height) + 3rem) 0 3rem;
  background: var(--color-primary);
  border-bottom: 2px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--color-secondary);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.12;
}

.page-hero-inner { position: relative; z-index: 1; }

.page-hero .section-label {
  background: var(--color-secondary);
  color: var(--color-text);
}

.page-hero-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.page-hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   VALUES PAGE
   ============================================ */
.values-section {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  transition: all 0.2s ease;
}

.value-card:hover {
  transform: translate(-2px,-2px);
  box-shadow: var(--shadow-card-hover);
}

.value-card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-secondary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.value-card p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 0; }

.mission-section {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
  border-top: 2px solid var(--color-border);
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-text .section-label { margin-bottom: 1rem; }

.mission-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1.5rem;
}

.mission-text p { margin-bottom: 1rem; }

.mission-img {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.mission-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

/* ============================================
   SIZE GUIDE PAGE
   ============================================ */
.size-section {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.size-how-to {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.size-how-to h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--color-text);
}

.measure-steps { display: flex; flex-direction: column; gap: 1.5rem; }

.measure-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.measure-step-num {
  width: 40px;
  height: 40px;
  background: var(--color-secondary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--color-text);
}

.measure-step strong { display: block; font-weight: 700; margin-bottom: 0.25rem; font-size: 1rem; }
.measure-step p { font-size: 0.9rem; margin-bottom: 0; }

.size-table-wrap {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.size-table-wrap h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.table-scroll { overflow-x: auto; }

.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.size-table th {
  background: var(--color-primary);
  color: var(--color-secondary);
  font-weight: 800;
  padding: 0.85rem 1.25rem;
  text-align: left;
  border: 1.5px solid var(--color-border);
  white-space: nowrap;
}

.size-table td {
  padding: 0.75rem 1.25rem;
  border: 1.5px solid rgba(26,26,46,0.15);
  color: var(--color-text);
  font-weight: 500;
}

.size-table tbody tr:nth-child(even) { background: var(--color-bg); }
.size-table tbody tr:hover { background: rgba(245,230,66,0.15); }

.fabric-notes {
  margin-bottom: 3rem;
}

.fabric-notes h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.fabric-notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.fabric-note-card {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  transition: all 0.2s ease;
}

.fabric-note-card:hover {
  transform: translate(-2px,-2px);
  box-shadow: var(--shadow-card-hover);
}

.fabric-note-icon {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.fabric-note-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.fabric-note-card p { font-size: 0.875rem; margin-bottom: 0; }

.length-notes h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.length-intro { margin-bottom: 1.5rem; }

.length-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.length-card {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
}

.length-card h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--color-text); }
.length-card p { font-size: 0.875rem; margin-bottom: 0; }

/* ============================================
   GIFT CARD PAGE
   ============================================ */
.giftcard-section {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.gc-steps {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.gc-steps h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--color-text);
}

.gc-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1.5px dashed rgba(26,26,46,0.15);
}

.gc-step:last-child { border-bottom: none; padding-bottom: 0; }
.gc-step:first-of-type { padding-top: 0; }

.gc-step-num {
  width: 52px;
  height: 52px;
  background: var(--color-primary);
  color: var(--color-secondary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.gc-step-content h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.gc-step-content p { font-size: 0.9rem; margin-bottom: 0; }

.gc-tip {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(245,230,66,0.2);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-text);
}

.gc-tip i { color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }

.gc-faq {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.gc-faq h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1.5px solid rgba(26,26,46,0.15); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s ease;
}

.faq-q:hover { color: var(--color-accent); }
.faq-q[aria-expanded="true"] { color: var(--color-accent); }
.faq-q[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-q i { transition: transform 0.3s ease; flex-shrink: 0; font-size: 0.875rem; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a p {
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.gc-cta {
  background: var(--color-secondary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
  text-align: center;
}

.gc-cta h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--color-text); }
.gc-cta p { color: var(--color-text-muted); margin-bottom: 1.5rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.contact-form-card {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
}

.contact-form-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--color-text);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-main);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
  transition: all 0.2s ease;
  box-shadow: 2px 2px 0 rgba(26,26,46,0.08);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 3px 3px 0 var(--color-accent);
  background: var(--color-surface);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-check { flex-direction: row; align-items: flex-start; gap: 0.75rem; }

.check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

.check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.check-label a { color: var(--color-accent); font-weight: 600; }

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.form-row .form-group { margin-bottom: 0; }

.contact-info-card, .contact-topics-card {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.contact-info-card:last-child, .contact-topics-card:last-child { margin-bottom: 0; }

.contact-info-card h3, .contact-topics-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-icon {
  width: 38px;
  height: 38px;
  background: var(--color-secondary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-text);
  flex-shrink: 0;
}

.contact-info-item strong { display: block; font-weight: 700; font-size: 0.875rem; margin-bottom: 0.25rem; }
.contact-info-item p { font-size: 0.875rem; margin-bottom: 0; }
.contact-info-item a:hover { color: var(--color-accent); }

.contact-topics { display: flex; flex-direction: column; gap: 0.6rem; }

.contact-topics li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding: 0.4rem 0;
  font-weight: 500;
}

.contact-topics li i { color: var(--color-accent); font-size: 0.875rem; width: 16px; }

.map-section { margin-top: 2rem; }

.map-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.map-wrap {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-section {
  padding: calc(var(--nav-height) + 3rem) 0 var(--space-2xl);
  background: var(--color-bg);
}

.checkout-section .page-hero-heading {
  color: var(--color-border);
} 

.checkout-header {
  margin-bottom: 2.5rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: flex-start;
}

.checkout-block {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.checkout-block h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkout-step-num {
  width: 32px;
  height: 32px;
  background: var(--color-secondary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: 2px 2px 0 var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.checkout-block-desc { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 1rem; }

.gift-card-field {
  display: flex;
  gap: 0.75rem;
}

.gift-card-field input {
  flex: 1;
  font-family: var(--font-main);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
  transition: all 0.2s ease;
  outline: none;
  font-family: monospace;
}

.gift-card-field input:focus {
  border-color: var(--color-accent);
  box-shadow: 3px 3px 0 var(--color-accent);
}

.btn-apply {
  background: var(--color-primary);
  color: var(--color-secondary);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-apply:hover {
  transform: translate(-1px,-1px);
  box-shadow: var(--shadow-btn-hover);
  background: var(--color-accent);
  color: #fff;
}

.gift-card-msg {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gift-card-success {
  background: rgba(34,197,94,0.1);
  border: 1.5px solid #22c55e;
  color: #166534;
}

.gift-card-error {
  background: rgba(232,72,85,0.1);
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent-dark);
}

.btn-checkout-submit {
  font-size: 1rem;
  padding: 1rem 2rem;
}

.checkout-secure-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.order-summary-card {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
}

.order-summary-card h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  padding-bottom: 1rem;
  border-bottom: 1.5px solid var(--color-border);
}

.checkout-items-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--color-text);
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(26,26,46,0.1);
}

.checkout-item:last-child { border-bottom: none; }
.checkout-item em { color: var(--color-text-muted); font-style: normal; }

.order-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 1.15rem;
  padding-top: 1rem;
  border-top: 2px solid var(--color-border);
  margin-bottom: 1rem;
}

.order-summary-note {
  background: rgba(245,230,66,0.2);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-section {
  padding: calc(var(--nav-height) + 4rem) 0 var(--space-2xl);
  background: var(--color-bg);
}

.thanks-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.thanks-icon {
  font-size: 4rem;
  color: #22c55e;
  margin-bottom: 1.5rem;
}

.thanks-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.thanks-sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.thanks-gc-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(34,197,94,0.1);
  border: 2px solid #22c55e;
  border-radius: var(--radius-md);
  box-shadow: 3px 3px 0 #22c55e;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: #166534;
  margin-bottom: 2.5rem;
}

.thanks-gc-notice i { font-size: 1.2rem; }

.thanks-order-summary {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  text-align: left;
  margin-bottom: 2.5rem;
}

.thanks-order-summary h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid var(--color-border);
}

.thanks-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(26,26,46,0.1);
  color: var(--color-text);
}

.thanks-total {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 1.1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--color-border);
  margin-top: 0.5rem;
}

.thanks-next-steps {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  text-align: left;
  margin-bottom: 2.5rem;
}

.thanks-next-steps h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.thanks-steps { display: flex; flex-direction: column; gap: 1.25rem; }

.thanks-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.thanks-step-icon {
  width: 40px;
  height: 40px;
  background: var(--color-secondary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-text);
  flex-shrink: 0;
}

.thanks-step strong { display: block; font-weight: 700; font-size: 0.95rem; margin-bottom: 0.25rem; }
.thanks-step p { font-size: 0.875rem; margin-bottom: 0; }

.thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-section {
  padding: calc(var(--nav-height) + 3rem) 0 var(--space-2xl);
  background: var(--color-bg);
}

.legal-inner { max-width: 820px; margin: 0 auto; }

.legal-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-border);
}

.legal-header h1 { font-size: 2.5rem; font-weight: 800; color: var(--color-text); margin-bottom: 0.5rem; }

.legal-date {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-bottom: 0;
}

.legal-body h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-text);
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--color-secondary);
}

.legal-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 1.25rem 0 0.5rem;
}

.legal-body p { font-size: 0.95rem; margin-bottom: 1rem; line-height: 1.75; }

.legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-body ul li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.legal-body a { color: var(--color-accent); font-weight: 600; }
.legal-body a:hover { text-decoration: underline; }

.legal-body address {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 1rem;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.875rem;
}

.cookie-table th {
  background: var(--color-primary);
  color: var(--color-secondary);
  font-weight: 700;
  padding: 0.6rem 1rem;
  text-align: left;
  border: 1.5px solid var(--color-border);
}

.cookie-table td {
  padding: 0.6rem 1rem;
  border: 1.5px solid rgba(26,26,46,0.15);
  color: var(--color-text-muted);
}

.cookie-table tbody tr:nth-child(even) { background: var(--color-bg); }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 600px;
  background: var(--color-primary);
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-lg);
  box-shadow: 6px 6px 0 var(--color-secondary);
  z-index: 9999;
  padding: 1.5rem;
  animation: slideUp 0.4s ease;
}

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

.cookie-inner { display: flex; flex-direction: column; gap: 1rem; }

.cookie-text strong {
  display: block;
  color: var(--color-secondary);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.cookie-text p {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.btn-cookie {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s ease;
  border: 2px solid;
}

.btn-cookie-accept {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
}

.btn-cookie-accept:hover {
  background: #e8d800;
  transform: translate(-1px,-1px);
  box-shadow: 2px 2px 0 rgba(255,255,255,0.3);
}

.btn-cookie-reject {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.3);
}

.btn-cookie-reject:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.btn-cookie-customize {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
}

.btn-cookie-customize:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

.cookie-customize-panel {
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 0.5rem;
}

.cookie-category {
  margin-bottom: 0.75rem;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  cursor: pointer;
}

.cookie-category label strong { color: #fff; }
.cookie-category input[type="checkbox"] { accent-color: var(--color-secondary); width: 16px; height: 16px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-primary);
  border-top: 2px solid var(--color-border);
  padding: var(--space-xl) 0 0;
}

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

.footer-brand img { margin-bottom: 1rem; }

.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-brand address {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-brand address a {
  color: var(--color-secondary);
  transition: opacity 0.2s;
}

.footer-brand address a:hover { opacity: 0.8; }

.footer-nav-group h4 {
  color: var(--color-secondary);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-nav-group ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-nav-group ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-nav-group ul li a:hover { color: var(--color-secondary); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .hero-section::before { display: none; }
  .hero-section { min-height: auto; padding-bottom: 4rem; }
  .hero-scroll-hint { display: none; }

  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row-reverse { direction: ltr; }

  .tab-panel-inner { grid-template-columns: 1fr; }
  .tab-panel-img { order: -1; }
  .tab-panel-img img { height: 220px; }

  .gift-cta-inner { grid-template-columns: 1fr; }
  .gift-card-mockup { max-width: 280px; }

  .mission-inner { grid-template-columns: 1fr; }
  .mission-img img { height: 300px; }

  .contact-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .value-strip-inner { gap: 0; }
  .value-item { padding: 0.5rem 1rem; font-size: 0.8rem; }
  .value-divider { display: none; }

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

  .tab-btn { font-size: 0.8rem; padding: 0.85rem 1rem; }
  .tab-panel { padding: 1.5rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-main-img { height: 380px; }
  .hero-float-card { bottom: -16px; left: -12px; padding: 0.75rem 1rem; }

  .feature-img { height: 280px; }

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

  .gc-step { flex-direction: column; gap: 1rem; }
  .gc-step-num { width: 40px; height: 40px; font-size: 0.9rem; }

  .measure-step { flex-direction: column; gap: 0.75rem; }

  .gift-cta-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { width: 100%; justify-content: center; }
  .hero-tags { gap: 0.5rem; }

  .tab-nav { flex-direction: column; }
  .tab-btn { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }

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

  .checkout-grid { grid-template-columns: 1fr; }
  .gift-card-field { flex-direction: column; }
  .btn-apply { width: 100%; }

  .thanks-actions { flex-direction: column; align-items: center; }
  .thanks-actions .btn-primary, .thanks-actions .btn-outline { width: 100%; justify-content: center; }

  .form-row { grid-template-columns: 1fr; }

  .cookie-banner { left: 1rem; right: 1rem; bottom: 1rem; }
  .cookie-actions { flex-direction: column; }
  .btn-cookie { text-align: center; }
}