/* ═══════════════════════════════════════════════════
   옷결 OTT_GYEOL — Design System & Styles
   Premium Women's Store — Gold, Cream, Beige palette
   ═══════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
  /* Gold palette */
  --gold: #b8965a;
  --gold-light: #d4b683;
  --gold-muted: #c9a96e;
  --gold-dark: #8a6d3b;

  /* Warm neutrals */
  --cream: #faf6f0;
  --cream-dark: #f0e8da;
  --beige: #e8ddd0;
  --beige-dark: #d4c5b0;
  --sand: #c7b9a5;
  --taupe: #9e8e7e;
  --brown: #6b5b4a;
  --charcoal: #3a3530;
  --dark: #2a2520;
  --black: #1a1714;

  /* Accent */
  --blush: #e8c4b8;
  --rose: #c4928a;
  --sage: #b8c4b0;

  /* Functional */
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(26, 23, 20, 0.06);
  --shadow-md: 0 4px 20px rgba(26, 23, 20, 0.08);
  --shadow-lg: 0 8px 40px rgba(26, 23, 20, 0.12);
  --shadow-gold: 0 4px 20px rgba(184, 150, 90, 0.15);

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

  /* Spacing */
  --header-height: 70px;
  --section-padding: 100px;
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  background: var(--charcoal);
  color: var(--cream-dark);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 300;
}

.announcement-bar p {
  animation: slideText 20s linear infinite;
}

@keyframes slideText {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-5px); }
}

/* ─── HEADER ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 185, 165, 0.2);
  transition: all 0.4s ease;
}

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

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

/* Logo */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.75;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  /* 흰 배경을 투명하게 처리하고 로고만 표시 */
  mix-blend-mode: multiply;
  transition: opacity 0.3s ease;
}

.logo:hover .logo-img {
  opacity: 0.7;
}

/* 모바일 로고 */
.mobile-nav-logo {
  height: 40px;
  width: auto;
  mix-blend-mode: multiply;
}

/* 푸터 로고 — 어두운 배경에서 밝게 */
.footer-logo-img {
  height: 44px;
  width: auto;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.8;
}

/* Navigation */
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--brown);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

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

.cart-link {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -14px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 500;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.has-dropdown {
  padding: 4px 10px !important;
  border-radius: 20px;
  transition: background 0.2s ease, color 0.2s ease;
}

.has-dropdown:hover {
  background: rgba(184, 150, 90, 0.1);
  color: var(--gold) !important;
}

.has-dropdown:hover::after {
  width: 0 !important;
}

/* ─── ACCOUNT DROPDOWN ─── */


.account-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(26, 23, 20, 0.12);
  border: 1px solid rgba(200, 185, 165, 0.15);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 1100;
}

.account-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--brown);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(184, 150, 90, 0.06);
  color: var(--gold);
}

.dropdown-admin {
  color: var(--gold-dark);
  font-weight: 400;
}

.dropdown-logout {
  color: var(--rose);
  border-top: 1px solid rgba(200, 185, 165, 0.12);
  margin-top: 4px;
  padding-top: 12px;
}

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

.mobile-menu-btn span {
  width: 22px;
  height: 1.5px;
  background: var(--brown);
  transition: all 0.3s ease;
  display: block;
}

/* ─── MOBILE NAV ─── */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 23, 20, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: var(--cream);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  padding: 0;
}

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

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--beige);
}

.mobile-nav-close {
  font-size: 1.8rem;
  color: var(--brown);
  line-height: 1;
}

.mobile-nav-links {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  padding: 16px 0;
  border-bottom: 1px solid rgba(200, 185, 165, 0.2);
}

.mobile-nav-link:hover {
  color: var(--gold);
  padding-left: 8px;
}

.mobile-nav-sub {
  margin-top: auto;
  padding: 24px;
  border-top: 1px solid var(--beige);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-sub a {
  font-size: 0.8rem;
  color: var(--taupe);
  letter-spacing: 0.04em;
}

.mobile-nav-sub a:hover {
  color: var(--gold);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
  transform-origin: center center;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.04); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* 라이프스타일 사진의 따뜻한 베이지/크림 톤을 살리면서 텍스트 가독성 확보 */
  background:
    linear-gradient(
      to bottom,
      rgba(26, 23, 20, 0.08) 0%,
      rgba(26, 23, 20, 0.0)  35%,
      rgba(26, 23, 20, 0.0)  55%,
      rgba(26, 23, 20, 0.55) 100%
    ),
    linear-gradient(
      100deg,
      rgba(184, 150, 90, 0.06) 0%,
      transparent 60%
    );
}

.hero-content {
  position: absolute;
  bottom: 12%;
  left: calc(8% - 5mm);
  z-index: 2;
  color: var(--cream);
  animation: fadeUp 1.2s ease-out 0.3s both;
}

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

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.38rem, 3.19vw, 2.39rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero-accent {
  color: #C9A96E;
  font-size: 1.3em;
  font-weight: 500;
  text-shadow:
    0 0 8px rgba(184, 150, 90, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.4);
  animation: heroGlow 4s ease-in-out infinite;
}

.hero-accent--brand {
  font-size: 1.3em;
}

@keyframes heroGlow {
  0%, 100% {
    color: #C9A96E;
    text-shadow:
      0 0 8px rgba(184, 150, 90, 0.4),
      0 2px 6px rgba(0, 0, 0, 0.4);
  }
  50% {
    color: #D4B87A;
    text-shadow:
      0 0 14px rgba(184, 150, 90, 0.6),
      0 0 28px rgba(184, 150, 90, 0.25),
      0 2px 6px rgba(0, 0, 0, 0.4);
  }
}

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(250, 246, 240, 0.8);
  margin-bottom: 36px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}

/* ─── SECTION COMMON ─── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* ─── CATEGORIES ─── */
.categories {
  padding: var(--section-padding) 40px;
  background: var(--white);
}

.category-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: all 0.4s ease;
  background: var(--cream);
}

.category-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.category-icon {
  width: 50px;
  height: 50px;
  color: var(--gold);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.1);
}

.category-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.category-card p {
  font-size: 0.7rem;
  color: var(--taupe);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ─── FEATURED PRODUCTS ─── */
.featured {
  padding: var(--section-padding) 40px;
  background: var(--cream);
}

.product-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeIn {
  to { opacity: 1; }
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--beige);
  margin-bottom: 16px;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-image {
  transform: scale(1.06);
}

.product-actions {
  position: absolute;
  right: 12px;
  top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.product-action-btn:hover {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  background: var(--charcoal);
  color: var(--cream);
}

.product-badge.best {
  background: var(--gold);
  color: var(--white);
}

.product-info {
  padding: 0 4px;
}

.product-category {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--taupe);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.product-price {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.02em;
}

.price-original {
  text-decoration: line-through;
  color: var(--sand);
  font-size: 0.8rem;
  margin-right: 8px;
}

.price-sale {
  color: var(--rose);
  font-weight: 500;
}

/* ─── BRAND STORY ─── */
.brand-story {
  padding: var(--section-padding) 40px;
  background: var(--white);
  overflow: hidden;
}

.brand-story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-visual-frame {
  width: 280px;
  height: 280px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  box-shadow: var(--shadow-gold), inset 0 0 60px rgba(184, 150, 90, 0.05);
  overflow: hidden;
}

.brand-logo-img {
  width: 85%;
  height: auto;
  mix-blend-mode: multiply;
}

.floral-ornament {
  position: absolute;
  font-size: 0.9rem;
  color: var(--gold-light);
  opacity: 0.6;
}

.floral-ornament.top-left { top: 25px; left: 35px; }
.floral-ornament.top-right { top: 25px; right: 35px; }
.floral-ornament.bottom-left { bottom: 25px; left: 35px; }
.floral-ornament.bottom-right { bottom: 25px; right: 35px; }

.brand-emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.emblem-og {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
}

.emblem-name {
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  color: var(--brown);
  font-weight: 400;
}

.emblem-sub {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: var(--taupe);
}

.brand-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--charcoal);
  margin: 16px 0 24px;
  letter-spacing: 0.04em;
}

.brand-description {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--taupe);
  font-weight: 300;
  margin-bottom: 36px;
}

/* ─── LOOKBOOK ─── */
.lookbook {
  padding: var(--section-padding) 40px;
  background: var(--cream);
}

.lookbook-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.lookbook-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  animation: fadeIn 0.6s ease forwards;
  animation-delay: var(--delay);
  opacity: 0;
}

.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lookbook-item:hover img {
  transform: scale(1.08);
}

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

.lookbook-item:hover .lookbook-overlay {
  opacity: 1;
}

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

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 400;
  color: var(--cream);
  margin: 12px 0 12px;
  letter-spacing: 0.04em;
}

.newsletter-desc {
  font-size: 0.82rem;
  color: var(--sand);
  font-weight: 300;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

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

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--brown);
  background: transparent;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  outline: none;
  transition: border-color 0.3s ease;
}

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

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

.newsletter-form .btn {
  flex-shrink: 0;
  border-radius: 0;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  color: var(--sand);
  padding: 72px 40px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(200, 185, 165, 0.12);
}

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

.footer-tagline {
  font-size: 0.82rem;
  color: var(--taupe);
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-links-group h4 {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--cream-dark);
  font-weight: 400;
  margin-bottom: 20px;
}

.footer-links-group a {
  display: block;
  font-size: 0.8rem;
  color: var(--taupe);
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.footer-links-group a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.7rem;
  color: var(--brown);
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 72px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .brand-story-inner {
    gap: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
    --section-padding: 56px;
  }

  /* Announcement */
  .announcement-bar {
    font-size: 0.62rem;
    padding: 8px 16px;
  }

  /* Header */
  .header-inner {
    padding: 0 20px;
  }

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

  .nav-left {
    display: none;
  }

  .nav-right {
    gap: 16px;
  }

  #nav-search,
  #nav-account {
    display: none;
  }

  .logo-img {
    height: 40px;
  }

  /* Hero */
  .hero {
    height: 85vh;
    min-height: 500px;
  }

  .hero-content {
    bottom: 15%;
    left: 6%;
    right: 6%;
  }

  .hero-eyebrow {
    font-size: 0.62rem;
  }

  .hero-subtitle {
    font-size: 0.82rem;
    margin-bottom: 28px;
  }

  .btn {
    padding: 13px 32px;
    font-size: 0.72rem;
  }

  /* Categories */
  .categories {
    padding: var(--section-padding) 20px;
  }

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

  .category-card {
    padding: 24px 12px;
  }

  .category-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }

  .category-card h3 {
    font-size: 1rem;
  }

  .category-card p {
    font-size: 0.58rem;
  }

  /* Products */
  .featured {
    padding: var(--section-padding) 20px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-actions {
    opacity: 1;
    transform: translateX(0);
  }

  .product-action-btn {
    width: 32px;
    height: 32px;
  }

  .product-name {
    font-size: 0.88rem;
  }

  .product-price {
    font-size: 0.82rem;
  }

  /* Brand Story */
  .brand-story {
    padding: var(--section-padding) 20px;
  }

  .brand-story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .brand-visual-frame {
    width: 220px;
    height: 220px;
  }

  .emblem-og {
    font-size: 2.4rem;
  }

  .brand-description {
    font-size: 0.85rem;
  }

  /* Lookbook */
  .lookbook {
    padding: var(--section-padding) 12px;
  }

  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
  }

  /* Newsletter */
  .newsletter {
    padding: var(--section-padding) 20px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-form input {
    text-align: center;
  }

  .newsletter-form .btn {
    width: 100%;
    text-align: center;
  }

  /* Footer */
  .footer {
    padding: 48px 20px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE
   ═══════════════════════════════════════════ */
@media (max-width: 420px) {
  .hero {
    height: 75vh;
  }

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

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .category-card {
    padding: 20px 8px;
  }

  .category-card h3 {
    font-size: 0.9rem;
  }
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SMOOTH LOADING ─── */
body.loading {
  overflow: hidden;
}

/* ─── SELECTION ─── */
::selection {
  background: var(--gold-light);
  color: var(--white);
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--beige-dark);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-muted);
}
