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

:root {
  --black: #1a1a1a;
  --off-white: #f5f3ef;
  --warm-white: #faf9f6;
  --accent: #1a6b6b;
  --mid: #888;
  --border: #e2e0db;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--black);
  overflow-x: hidden;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement {
  background: var(--black);
  color: #fff;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 20px;
  font-weight: 400;
}

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-left { display: flex; gap: 32px; }
.nav-left a, .nav-right a {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  font-weight: 400;
  transition: color 0.2s;
}
.nav-left a:hover, .nav-right a:hover { color: var(--accent); }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  text-decoration: none;
}

.logo-owl {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.03em;
}

.nav-right {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  align-items: center;
}

.nav-right button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--black);
  transition: color 0.2s;
}
.nav-right button:hover { color: var(--accent); }

.cart-btn {
  background: var(--black) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  font-size: 12px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: background 0.2s !important;
}
.cart-btn:hover { background: var(--accent) !important; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  overflow: hidden;
}

.hero-left {
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: 'M';
  position: absolute;
  top: -60px;
  right: -40px;
  font-family: 'Playfair Display', serif;
  font-size: 400px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 28px;
}

.hero-title em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-ctas { display: flex; gap: 16px; align-items: center; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 400;
  transition: opacity 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.85; }

.btn-ghost {
  background: none;
  color: rgba(255,255,255,0.6);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: #fff; }
.btn-ghost::after { content: '→'; font-size: 16px; }

.hero-right {
  background: var(--off-white);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}

.hero-img-block {
  background: var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-block.tall {
  grid-row: span 2;
  grid-column: 2;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ddd 0%, #c5c5c5 100%);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  font-family: 'DM Sans', sans-serif;
}

/* Hero product cards (simulate clothing photos) */
.card-tee {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-tee-1 { background: #2a2a2a; }
.card-tee-2 { background: #c8b89a; }
.card-tee-3 { background: #4a6741; }

.tee-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,0.9);
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.tee-icon {
  font-size: 60px;
  opacity: 0.3;
}

/* ── MARQUEE ── */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
  background: var(--warm-white);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 0 40px;
  font-weight: 400;
}

.marquee-track .dot {
  color: var(--accent);
  padding: 0;
  letter-spacing: 0;
  font-size: 14px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── CATEGORIES ── */
.section { max-width: 1400px; margin: 0 auto; padding: 80px 40px; }
.section-sm { padding: 60px 40px; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 48px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.1;
}

.section-title em { font-style: italic; color: var(--accent); }

.see-all {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  font-weight: 400;
}
.see-all:hover { color: var(--accent); border-color: var(--accent); }

.categories-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3px;
  height: 520px;
}

.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.cat-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-card:hover .cat-bg { transform: scale(1.04); }

.cat-bg-1 { background: linear-gradient(160deg, #1a1a1a 0%, #3a2a1a 100%); }
.cat-bg-2 { background: linear-gradient(160deg, #8b4a2a 0%, #c4754a 100%); }
.cat-bg-3 { background: linear-gradient(160deg, #2a3a2a 0%, #4a6a3a 100%); }

.cat-icon-large { font-size: 100px; opacity: 0.2; }

.cat-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: #fff;
}

.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
}

.cat-count {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── PRODUCTS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.product-card {
  background: var(--warm-white);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.product-img {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}

.product-card:hover .product-bg { transform: scale(1.05); }

.product-bg-a { background: #e8e0d5; }
.product-bg-b { background: #d5dde8; }
.product-bg-c { background: #e8d5d5; }
.product-bg-d { background: #d5e8d8; }
.product-bg-e { background: #2a2a2a; }
.product-bg-f { background: #3a3022; }
.product-bg-g { background: #8b2a2a; }
.product-bg-h { background: #2a4a3a; }

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 500;
}

.product-quick {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  background: rgba(26,26,26,0.92);
  color: #fff;
  text-align: center;
  padding: 14px;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: bottom 0.3s ease;
  font-weight: 400;
}

.product-card:hover .product-quick { bottom: 0; }

.product-info {
  padding: 18px 20px 22px;
  border-top: 1px solid var(--border);
}

.product-name {
  font-size: 13.5px;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--black);
  letter-spacing: 0.01em;
}

.product-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

.product-price .original {
  font-size: 12px;
  color: var(--mid);
  text-decoration: line-through;
  margin-right: 8px;
  font-weight: 400;
}

/* ── STORY BANNER ── */
.story-banner {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  overflow: hidden;
}

.story-visual {
  background: linear-gradient(135deg, #2a1a0a 0%, #4a3020 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.story-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(255,255,255,0.015) 30px,
    rgba(255,255,255,0.015) 31px
  );
}

.story-owl-large {
  font-size: 180px;
  opacity: 0.15;
  position: absolute;
}

.story-content {
  padding: 70px 70px 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}

.story-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.story-title em { font-style: italic; color: var(--accent); }

.story-body {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 44px;
  font-weight: 300;
}

.story-stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 44px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #fff;
  font-weight: 400;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ── INSTAGRAM STRIP ── */
.insta-section { background: var(--off-white); }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}

.insta-cell {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.insta-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.insta-cell:hover .insta-bg { transform: scale(1.08); }

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-cell:hover .insta-overlay {
  background: rgba(26,26,26,0.5);
}

.insta-icon {
  color: #fff;
  font-size: 22px;
  opacity: 0;
  transition: opacity 0.3s;
  letter-spacing: 0;
}

.insta-cell:hover .insta-icon { opacity: 1; }

.insta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px 36px;
}

.insta-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
}

.insta-handle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.insta-handle:hover { color: var(--accent); }

.insta-grid-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 60px;
}

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--black);
  padding: 80px 40px;
  text-align: center;
}

.nl-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
  font-weight: 500;
}

.nl-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 52px);
  color: #fff;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.1;
}
.nl-title em { font-style: italic; color: var(--accent); }

.nl-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 44px;
  font-weight: 300;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

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

.nl-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.2s;
}
.nl-input::placeholder { color: rgba(255,255,255,0.25); }
.nl-input:focus { border-color: rgba(255,255,255,0.3); }

.nl-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nl-btn:hover { opacity: 0.85; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 60px 40px 40px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 28px;
  font-weight: 300;
}

.footer-socials { display: flex; gap: 16px; }

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 500;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 300;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
}

.footer-payments { display: flex; gap: 8px; align-items: center; }

.payment-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 10px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-left > * { animation: fadeUp 0.8s ease both; }
.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.3s; }
.hero-left > *:nth-child(4) { animation-delay: 0.4s; }
.hero-left > *:nth-child(5) { animation-delay: 0.5s; }

/* ── FILTER BAR ── */
.filter-bar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.filter-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 16px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--mid);
  white-space: nowrap;
  transition: all 0.2s;
  margin-bottom: -1px;
  font-weight: 400;
}

.filter-btn.active, .filter-btn:hover {
  color: var(--black);
  border-bottom-color: var(--black);
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--black);
  padding: 60px 40px;
  text-align: center;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
}

.page-title em { font-style: italic; color: var(--accent); }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.breadcrumb a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.6); }

/* ── SHOP PAGE ── */
.shop-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
}

.sidebar {
  position: sticky;
  top: 90px;
  height: fit-content;
}

.sidebar-section {
  margin-bottom: 40px;
}

.sidebar-title {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
  font-weight: 500;
}

.category-list {
  list-style: none;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  font-size: 14px;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  padding: 6px 0;
}

.category-list a:hover, .category-list a.active {
  color: var(--black);
}

.category-list .count {
  color: var(--mid);
  font-size: 12px;
  margin-left: 8px;
}

.price-filter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-filter label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--mid);
  cursor: pointer;
}

.price-filter input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.shop-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.shop-products .product-card {
  background: var(--warm-white);
}

/* ── PRODUCT DETAIL ── */
.product-detail {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.product-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gallery-thumb {
  aspect-ratio: 3/4;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  border: 2px solid transparent;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  opacity: 1;
  border-color: var(--black);
}

.gallery-main {
  aspect-ratio: 3/4;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 140px;
}

.gallery-thumb:hover, .gallery-thumb.active {
  opacity: 1;
}

.product-info-main {
  padding-top: 20px;
}

.product-category {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 12px;
}

.product-title-main {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
}

.product-price-main {
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 24px;
}

.product-price-main .original {
  font-size: 16px;
  color: var(--mid);
  text-decoration: line-through;
  margin-right: 12px;
  font-weight: 400;
}

.product-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

.size-selector {
  margin-bottom: 24px;
}

.size-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
  display: block;
  font-weight: 500;
}

.size-options {
  display: flex;
  gap: 10px;
}

.size-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: var(--warm-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.size-btn:hover {
  border-color: var(--black);
}

.size-btn.active {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--warm-white);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
}

.qty-btn:hover {
  border-color: var(--black);
}

.qty-input {
  width: 60px;
  height: 40px;
  border: 1px solid var(--border);
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
}

.add-to-cart-btn {
  width: 100%;
  background: var(--black);
  color: #fff;
  border: none;
  padding: 18px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 16px;
}

.add-to-cart-btn:hover {
  background: var(--accent);
}

.wishlist-btn {
  width: 100%;
  background: none;
  border: 1px solid var(--border);
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.wishlist-btn:hover {
  border-color: var(--black);
}

.product-meta {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  margin-top: 32px;
}

.meta-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
}

.meta-label {
  color: var(--mid);
}

.meta-value {
  color: var(--black);
}

/* ── CART PAGE ── */
.cart-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
}

.cart-items {
  border: 1px solid var(--border);
}

.cart-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 80px;
  padding: 16px 24px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 80px;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.cart-product {
  display: flex;
  gap: 20px;
}

.cart-product-img {
  width: 100px;
  height: 130px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.cart-product-info h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.cart-product-info p {
  font-size: 12px;
  color: var(--mid);
}

.cart-price {
  font-size: 14px;
  font-weight: 500;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
}

.cart-qty input {
  width: 40px;
  height: 28px;
  border: 1px solid var(--border);
  text-align: center;
}

.cart-remove {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--mid);
  transition: color 0.2s;
}

.cart-remove:hover {
  color: #c00;
}

.cart-summary {
  background: var(--off-white);
  padding: 32px;
  height: fit-content;
}

.summary-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 14px;
}

.summary-row.total {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 16px;
  font-weight: 500;
  font-size: 16px;
}

.coupon-form {
  display: flex;
  gap: 0;
  margin: 24px 0;
}

.coupon-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-right: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
}

.coupon-btn {
  padding: 12px 20px;
  background: var(--black);
  color: #fff;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.checkout-btn {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 16px;
  transition: opacity 0.2s;
}

.checkout-btn:hover {
  opacity: 0.85;
}

/* ── CHECKOUT PAGE ── */
.checkout-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
}

.checkout-form h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 24px;
}

.form-section {
  margin-bottom: 40px;
}

.form-section-title {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--mid);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--black);
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
}

.payment-option:hover,
.payment-option.active {
  border-color: var(--black);
}

.payment-option input {
  accent-color: var(--accent);
}

.payment-option span {
  font-size: 14px;
}

.checkout-summary {
  background: var(--off-white);
  padding: 32px;
  height: fit-content;
}

.order-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.order-item-img {
  width: 60px;
  height: 80px;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.order-item-details h4 {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}

.order-item-details p {
  font-size: 12px;
  color: var(--mid);
}

.order-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.place-order-btn {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 24px;
  transition: opacity 0.2s;
}

.place-order-btn:hover {
  opacity: 0.85;
}

/* ── ABOUT PAGE ── */
.about-hero {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}

.about-visual {
  background: linear-gradient(135deg, #2a1a0a 0%, #4a3020 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 200px;
  opacity: 0.15;
}

.about-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.about-title em { font-style: italic; color: var(--accent); }

.about-text {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 480px;
}

.about-stats {
  background: var(--off-white);
  padding: 80px 40px;
}

.stats-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  color: var(--black);
  display: block;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}

.values-section {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.values-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 60px;
}

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

.value-item {
  text-align: center;
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.value-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 400;
}

.value-item p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 24px;
  font-weight: 400;
}

.contact-info p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-text h4 {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-text p, .contact-text a {
  font-size: 14px;
  color: var(--mid);
  text-decoration: none;
}

.contact-text a:hover {
  color: var(--accent);
}

.contact-form {
  background: var(--off-white);
  padding: 40px;
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: 400;
}

.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: var(--black);
  color: #fff;
  border: none;
  padding: 16px 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: var(--accent);
}

.map-section {
  background: var(--off-white);
  padding: 80px 40px;
  text-align: center;
}

.map-placeholder {
  max-width: 1400px;
  margin: 0 auto;
  height: 400px;
  background: linear-gradient(135deg, #ddd 0%, #ccc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--mid);
  letter-spacing: 0.1em;
}

/* ── ACCOUNT PAGE ── */
.account-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
}

.account-sidebar {
  border: 1px solid var(--border);
  padding: 24px;
  height: fit-content;
}

.account-nav-item {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.account-nav-item:last-child {
  border-bottom: none;
}

.account-nav-item:hover,
.account-nav-item.active {
  color: var(--black);
}

.account-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 24px;
  font-weight: 400;
}

.welcome-banner {
  background: var(--off-white);
  padding: 40px;
  margin-bottom: 40px;
}

.welcome-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 400;
}

.welcome-banner p {
  color: var(--mid);
  font-size: 14px;
}

.orders-table {
  width: 100%;
  border: 1px solid var(--border);
}

.orders-table th {
  text-align: left;
  padding: 16px;
  background: var(--off-white);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.orders-table td {
  padding: 16px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}

.order-status {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.order-status.processing {
  background: #e8f4f4;
  color: var(--accent);
}

.order-status.shipped {
  background: #e8f4e8;
  color: #2a6b2a;
}

.order-status.completed {
  background: #f5f5f5;
  color: var(--mid);
}

.login-register {
  max-width: 500px;
  margin: 60px auto;
  padding: 40px;
  border: 1px solid var(--border);
}

.login-register h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 400;
}

.login-register .form-group {
  margin-bottom: 20px;
}

.login-register input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}

.login-register button {
  width: 100%;
  background: var(--black);
  color: #fff;
  border: none;
  padding: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.login-register button:hover {
  background: var(--accent);
}

.login-register p {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--mid);
}

.login-register a {
  color: var(--accent);
  text-decoration: none;
}

/* ── POLICIES PAGE ── */
.policies-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
}

.policies-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 400;
}

.policy-section {
  margin-bottom: 48px;
}

.policy-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 400;
}

.policy-section p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-section ul {
  margin-left: 20px;
}

.policy-section li {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ── EMPTY STATES ── */
.empty-cart {
  text-align: center;
  padding: 80px 40px;
}

.empty-cart-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.empty-cart h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 400;
}

.empty-cart p {
  color: var(--mid);
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .categories-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .story-banner { grid-template-columns: 1fr; }
  .story-visual { min-height: 260px; }
  .shop-grid { grid-template-columns: 1fr; }
  .shop-products { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; }
  .product-gallery { grid-template-columns: 1fr; }
  .gallery-thumbs { flex-direction: row; }
  .cart-page { grid-template-columns: 1fr; }
  .checkout-page { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; }
  .about-visual { min-height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .account-page { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .header-inner { padding: 0 20px; }
  .section { padding: 60px 20px; }
}
