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

:root {
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #F5F5F7;
  --border: rgba(0,0,0,0.08);
  --border-hover: rgba(0,0,0,0.18);
  --accent: #003e24;
  --accent-dim: rgba(0,62,36,0.10);
  --accent-glow: rgba(0,62,36,0.25);
  --red: #FF4757;
  --red-dim: rgba(255,71,87,0.08);
  --text: #1D1D1F;
  --text-2: #6E6E73;
  --muted: #9D9DA8;
  --muted-2: #E8E8ED;
  --font-display: 'Outfit', sans-serif;
  --font-ui: 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 72px;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --shadow: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 15px; line-height: 1.65; overflow-x: hidden; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, select, textarea { font-family: inherit; color: inherit; outline: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--muted-2); border-radius: 3px; }

/* ── Utilities ── */
.container { max-width: 1320px; margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; }
.section-sm { padding: 52px 0; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-accent { color: var(--accent); }
.text-red { color: var(--red); }
.text-muted { color: var(--muted); }

.badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 99px;
  font-size: 11px; font-weight: 700;
  font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.05em;
}
.badge-accent { background: var(--accent); color: #faf0e6; border: none; }
.badge-red { background: var(--red-dim); color: var(--red); border: 1px solid rgba(255,71,87,0.2); }
.badge-surface { background: var(--surface-2); color: var(--text-2); border: 1px solid var(--border); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-family: var(--font-ui); font-weight: 700; font-size: 14px; letter-spacing: 0.03em;
  transition: all 0.2s var(--ease); white-space: nowrap; cursor: pointer;
}
.btn-primary { background: var(--accent); color: #faf0e6; border: none; }
.btn-primary:hover { background: #004d2d; box-shadow: 0 0 28px var(--accent-glow); transform: translateY(-1px); }
.btn-danger { background: var(--red); color: #fff; }
.btn-danger:hover { background: #ff6070; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-hover); }
.btn-outline:hover { border-color: var(--text); color: var(--text); background: var(--surface-2); }
.btn-ghost { background: var(--surface-2); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--muted-2); border-color: var(--border-hover); }
.btn-lg { padding: 16px 40px; font-size: 15px; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 16px; font-size: 12px; border-radius: 8px; }
.btn-full { width: 100%; }
.btn-icon { padding: 10px; border-radius: var(--radius); aspect-ratio: 1; }

/* ── Forms ── */
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 12px; font-weight: 700; font-family: var(--font-ui); color: var(--text-2); text-transform: uppercase; letter-spacing: 0.08em; }
.form-input {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px;
  color: var(--text); font-size: 14px; transition: all 0.2s; width: 100%;
}
.form-input:focus { border-color: rgba(0,0,0,0.3); box-shadow: 0 0 0 3px rgba(0,0,0,0.06); }
.form-input::placeholder { color: var(--muted); }
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239D9DA8' fill='none' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.form-stack { display: flex; flex-direction: column; gap: 16px; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.04);
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
}
.nav-left { display: flex; align-items: center; gap: 8px; }
.nav-center { text-align: center; }
.nav-brand { font-family: var(--font-display); font-size: 22px; font-weight: 900; letter-spacing: 0.08em; color: var(--text) !important; transition: opacity 0.2s; }
.nav-brand:hover { opacity: 0.6; }
.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 4px; }
.nav-icon-btn {
  position: relative; width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); color: var(--text-2);
  transition: all 0.2s;
}
.nav-icon-btn:hover { background: var(--surface-2); color: var(--text); }
.nav-icon-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: 5px; right: 5px;
  width: 15px; height: 15px;
  background: var(--text); color: var(--bg);
  font-size: 9px; font-weight: 800; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-ui);
}

/* Hamburger */
.hamburger { display: flex; flex-direction: column; gap: 5px; padding: 10px; border-radius: var(--radius); transition: background 0.2s; }
.hamburger:hover { background: var(--surface-2); }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; transition: all 0.35s var(--ease); transform-origin: center; }
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Menu Overlay ── */
.menu-overlay {
  position: fixed; inset: 0;
  background: #FFFFFF;
  z-index: 999;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s var(--ease);
  overflow-y: auto;
}
.menu-overlay.active { opacity: 1; pointer-events: all; }
.menu-header {
  height: var(--nav-h); flex-shrink: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
  border-bottom: 1px solid var(--border);
}
.menu-brand { font-family: var(--font-display); font-size: 22px; font-weight: 900; letter-spacing: 0.08em; color: var(--text); }
.menu-close-btn {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); color: var(--muted); font-size: 22px;
  transition: all 0.2s; background: var(--surface-2);
}
.menu-close-btn:hover { background: var(--muted-2); color: var(--text); }
.menu-body { flex: 1; padding: 52px 28px 60px; }
.menu-inner { max-width: 1320px; margin: 0 auto; }
.menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px 72px; }
.menu-cat-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: 0.02em;
  color: var(--text); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.menu-cat-title a:hover { opacity: 0.6; }
.menu-cat-list { display: flex; flex-direction: column; gap: 11px; }
.menu-cat-list li a {
  color: var(--text-2); font-size: 14px; display: flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.menu-cat-list li a::before { content: '—'; color: var(--muted); font-size: 12px; transition: color 0.2s; }
.menu-cat-list li a:hover { color: var(--text); padding-left: 4px; }
.menu-cat-list li a:hover::before { color: var(--text); }
.menu-footer-bar { padding: 28px; border-top: 1px solid var(--border); display: flex; gap: 12px; align-items: center; }

/* ── Page Layout ── */
.page-wrap { padding-top: var(--nav-h); min-height: 100vh; }
.page-hero { padding: 52px 0 36px; }
.page-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -0.01em; }
.breadcrumb { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .sep { opacity: 0.35; }

/* ── Section Headers ── */
.section-header { margin-bottom: 44px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 10px auto 0; }
.section-tag {
  display: inline-block;
  background: var(--accent); color: #faf0e6;
  padding: 3px 12px; border-radius: 99px;
  font-size: 11px; font-weight: 700; font-family: var(--font-ui);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.section-title { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
.section-subtitle { color: var(--text-2); font-size: 15px; margin-top: 12px; max-width: 500px; line-height: 1.7; }

/* ── Hero Slider ── */
.hero-slider { position: relative; width: 100%; overflow: hidden; aspect-ratio: 1920/810; max-height: 100vh; }
.slider-track { display: flex; height: 100%; transition: transform 0.75s var(--ease); }
.slide {
  min-width: 100%; height: 100%; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
}
.slide-1 { background: linear-gradient(140deg, #F8FFF0 0%, #EFFFCF 100%); }
.slide-2 { background: linear-gradient(140deg, #F5F0FF 0%, #EDE5FF 100%); }
.slide-3 { background: linear-gradient(140deg, #FFF0F6 0%, #FFE3F0 100%); }
.slide-content {
  position: relative; z-index: 2;
  padding: 0 56px 0 8vw;
}
.slide-tag {
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 20px; display: inline-block;
  background: var(--accent); color: #faf0e6;
  padding: 4px 14px; border-radius: 99px;
}
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 900; line-height: 1.0; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 28px;
}
.slide-subtitle {
  font-size: 16px; color: var(--text-2);
  max-width: 400px; line-height: 1.7; margin-bottom: 40px;
}

.slide-visual {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.phone-mock { position: relative; animation: float 5s ease-in-out infinite; }
.phone-frame {
  width: 220px; height: 450px; border-radius: 40px;
  border: 2px solid rgba(0,0,0,0.1);
  box-shadow: 0 48px 120px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.4);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.phone-frame::before { content: ''; position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 56px; height: 5px; background: rgba(0,0,0,0.25); border-radius: 3px; z-index: 2; }
.phone-frame::after { content: ''; position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); width: 36px; height: 5px; background: rgba(0,0,0,0.15); border-radius: 3px; }
.case-fill-1 { background: linear-gradient(155deg, #CAFF00 0%, #8ADE00 100%); }
.case-fill-2 { background: linear-gradient(155deg, #7C3AED 0%, #4F46E5 100%); }
.case-fill-3 { background: linear-gradient(155deg, #FF4757 0%, #C0392B 100%); }
.phone-glow-1 { filter: drop-shadow(0 0 40px rgba(202,255,0,0.5)); }
.phone-glow-2 { filter: drop-shadow(0 0 40px rgba(124,58,237,0.45)); }
.phone-glow-3 { filter: drop-shadow(0 0 40px rgba(255,71,87,0.45)); }
.slide-bg-text { position: absolute; bottom: -10px; right: -10px; font-family: var(--font-display); font-size: clamp(120px,20vw,240px); line-height: 1; color: rgba(0,0,0,0.04); letter-spacing: -0.02em; pointer-events: none; user-select: none; }

/* Slider Controls */
.slider-nav { position: absolute; bottom: 36px; left: 8vw; display: flex; gap: 8px; z-index: 10; }
.slider-dot { width: 28px; height: 3px; background: rgba(0,0,0,0.12); border-radius: 2px; transition: all 0.35s; cursor: pointer; }
.slider-dot.active { width: 48px; background: var(--text); }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.7); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2); transition: all 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.slider-arrow:hover { background: var(--accent); border-color: var(--accent); color: #000; }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-arrow svg { width: 18px; height: 18px; }

/* ── Slide 4 — Full Media ── */
.slide-media { display: block; position: relative; background: #08080F; overflow: hidden; }

.media-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.media-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(125deg, #07070E 0%, #12102C 45%, #1C1840 100%);
}
.media-placeholder::before {
  content: ''; position: absolute;
  top: -15%; right: 5%;
  width: 650px; height: 650px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,62,36,0.07) 0%, transparent 65%);
}
.media-placeholder::after {
  content: ''; position: absolute;
  bottom: -20%; left: 40%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, transparent 65%);
}
.media-placeholder-icon {
  position: absolute; top: 50%; right: 27%;
  transform: translate(50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.18); pointer-events: none; z-index: 1;
}
.media-placeholder-icon svg { width: 56px; height: 56px; }
.media-placeholder-icon span {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 16px; border-radius: 99px;
}

.media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.42) 50%,
    rgba(0,0,0,0.08) 100%
  );
  z-index: 1;
}

.media-content {
  position: relative; z-index: 2;
  padding: 0 8vw;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 580px;
}
.media-content .slide-tag { background: var(--accent); color: #faf0e6; }
.media-content .slide-title { color: #ffffff; }
.media-content .slide-subtitle { color: rgba(255,255,255,0.68); max-width: 380px; }
.slide-media .slide-bg-text { color: rgba(255,255,255,0.04); }

.btn-light {
  background: rgba(255,255,255,0.1); color: #ffffff;
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-light:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); transform: translateY(-1px); }

/* ── Collections ── */
.collections-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.collection-card { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 1/1; cursor: pointer; }
.collection-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%, transparent 100%); z-index: 1; transition: opacity 0.3s; }
.collection-bg { position: absolute; inset: 0; transition: transform 0.6s var(--ease); }
.collection-card:hover .collection-bg { transform: scale(1.06); }
.coll-bg-1 { background: linear-gradient(135deg, #1A0A40 0%, #2E1060 100%); }
.coll-bg-2 { background: linear-gradient(135deg, #062210 0%, #065F46 100%); }
.coll-bg-3 { background: linear-gradient(135deg, #300808 0%, #7F1D1D 100%); }
.coll-bg-4 { background: linear-gradient(135deg, #0A1530 0%, #1E3A5F 100%); }
.coll-bg-5 { background: linear-gradient(135deg, #0E0E0E 0%, #2A2A2A 100%); }
.coll-bg-6 { background: linear-gradient(135deg, #0D1F2D 0%, #1A3A52 100%); }
.coll-bg-7 { background: linear-gradient(135deg, #1A1208 0%, #3D2A0A 100%); }
.coll-bg-8 { background: linear-gradient(135deg, #0D1A12 0%, #183D26 100%); }
.coll-bg-9 { background: linear-gradient(135deg, #1A0D1A 0%, #3D1A3D 100%); }
.coll-deco { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0.35; }
.collection-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; z-index: 2; }
.collection-name { font-family: var(--font-ui); font-size: 18px; font-weight: 800; color: #FFFFFF; margin-bottom: 4px; }
.collection-count { font-size: 12px; color: rgba(255,255,255,0.45); }
.collection-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 12px; color: #faf0e6; font-family: var(--font-ui); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0; transform: translateY(6px); transition: all 0.3s var(--ease); }
.collection-card:hover .collection-cta { opacity: 1; transform: translateY(0); }

/* ── Products ── */
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.product-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s var(--ease); position: relative; display: flex; flex-direction: column; }
.product-card:hover { border-color: var(--border-hover); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.product-img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--surface-2); cursor: pointer; }
.product-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.case-shape { width: 100px; height: 188px; border-radius: 22px; position: relative; transition: transform 0.3s; }
.product-card:hover .case-shape { transform: scale(1.06) rotate(-2deg); }
.case-shape::before { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 28px; height: 4px; background: rgba(0,0,0,0.25); border-radius: 2px; }
.case-shape::after { content: ''; position: absolute; inset: 0; border-radius: 22px; background: linear-gradient(160deg, rgba(255,255,255,0.25) 0%, transparent 50%); pointer-events: none; }
.case-c1 { background: linear-gradient(155deg, #CAFF00 0%, #8ADE00 100%); box-shadow: 0 12px 40px rgba(202,255,0,0.25); }
.case-c2 { background: linear-gradient(155deg, #7C3AED 0%, #4F46E5 100%); box-shadow: 0 12px 40px rgba(124,58,237,0.2); }
.case-c3 { background: linear-gradient(155deg, #FF6B9D 0%, #C83E68 100%); box-shadow: 0 12px 40px rgba(255,107,157,0.2); }
.case-c4 { background: linear-gradient(155deg, #00D4FF 0%, #0090C8 100%); box-shadow: 0 12px 40px rgba(0,212,255,0.2); }
.case-c5 { background: linear-gradient(155deg, #FF9F43 0%, #CC7820 100%); box-shadow: 0 12px 40px rgba(255,159,67,0.2); }
.case-c6 { background: linear-gradient(155deg, #2ECC71 0%, #1A9950 100%); box-shadow: 0 12px 40px rgba(46,204,113,0.15); }
.case-c7 { background: linear-gradient(155deg, #C8C8C8 0%, #909090 100%); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.case-c8 { background: linear-gradient(155deg, #2A2A3C 0%, #0E0E1A 100%); border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
.product-wishlist {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all 0.2s; opacity: 0; border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist:hover { background: var(--red-dim); color: var(--red); border-color: rgba(255,71,87,0.3); }
.product-wishlist svg { width: 15px; height: 15px; }
.product-badge-wrap { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 4px; }
.product-info { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: 11px; color: var(--muted); font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.product-name { font-family: var(--font-ui); font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars { display: flex; gap: 2px; }
.star { color: #F59E0B; font-size: 12px; line-height: 1; }
.star.empty { color: var(--muted-2); }
.rating-count { font-size: 11px; color: var(--muted); }
.product-price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.product-price { font-family: var(--font-ui); font-size: 17px; font-weight: 800; color: var(--text); }
.product-price-old { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.product-add-btn { width: 100%; margin-top: 12px; }

/* ── Features ── */
.features-wrap { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--muted-2); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.feature-item { background: var(--surface); padding: 36px 28px; text-align: center; transition: background 0.2s; }
.feature-item:hover { background: var(--surface-2); }
.feature-icon { width: 52px; height: 52px; background: var(--accent); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: #faf0e6; }
.feature-icon svg { width: 22px; height: 22px; }
.feature-title { font-family: var(--font-ui); font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.feature-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ── Newsletter ── */
.newsletter-section {
  background: linear-gradient(135deg, #F8FFF8 0%, #FDFFFE 60%, #FFFFFF 100%);
  border: 1px solid rgba(0,62,36,0.15); border-radius: var(--radius-xl);
  padding: 72px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.newsletter-section::before { content: ''; position: absolute; top: -60%; left: 50%; transform: translateX(-50%); width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,62,36,0.08) 0%, transparent 70%); pointer-events: none; }
.newsletter-title { font-family: var(--font-display); font-size: clamp(30px, 4vw, 48px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; color: var(--text); }
.newsletter-sub { color: var(--text-2); font-size: 15px; margin-bottom: 36px; }
.newsletter-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.newsletter-form .form-input { flex: 1; }
.newsletter-hint { font-size: 12px; color: var(--muted); margin-top: 14px; }

/* ── Footer ── */
footer { background: var(--surface-2); border-top: 3px solid var(--accent); padding-top: 72px; margin-top: auto; }
.footer-main { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr; gap: 52px; padding-bottom: 52px; }
.footer-brand { font-family: var(--font-display); font-size: 24px; font-weight: 900; letter-spacing: 0.06em; color: var(--text); margin-bottom: 14px; }
.footer-tagline { color: var(--muted); font-size: 13px; line-height: 1.75; max-width: 260px; margin-bottom: 28px; }
.footer-socials { display: flex; gap: 8px; }
.social-btn { width: 36px; height: 36px; background: var(--surface); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all 0.2s; border: 1px solid var(--border); }
.social-btn:hover { background: var(--text); color: var(--accent); border-color: var(--text); }
.social-btn svg { width: 15px; height: 15px; }
.footer-col-title { font-family: var(--font-ui); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding: 24px 0; display: flex; align-items: center; justify-content: center; }
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-payments { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.payment-badge { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 4px 10px; font-size: 11px; font-weight: 800; color: var(--text-2); font-family: var(--font-ui); letter-spacing: 0.04em; }

/* ── Product Detail ── */
.product-detail-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
.gallery-main { aspect-ratio: 3/4; background: var(--surface-2); border-radius: var(--radius-xl); overflow: hidden; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; position: relative; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.gallery-thumb { aspect-ratio: 1; background: var(--surface-2); border-radius: var(--radius); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; display: flex; align-items: center; justify-content: center; }
.gallery-thumb.active { border-color: var(--text); }
.gallery-thumb:hover { border-color: var(--border-hover); }
.product-detail-info { position: sticky; top: calc(var(--nav-h) + 28px); }
.product-detail-name { font-family: var(--font-ui); font-size: 26px; font-weight: 800; line-height: 1.2; margin-bottom: 12px; color: var(--text); }
.product-detail-price-row { display: flex; align-items: baseline; gap: 12px; margin: 18px 0 28px; }
.product-detail-price { font-family: var(--font-display); font-size: 40px; letter-spacing: -0.02em; color: var(--text); line-height: 1; font-weight: 900; }
.product-detail-price-old { font-size: 22px; color: var(--muted); text-decoration: line-through; font-family: var(--font-ui); }
.variant-label { font-size: 12px; font-weight: 800; font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-2); margin-bottom: 12px; display: block; }
.color-options { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.color-swatch { width: 30px; height: 30px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: all 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.color-swatch.active { border-color: var(--text); transform: scale(1.15); box-shadow: 0 0 0 3px rgba(0,0,0,0.1); }
.color-swatch:hover { transform: scale(1.1); }
.model-options { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.model-btn { padding: 8px 14px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 8px; font-size: 13px; font-family: var(--font-ui); font-weight: 600; cursor: pointer; transition: all 0.2s; color: var(--text-2); }
.model-btn.active { background: var(--accent); border-color: var(--accent); color: #faf0e6; }
.model-btn:hover:not(.active) { border-color: var(--border-hover); color: var(--text); }
.detail-actions { display: flex; gap: 12px; margin-top: 28px; }
.qty-control { display: flex; align-items: center; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.qty-btn { width: 42px; height: 50px; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all 0.2s; font-size: 18px; }
.qty-btn:hover { background: var(--muted-2); color: var(--text); }
.qty-input { width: 42px; text-align: center; background: transparent; border: none; color: var(--text); font-size: 15px; font-weight: 700; }
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-input[type=number] { -moz-appearance: textfield; }
.detail-meta { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.detail-meta-row { display: flex; gap: 8px; font-size: 13px; color: var(--text-2); align-items: center; }
.detail-meta-row svg { width: 16px; height: 16px; color: var(--text); flex-shrink: 0; }
.product-tabs { margin-top: 52px; }
.tab-nav { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 28px; gap: 0; }
.tab-btn { padding: 16px 24px; font-family: var(--font-ui); font-size: 14px; font-weight: 700; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all 0.2s; cursor: pointer; }
.tab-btn.active { color: var(--text); border-bottom-color: var(--accent); }
.tab-btn:hover:not(.active) { color: var(--text); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Reviews ── */
.reviews-summary { display: flex; gap: 32px; align-items: center; padding: 24px; background: var(--surface-2); border-radius: var(--radius-lg); margin-bottom: 24px; }
.review-score { text-align: center; }
.review-score-num { font-family: var(--font-display); font-size: 52px; font-weight: 900; letter-spacing: -0.02em; line-height: 1; color: var(--text); }
.review-score-count { font-size: 12px; color: var(--muted); margin-top: 4px; }
.review-item { padding: 22px 0; border-bottom: 1px solid var(--border); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.reviewer-avatar { width: 36px; height: 36px; background: var(--muted-2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 16px; color: var(--text-2); flex-shrink: 0; }
.reviewer-name { font-family: var(--font-ui); font-size: 14px; font-weight: 700; color: var(--text); }
.review-date { font-size: 12px; color: var(--muted); margin-left: auto; }
.review-text { font-size: 14px; color: var(--text-2); line-height: 1.75; }

/* ── Category Page ── */
.category-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.filter-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.filter-sidebar-content { padding: 24px; }
.filter-mobile-header { display: none; height: 64px; padding: 0 24px; border-bottom: 1px solid var(--border); align-items: center; justify-content: space-between; background: var(--surface); position: sticky; top: 0; z-index: 2; flex-shrink: 0; }
.filter-mobile-title { font-family: var(--font-ui); font-size: 15px; font-weight: 800; color: var(--text); }
.filter-mobile-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); color: var(--muted); font-size: 20px; background: var(--surface-2); transition: all 0.2s; border: 1px solid var(--border); line-height: 1; }
.filter-mobile-close:hover { background: var(--muted-2); color: var(--text); }
.mobile-filter-btn { display: none; }
.filter-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.35); z-index: 498; }
.filter-overlay.open { display: block; }
.price-range-values { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-top: 8px; }
.desc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.filter-section { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.filter-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.filter-title { font-family: var(--font-ui); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-2); margin-bottom: 16px; }
.filter-options { display: flex; flex-direction: column; gap: 10px; }
.filter-check { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.filter-check input { display: none; }
.check-box { width: 18px; height: 18px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 4px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; position: relative; }
.filter-check:hover .check-box { border-color: var(--border-hover); }
.filter-check input:checked + .check-box { background: var(--accent); border-color: var(--accent); }
.filter-check input:checked + .check-box::after { content: ''; display: block; width: 10px; height: 6px; border-left: 2px solid #faf0e6; border-bottom: 2px solid #faf0e6; transform: rotate(-45deg) translateY(-1px); }
.check-label { font-size: 13px; color: var(--text-2); }
.color-filter-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.color-filter-dot { width: 24px; height: 24px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: all 0.2s; }
.color-filter-dot.active, .color-filter-dot:hover { border-color: var(--text); transform: scale(1.15); }
.listing-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.listing-count { font-size: 14px; color: var(--muted); }
.sort-select { background: var(--surface); border: 1px solid var(--border); color: var(--text); padding: 10px 36px 10px 14px; border-radius: var(--radius); font-size: 13px; font-family: var(--font-ui); font-weight: 600; cursor: pointer; transition: border-color 0.2s; }
.sort-select:hover, .sort-select:focus { border-color: var(--border-hover); }

/* Custom select dropdown */
.custom-select { position: relative; }
.custom-select-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  font-size: 13px; font-family: var(--font-ui); font-weight: 600;
  color: var(--text); cursor: pointer; transition: border-color 0.2s;
  white-space: nowrap;
}
.custom-select-btn:hover { border-color: var(--border-hover); }
.custom-select.open .custom-select-btn { border-color: var(--border-hover); border-bottom-color: transparent; border-radius: var(--radius) var(--radius) 0 0; }
.custom-select-btn svg { transition: transform 0.2s; flex-shrink: 0; color: var(--muted); }
.custom-select.open .custom-select-btn svg { transform: rotate(180deg); }
.custom-select-list {
  display: none; position: absolute; top: 100%; right: 0;
  min-width: 100%; background: var(--surface);
  border: 1px solid var(--border-hover); border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 200; overflow: hidden;
}
.custom-select.open .custom-select-list { display: block; }
.custom-select-item {
  padding: 10px 16px; font-size: 13px; font-family: var(--font-ui);
  font-weight: 500; color: var(--text-2); cursor: pointer;
  transition: background 0.15s, color 0.15s; white-space: nowrap;
}
.custom-select-item:hover { background: var(--surface-2); color: var(--text); }
.custom-select-item.active { color: var(--text); font-weight: 700; background: var(--surface-2); }
.pagination { display: flex; align-items: center; gap: 6px; justify-content: center; margin-top: 52px; }
.page-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); font-size: 13px; font-family: var(--font-ui); font-weight: 700; background: var(--surface); border: 1px solid var(--border); color: var(--muted); transition: all 0.2s; cursor: pointer; }
.page-btn.active { background: var(--text); color: var(--accent); border-color: var(--text); }
.page-btn:hover:not(.active) { border-color: var(--border-hover); color: var(--text); }

/* ── Cart ── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.cart-layout > * { min-width: 0; }
.cart-items { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.cart-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-header-title { font-family: var(--font-ui); font-size: 16px; font-weight: 800; color: var(--text); }
.cart-item { display: grid; grid-template-columns: 88px 1fr auto; gap: 18px; padding: 20px 24px; border-bottom: 1px solid var(--border); align-items: center; }
.cart-item > div:nth-child(2) { min-width: 0; }
.cart-item:last-child { border-bottom: none; }
.cart-item-img { width: 88px; height: 110px; background: var(--surface-2); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid var(--border); flex-shrink: 0; }
.cart-item-name { font-family: var(--font-ui); font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.cart-item-variant { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.cart-item-price { font-family: var(--font-ui); font-size: 18px; font-weight: 800; color: var(--text); text-align: right; white-space: nowrap; }
.cart-remove-btn { font-size: 12px; color: var(--muted); cursor: pointer; display: block; text-align: right; margin-top: 8px; transition: color 0.2s; }
.cart-remove-btn:hover { color: var(--red); }
.cart-summary { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; position: sticky; top: calc(var(--nav-h) + 24px); }
.summary-title { font-family: var(--font-ui); font-size: 16px; font-weight: 800; margin-bottom: 22px; color: var(--text); }
.summary-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--text-2); margin-bottom: 12px; }
.summary-row span:last-child { font-family: var(--font-ui); font-weight: 600; color: var(--text); }
.summary-total { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 18px; margin-top: 18px; }
.summary-total-label { font-family: var(--font-ui); font-size: 15px; font-weight: 800; color: var(--text); }
.summary-total-val { font-family: var(--font-display); font-size: 28px; font-weight: 900; letter-spacing: -0.01em; color: var(--text); }
.coupon-form { display: flex; gap: 8px; margin: 20px 0; }
.coupon-form .form-input { flex: 1; min-width: 0; }

/* ── Checkout ── */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.checkout-steps { display: flex; align-items: center; margin-bottom: 36px; }
.step { display: flex; align-items: center; gap: 10px; }
.step-num { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; font-family: var(--font-ui); background: var(--surface-2); color: var(--muted); border: 1px solid var(--border); transition: all 0.3s; flex-shrink: 0; }
.step.active .step-num { background: var(--accent); color: #faf0e6; border-color: var(--accent); }
.step.done .step-num { background: var(--muted-2); color: var(--text-2); border-color: var(--border); }
.step-label { font-size: 13px; font-family: var(--font-ui); font-weight: 700; color: var(--muted); white-space: nowrap; }
.step.active .step-label { color: var(--text); }
.step-line { flex: 1; height: 1px; background: var(--border); margin: 0 14px; min-width: 32px; }
.checkout-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; display: none; }
.checkout-block.active { display: block; }
.checkout-block-title { font-family: var(--font-ui); font-size: 16px; font-weight: 800; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; color: var(--text); }
.checkout-block-title svg { width: 18px; height: 18px; color: var(--text); flex-shrink: 0; }
.shipping-option { display: flex; align-items: center; gap: 16px; padding: 16px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; cursor: pointer; transition: all 0.2s; }
.shipping-option.selected { border-color: var(--text); background: rgba(29,29,31,0.04); }
.ship-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.shipping-option.selected .ship-radio { border-color: var(--text); }
.shipping-option.selected .ship-radio::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--text); display: block; }
.ship-name { font-family: var(--font-ui); font-size: 14px; font-weight: 700; color: var(--text); }
.ship-desc { font-size: 12px; color: var(--muted); margin-top: 2px; }
.ship-price { margin-left: auto; font-family: var(--font-ui); font-weight: 800; white-space: nowrap; color: var(--text); }
.success-wrap { text-align: center; padding: 52px 24px; }
.success-icon { width: 80px; height: 80px; background: rgba(46,204,113,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: #2ECC71; font-size: 36px; border: 1px solid rgba(46,204,113,0.2); }
.success-title { font-family: var(--font-display); font-size: 36px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 10px; color: var(--text); }
.success-sub { font-size: 14px; color: var(--text-2); margin-bottom: 6px; }
.success-order-num { font-family: var(--font-ui); font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── Auth ── */
.auth-wrap { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-visual { background: linear-gradient(160deg, #004d2d 0%, #003e24 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 52px; position: relative; overflow: hidden; }
.auth-visual::before { content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%; border: 1px solid rgba(250,240,230,0.1); top: -120px; right: -120px; pointer-events: none; }
.auth-visual::after { content: ''; position: absolute; width: 260px; height: 260px; border-radius: 50%; border: 1px solid rgba(250,240,230,0.07); bottom: -70px; left: -60px; pointer-events: none; }
.auth-visual-glow { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(250,240,230,0.1) 0%, transparent 70%); pointer-events: none; top: -60px; left: 50%; transform: translateX(-50%); }
.auth-visual-brand { font-family: var(--font-display); font-size: 48px; font-weight: 900; letter-spacing: 0.08em; color: #faf0e6; margin-bottom: 8px; position: relative; z-index: 1; }
.auth-visual-divider { width: 40px; height: 2px; background: rgba(250,240,230,0.4); border-radius: 1px; margin: 12px auto 20px; position: relative; z-index: 1; }
.auth-visual-tag { font-size: 13px; color: rgba(250,240,230,0.65); text-align: center; max-width: 240px; line-height: 1.75; position: relative; z-index: 1; }
.auth-visual-cases { display: flex; gap: 20px; margin-top: 44px; position: relative; z-index: 1; align-items: center; }
.auth-case-mini { width: 52px; height: 96px; border-radius: 14px; }
.auth-case-m1 { background: linear-gradient(155deg, #faf0e6 0%, #ddd0bc 100%); transform: rotate(-10deg) translateY(6px); box-shadow: 0 12px 32px rgba(0,0,0,0.35); }
.auth-case-m2 { background: linear-gradient(155deg, #CAFF00 0%, #8ADE00 100%); box-shadow: 0 16px 40px rgba(202,255,0,0.2); transform: translateY(-4px); }
.auth-case-m3 { background: linear-gradient(155deg, #FF6B8A 0%, #FF4757 100%); transform: rotate(10deg) translateY(6px); box-shadow: 0 12px 32px rgba(255,71,87,0.3); }
.auth-form-area { display: flex; align-items: center; justify-content: center; padding: 52px; background: var(--bg); }
.auth-form-inner { width: 100%; max-width: 420px; }
.auth-tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 36px; }
.auth-tab { flex: 1; text-align: center; padding: 14px; font-family: var(--font-ui); font-weight: 800; font-size: 14px; letter-spacing: 0.04em; color: var(--muted); border-bottom: 2px solid transparent; cursor: pointer; transition: all 0.2s; }
.auth-tab.active { color: var(--text); border-bottom-color: var(--accent); }
.auth-panel { display: none; }
.auth-panel.active { display: block; }
.auth-title { font-family: var(--font-display); font-size: 32px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 6px; color: var(--text); }
.auth-sub { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 22px 0; color: var(--muted); font-size: 12px; font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.1em; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.google-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 13px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; font-family: var(--font-ui); font-weight: 700; transition: all 0.2s; cursor: pointer; color: var(--text); }
.google-btn:hover { border-color: var(--border-hover); background: var(--surface); }
.auth-footer-text { text-align: center; font-size: 13px; color: var(--muted); margin-top: 22px; }
.auth-footer-text a { color: var(--text); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.forgot-link { font-size: 12px; color: var(--muted); text-align: right; margin-top: 8px; display: block; transition: color 0.2s; }
.forgot-link:hover { color: var(--text); }

/* ── Account ── */
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; }
.account-sidebar { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: calc(var(--nav-h) + 24px); }
.account-user { display: flex; align-items: center; gap: 14px; padding-bottom: 22px; border-bottom: 1px solid var(--border); margin-bottom: 22px; }
.account-avatar { width: 52px; height: 52px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 22px; color: #faf0e6; flex-shrink: 0; }
.account-uname { font-family: var(--font-ui); font-size: 14px; font-weight: 800; color: var(--text); }
.account-uemail { font-size: 12px; color: var(--muted); margin-top: 2px; }
.account-nav { display: flex; flex-direction: column; gap: 2px; }
.account-nav-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius); font-size: 14px; color: var(--text-2); transition: all 0.2s; cursor: pointer; font-family: var(--font-ui); font-weight: 600; }
.account-nav-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.account-nav-item:hover { background: var(--surface-2); color: var(--text); }
.account-nav-item.active { background: var(--accent); color: #faf0e6; }
.account-nav-item.danger { color: var(--red); }
.account-nav-item.danger:hover { background: var(--red-dim); }
.account-content { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.content-title { font-family: var(--font-ui); font-size: 20px; font-weight: 800; margin-bottom: 28px; color: var(--text); }
.address-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; display: flex; flex-direction: column; }
.address-tag { font-size: 11px; font-weight: 800; font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.1em; color: var(--text); display: inline-block; }
.address-text { font-size: 13px; color: var(--text-2); line-height: 1.7; }
.address-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.address-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.address-card-actions { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; padding-top: 14px; }
.address-name { font-family: var(--font-ui); font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.fav-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

/* ── Orders ── */
.order-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px; }
.order-head { display: grid; grid-template-columns: 5fr 3fr 3fr auto; align-items: center; gap: 16px; padding: 18px 24px; border-bottom: 1px solid var(--border); cursor: pointer; transition: background 0.2s; }
.order-head > div:nth-child(3) { text-align: end; }
.order-head:hover { background: var(--surface-2); }
.order-id { font-family: var(--font-ui); font-size: 13px; font-weight: 800; color: var(--text); }
.order-date-txt { font-size: 12px; color: var(--muted); margin-top: 2px; }
.order-total-val { font-family: var(--font-display); font-size: 22px; font-weight: 900; letter-spacing: -0.01em; color: var(--text); }
.order-expand-icon { color: var(--muted); transition: transform 0.3s; font-size: 20px; }
.order-card.open .order-expand-icon { transform: rotate(180deg); }
.order-body { display: none; padding: 0 24px 20px; }
.order-card.open .order-body { display: block; }
.order-line { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); justify-content: space-between; }
.order-line:last-child { border-bottom: none; }
.order-line-img { width: 56px; height: 72px; background: var(--surface-2); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.order-line-name { font-size: 14px; font-weight: 700; font-family: var(--font-ui); color: var(--text); }
.order-line-detail { font-size: 12px; color: var(--muted); margin-top: 3px; }
.order-line-price { margin-left: auto; font-family: var(--font-ui); font-weight: 800; white-space: nowrap; color: var(--text); }

/* Status */
.badge-preparing { background: rgba(245,158,11,0.1); color: #D97706; border: 1px solid rgba(245,158,11,0.2); }
.badge-shipped { background: rgba(59,130,246,0.1); color: #2563EB; border: 1px solid rgba(59,130,246,0.2); }
.badge-delivered { background: rgba(34,197,94,0.08); color: #16A34A; border: 1px solid rgba(34,197,94,0.2); }
.badge-cancelled { background: rgba(239,68,68,0.08); color: #DC2626; border: 1px solid rgba(239,68,68,0.2); }

/* ── Support ── */
.support-hero { background: linear-gradient(135deg, #F0FFF8 0%, #FFFFFF 80%); border-bottom: 1px solid var(--border); padding: 52px 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; cursor: pointer; font-family: var(--font-ui); font-size: 15px; font-weight: 700; gap: 16px; color: var(--text); }
.faq-icon { width: 26px; height: 26px; background: var(--surface-2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; color: var(--muted); font-size: 18px; line-height: 1; }
.faq-item.open .faq-icon { background: var(--text); color: var(--accent); transform: rotate(45deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-ans-inner { padding-bottom: 20px; color: var(--text-2); font-size: 14px; line-height: 1.85; }
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 40px; }
.contact-info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; text-align: center; }
.contact-info-icon { width: 52px; height: 52px; background: var(--accent); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: #faf0e6; margin: 0 auto 16px; }
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-title { font-family: var(--font-ui); font-size: 15px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.contact-info-text { font-size: 13px; color: var(--text-2); line-height: 1.7; }
.support-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 36px; }
.support-tab-btn { padding: 14px 22px; font-family: var(--font-ui); font-size: 14px; font-weight: 700; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all 0.2s; cursor: pointer; }
.support-tab-btn.active { color: var(--text); border-bottom-color: var(--accent); }
.support-tab-panel { display: none; }
.support-tab-panel.active { display: block; }
.return-step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.return-step:last-child { border-bottom: none; }
.return-step-num { width: 40px; height: 40px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 20px; color: #faf0e6; flex-shrink: 0; }
.return-step-title { font-family: var(--font-ui); font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.return-step-desc { font-size: 13px; color: var(--text-2); line-height: 1.7; }

/* ── Legal ── */
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: start; }
.legal-nav-sidebar { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px; position: sticky; top: calc(var(--nav-h) + 24px); }
.legal-nav-item { display: block; padding: 10px 14px; border-radius: var(--radius); font-size: 13px; color: var(--muted); transition: all 0.2s; font-family: var(--font-ui); font-weight: 600; }
.legal-nav-item:hover { background: var(--surface-2); color: var(--text); }
.legal-nav-item.active { background: var(--accent); color: #faf0e6; }
.legal-content { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px; }
.legal-panel { display: none; }
.legal-panel.active { display: block; }
.legal-content h2 { font-family: var(--font-ui); font-size: 20px; font-weight: 800; margin: 32px 0 14px; color: var(--text); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 14px; color: var(--text-2); line-height: 1.85; margin-bottom: 16px; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { font-size: 14px; color: var(--text-2); line-height: 1.85; list-style: disc; margin-bottom: 4px; }
.legal-meta { font-size: 12px; color: var(--muted); font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.1em; padding: 12px 16px; background: var(--surface-2); border-radius: var(--radius); margin-bottom: 28px; display: inline-block; }

/* ── Divider ── */
.divider { height: 1px; background: var(--border); margin: 32px 0; }

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes spin { to { transform: rotate(360deg); } }
.animate-up { animation: fadeUp 0.65s var(--ease) both; }
.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.16s; }
.d3 { animation-delay: 0.24s; }
.d4 { animation-delay: 0.32s; }
.floating { animation: float 5s ease-in-out infinite; }

/* ── Responsive ── */
@media (max-width:1200px) {
  .collections-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(3,1fr); }
  .footer-main { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width:1024px) {
  .product-detail-wrap { grid-template-columns: 1fr; }
  .product-detail-info { position: static; }
  .category-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:768px) {
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .collections-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .features-wrap { grid-template-columns: repeat(2,1fr); }
  footer { padding-top: 48px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-main > div:first-child { grid-column: 1 / -1; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
  .hero-slider { aspect-ratio: auto; height: 65vh; min-height: 380px; }
  .slide { grid-template-columns: 1fr; }
  .slide-content { padding: 0 32px 0 32px; }
  .slide-title { font-size: 48px; line-height: 1.0; }
  .slide-subtitle { max-width: 100%; }
  .slide-visual { display: none; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .newsletter-section { padding: 44px 24px; }
  .newsletter-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 72px 1fr auto; gap: 12px; }
  .fav-grid { grid-template-columns: repeat(2,1fr); }
  /* Collection cards: info below the visual on mobile */
  .collection-card { aspect-ratio: auto; display: flex; flex-direction: column; }
  .collection-card::before { content: none; }
  .collection-bg { position: relative; inset: auto; aspect-ratio: 1/1; width: 100%; flex-shrink: 0; }
  .collection-info { position: static; padding: 10px 12px 14px; background: var(--surface); border-top: 1px solid var(--border); }
  .collection-name { color: var(--text); font-size: 13px; }
  .collection-count { color: var(--muted); font-size: 11px; }
  .collection-cta { display: none; }
}
@media (max-width:480px) {
  .navbar { padding: 0 14px; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .collections-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .features-wrap { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr; gap: 28px; }
  .checkout-steps { flex-wrap: wrap; gap: 8px; }
  .step-line { display: none; }
  .form-row-3 { grid-template-columns: 1fr; }
  .fav-grid { grid-template-columns: 1fr; }
}
/* ── Filter Drawer (mobile/tablet) ── */
@media (max-width: 1024px) {
  .mobile-filter-btn { display: inline-flex; }
  .filter-mobile-header { display: flex; }
  .filter-sidebar {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 300px; max-width: 85vw;
    z-index: 499;
    overflow-y: auto;
    border-radius: 0;
    border: none;
    border-right: 1px solid var(--border);
    box-shadow: 4px 0 32px rgba(0,0,0,0.15);
    transform: translateX(-110%);
    transition: transform 0.35s var(--ease);
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .filter-sidebar.open { transform: translateX(0); }
}
/* ── Product Detail Responsive ── */
@media (max-width: 768px) {
  .desc-grid { grid-template-columns: 1fr; gap: 24px; }
  .reviews-summary { flex-direction: column; align-items: flex-start; gap: 20px; }
  .review-score { display: flex; align-items: center; gap: 20px; }
  .review-score-num { font-size: 40px; }
  .detail-actions { flex-wrap: wrap; }
  .detail-actions .btn-lg { flex: 1; min-width: 0; }
  .address-grid { grid-template-columns: 1fr; }
  .order-total-val { font-size: 18px; }
}
/* ── Orders Responsive ── */
@media (max-width: 600px) {
  .order-head {
    grid-template-columns: 1fr auto;
    gap: 10px 12px;
    padding: 14px 18px;
  }
  .order-head > div:nth-child(2) { display: flex; justify-content: flex-end; align-self: start; }
  .order-head > div:nth-child(3) { text-align: start; }
  .order-expand-icon { display: flex; justify-content: flex-end; align-self: end; }
  .order-progress > div > div:last-child { white-space: normal !important; font-size: 10px !important; }
  .order-body { padding: 0 18px 18px; }
}
/* ── Checkout ── */
.installment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.checkout-nav { display: flex; gap: 12px; justify-content: flex-end; margin-top: 24px; }
.shipping-option > div:nth-child(2) { flex: 1; min-width: 0; }
@media (max-width: 768px) {
  .checkout-block { padding: 20px; }
  .shipping-option { padding: 14px; gap: 12px; }
  .installment-grid { grid-template-columns: repeat(2, 1fr); }
  .checkout-nav .btn-primary { flex: 1; justify-content: center; }
}
@media (max-width: 480px) {
  .checkout-block { padding: 16px 14px; }
  .checkout-nav { flex-wrap: wrap; }
  .checkout-nav .btn-ghost { width: 100%; justify-content: center; }
  .step-label { font-size: 11px; }
}
/* ── Suggest (horizontal) cards ── */
.suggest-list { display: flex; flex-direction: column; gap: 10px; }
.suggest-card { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 14px; transition: border-color 0.2s; }
.suggest-card:hover { border-color: var(--accent); }
.suggest-card-img { width: 64px; height: 64px; background: var(--surface-2); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; text-decoration: none; }
.suggest-card-body { flex: 1; min-width: 0; }
.suggest-card-name { font-family: var(--font-ui); font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.suggest-card-price { font-family: var(--font-ui); font-size: 15px; font-weight: 800; color: var(--text); }
/* ── Cart Responsive ── */
.suggested-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 768px) {
  .cart-item { padding: 16px 20px; }
  .cart-item-img { width: 72px; height: 88px; }
  .cart-summary { padding: 20px; }
  .summary-total-val { font-size: 22px; }
}
@media (max-width: 480px) {
  .cart-item {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    padding: 16px 18px;
    gap: 10px 14px;
    align-items: start;
  }
  .cart-item-img { grid-row: 1 / 3; width: 60px; height: 84px; }
  .cart-item > div:nth-child(3) {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  .cart-remove-btn { text-align: left; margin-top: 0; }
  .cart-item-price { font-size: 16px; }
  .suggested-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}
/* ── Support Responsive ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 768px) {
  .support-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .support-tab-btn { white-space: nowrap; padding: 12px 14px; font-size: 13px; flex-shrink: 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-form-grid > div:last-child { padding-top: 0 !important; }
}
