/* ============================================================
   NOCONTACT APPAREL — High-Converting Store Stylesheet
   ============================================================ */

:root {
  --black: #0a0a0a;
  --off-black: #141414;
  --dark: #1a1a1a;
  --gray-900: #1f1f1f;
  --gray-800: #2d2d2d;
  --gray-700: #3d3d3d;
  --gray-600: #525252;
  --gray-500: #737373;
  --gray-400: #a3a3a3;
  --gray-300: #d4d4d4;
  --gray-200: #e5e5e5;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --accent: #ff3b3b;
  --accent-hover: #ff1f1f;
  --accent-soft: rgba(255, 59, 59, 0.1);
  --success: #10b981;
  --warning: #f59e0b;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
  --shadow-xl: 0 40px 80px -20px rgba(0,0,0,0.25);
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --max: 1280px;
}

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

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

@media (max-width: 640px) {
  html { scroll-padding-top: 96px; }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Bebas Neue', 'Inter', sans-serif; letter-spacing: -0.01em; line-height: 1.1; font-weight: 400; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }
svg { width: 20px; height: 20px; flex-shrink: 0; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.hidden-mobile { display: block; }
@media (max-width: 768px) { .hidden-mobile { display: none; } }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.announcement-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.announcement-track span { flex-shrink: 0; }

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-right { justify-content: flex-end; }

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.14em;
  color: var(--black);
  text-align: center;
  transition: transform 0.2s var(--ease);
}
.logo:hover { transform: scale(1.02); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s var(--ease);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--black); }

.cart-toggle {
  position: relative;
  padding: 4px;
  color: var(--black);
  transition: transform 0.2s var(--ease);
}
.cart-toggle:hover { transform: scale(1.08); }
.cart-count {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease);
}
.cart-count.bump { animation: bump 0.4s var(--ease); }
@keyframes bump {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

.search-icon { padding: 4px; color: var(--black); transition: transform 0.2s; }
.search-icon:hover { transform: scale(1.1); }

.nav-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
  background: var(--white);
  border-bottom: 1px solid transparent;
}
.nav-menu.open {
  max-height: 680px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.nav-menu-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 24px 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 32px 40px;
  align-items: start;
}
.nav-menu-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-menu-group-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--gray-100);
}
.nav-menu-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.03em;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--black);
  transition: all 0.2s var(--ease);
  width: fit-content;
}
.nav-menu-link:hover {
  color: var(--accent);
  background: var(--gray-50);
  transform: translateX(3px);
}
.nav-menu-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-top: 2px;
}
.nav-menu-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  transition: all 0.25s var(--ease);
  box-shadow: 0 6px 20px -6px rgba(255,59,59,0.45);
}
.nav-menu-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -6px rgba(255,59,59,0.6);
  color: var(--white);
}
.nav-menu-cta small {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}
@media (max-width: 868px) {
  .nav-menu-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
  }
  .nav-menu-cta-wrap {
    grid-column: 1 / -1;
    align-items: stretch;
    padding-top: 12px;
  }
  .nav-menu-cta {
    justify-content: center;
    padding: 14px 22px;
  }
}
@media (max-width: 640px) {
  .nav-menu.open { max-height: 780px; }
  .nav-menu-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px 16px 24px;
  }
  .nav-menu-link { font-size: 22px; padding: 10px 12px; }
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  display: grid;
  place-items: start center;
  padding-top: 10vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-container {
  width: 90%;
  max-width: 700px;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s var(--ease);
}
.search-overlay.open .search-container { transform: translateY(0); }
.search-container input {
  width: 100%;
  padding: 20px 56px 20px 24px;
  font-size: 18px;
  font-family: inherit;
  border: none;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--black);
  outline: none;
  box-shadow: var(--shadow-xl);
}
.search-container input::placeholder { color: var(--gray-400); }
.search-close {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 32px;
  color: var(--gray-500);
  line-height: 1;
  padding: 8px;
}
.search-close:hover { color: var(--black); }

@media (max-width: 768px) {
  .nav-container { padding: 14px 20px; }
  .logo { font-size: 26px; }
  .nav-left, .nav-right { gap: 12px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--black);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--off-black);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -10px rgba(0,0,0,0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-large { padding: 18px 36px; font-size: 15px; }
.btn-block { width: 100%; }

@media (max-width: 640px) {
  .btn { padding: 12px 22px; font-size: 13px; }
  .btn-large { padding: 15px 28px; font-size: 13px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(255,59,59,0.08), transparent),
    radial-gradient(ellipse 60% 80% at 10% 100%, rgba(0,0,0,0.04), transparent),
    linear-gradient(180deg, #f8f8f8 0%, #eeeeee 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 40%, transparent 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 24px 100px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.4;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero-title {
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-title-line { display: block; }
.hero-title-line.accent {
  color: var(--accent);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-cta .btn-ghost {
  color: var(--black);
  border-color: var(--black);
}
.hero-cta .btn-ghost:hover { background: var(--black); color: var(--white); }

.hero-social-proof {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-stars { color: #f59e0b; letter-spacing: 2px; font-size: 15px; }
.trust-text { font-size: 14px; color: var(--gray-600); font-weight: 500; }
.trust-text strong { color: var(--black); }

.badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
}
.badge svg { width: 14px; height: 14px; color: var(--gray-500); }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 3 / 4;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transform: rotate(-1deg);
  transition: transform 0.6s var(--ease);
}
.hero-image-wrapper:hover .hero-image { transform: rotate(0deg) scale(1.02); }

.hero-badge-float {
  position: absolute;
  bottom: 24px;
  left: -18px;
  background: var(--black);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 120px;
  text-align: center;
  transform: rotate(3deg);
  animation: bob 4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(-10px); }
}
.bf-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  text-transform: uppercase;
  font-weight: 600;
}
.bf-count {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  line-height: 1;
  color: var(--accent);
  margin: 4px 0;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gray-500);
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray-400), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--black);
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { top: -40px; }
  100% { top: 40px; }
}

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    padding: 48px 24px 80px;
    min-height: 0;
    gap: 48px;
  }
  .hero-content { max-width: 600px; }
  .hero-title { font-size: clamp(48px, 14vw, 90px); }
  .hero-scroll { display: none; }
  .hero-badge-float { left: 12px; bottom: 12px; transform: rotate(0); }
  @keyframes bob { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-6px);} }
}

/* ============================================================
   MARQUEE SECTION
   ============================================================ */
.marquee-section {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
  overflow: hidden;
  background: var(--white);
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  align-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--gray-500);
}
.marquee-track span:first-child {
  color: var(--gray-400);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.marquee-track span:first-child + span { color: var(--black); font-size: 26px; }

/* ============================================================
   SECTIONS BASE
   ============================================================ */
.section { padding: 120px 0; }
@media (max-width: 768px) { .section { padding: 80px 0; } }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 16px;
}
.section-title.left { text-align: left; }
.section-sub {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 500px;
  margin: 0 auto;
}

.section-cta-bottom {
  text-align: center;
  margin-top: 64px;
}

/* ============================================================
   FILTERS
   ============================================================ */
.filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-700);
  background: var(--white);
  transition: all 0.2s var(--ease);
}
.filter-btn:hover {
  border-color: var(--gray-400);
  color: var(--black);
}
.filter-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px 24px;
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
}

.product-card {
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s var(--ease-out) forwards;
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.product-image-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.5s var(--ease);
  transform-origin: bottom center;
}
.product-card:hover .product-image-wrap img { transform: scale(1.06); }

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.product-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.pb-hot { background: var(--accent); color: var(--white); }
.pb-new { background: var(--black); color: var(--white); }
.pb-sale { background: var(--success); color: var(--white); }
.pb-low { background: var(--warning); color: var(--black); }

.product-actions {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: grid;
  gap: 8px;
  transform: translateY(16px);
  opacity: 0;
  transition: all 0.35s var(--ease);
  z-index: 2;
}
.product-card:hover .product-actions {
  transform: translateY(0);
  opacity: 1;
}
.pa-btn {
  padding: 12px;
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s var(--ease);
  box-shadow: var(--shadow);
}
.pa-btn:hover { background: var(--black); color: var(--white); }
.pa-btn.quick {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  color: var(--black);
}
.pa-btn.quick:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 6px 18px -6px rgba(255,59,59,0.5);
  transform: translateY(-1px);
}

.product-info { padding: 0 4px; }
.product-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.35;
  transition: color 0.2s;
}
.product-card:hover .product-title { color: var(--accent); }
.product-vendor {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 600;
  margin-bottom: 10px;
}
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}
.product-price .price-old {
  color: var(--gray-400);
  text-decoration: line-through;
  font-weight: 500;
  font-size: 13px;
  margin-right: 6px;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}
.product-rating .stars { color: #f59e0b; letter-spacing: 1px; font-size: 11px; }

.product-swatches {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}
.swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--gray-300);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.swatch:hover { transform: scale(1.2); }

/* ============================================================
   SHOP SORT
   ============================================================ */
.shop-sort {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
}
.shop-sort select {
  padding: 8px 32px 8px 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='3'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center;
  appearance: none;
  cursor: pointer;
  color: var(--black);
  outline: none;
}
.shop-sort select:focus { border-color: var(--black); }

/* ============================================================
   VALUE PROPS
   ============================================================ */
.value-section {
  background: var(--gray-100);
  padding: 80px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px 32px;
}
.value-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s var(--ease);
}
.value-item:hover { transform: translateY(-4px); }
.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--white);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.value-icon svg {
  width: 26px;
  height: 26px;
  color: var(--black);
}
.value-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.value-item p {
  font-size: 14px;
  color: var(--gray-600);
  max-width: 260px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   FEATURED PRODUCT BANNER
   ============================================================ */
.featured-banner {
  background: linear-gradient(135deg, #141414 0%, #2a2a2a 100%);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 0;
}
.featured-banner {
  max-width: calc(var(--max) - 48px);
  margin: 0 auto 120px;
}
.fb-left {
  position: relative;
  min-height: 500px;
  background: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fb-left img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.8s var(--ease);
}
.fb-left:hover img { transform: scale(1.06); }

.fb-right {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fb-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.fb-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  font-style: italic;
}
.fb-price {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
}
.fb-price s {
  color: var(--gray-500);
  font-size: 20px;
  margin-right: 8px;
  font-weight: 400;
}
.fb-price span { color: var(--accent); }
.fb-desc {
  font-size: 15px;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
}

.fb-sizes {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.size-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-right: 6px;
}
.size-btn {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1.5px solid var(--gray-700);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s var(--ease);
}
.size-btn:hover:not(.soldout):not(:disabled) {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}
.size-btn.active {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}
.size-btn.soldout {
  text-decoration: line-through;
  color: var(--gray-600);
  border-color: var(--gray-800);
  cursor: not-allowed;
}

.fb-stock {
  margin-bottom: 32px;
}
.stock-bar {
  width: 100%;
  height: 6px;
  background: var(--gray-800);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}
.stock-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ff6b6b);
  border-radius: 3px;
  transition: width 1s var(--ease);
}
.fb-stock span {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 600;
}

.fb-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fb-cta .btn-primary {
  background: var(--white);
  color: var(--black);
}
.fb-cta .btn-primary:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 30px -10px rgba(255,59,59,0.5);
}
.fb-note {
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  font-weight: 500;
}

@media (max-width: 968px) {
  .featured-banner {
    grid-template-columns: 1fr;
    max-width: calc(100% - 32px);
    margin-bottom: 80px;
  }
  .fb-left { min-height: 380px; }
  .fb-right { padding: 40px 28px; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-xl);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content .section-sub { margin: 0 0 24px; text-align: left; }
.about-text {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
  padding: 32px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
}
.am-item { text-align: center; }
.am-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  color: var(--black);
  margin-bottom: 6px;
}
.am-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}
@media (max-width: 968px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { aspect-ratio: 4/3; max-width: 520px; margin: 0 auto; width: 100%; }
  .about-metrics { padding: 24px 16px; gap: 12px; }
  .am-num { font-size: 36px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all 0.3s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card.featured {
  grid-row: span 2;
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.t-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.t-stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 16px;
}
.t-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: inherit;
  opacity: 0.92;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.testimonial-card.featured .t-avatar { background: var(--gray-800); color: var(--white); }
.t-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.t-verified {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}
.testimonial-card.featured .t-verified { color: var(--gray-400); }

.reviews-meta-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  border: 1px solid var(--gray-200);
  align-items: center;
}
.rm-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.rm-big span {
  font-size: 32px;
  color: var(--gray-500);
  margin-left: 4px;
}
.rm-stars { color: #f59e0b; letter-spacing: 3px; font-size: 16px; margin: 8px 0; }
.rm-label { font-size: 13px; color: var(--gray-500); font-weight: 500; }

.rm-bar-row {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
}
.rm-bar-row:last-child { margin-bottom: 0; }
.rm-bar {
  height: 6px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
}
.rm-bar div {
  height: 100%;
  background: var(--black);
  border-radius: 3px;
}
.rm-bar-row > span:last-child { text-align: right; color: var(--gray-600); }

@media (max-width: 768px) {
  .reviews-meta-row { grid-template-columns: 1fr; gap: 32px; padding: 28px 24px; }
  .testimonial-card { padding: 24px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 4px;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  color: var(--gray-500);
}
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 4px 24px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(255,59,59,0.15), transparent),
    radial-gradient(ellipse 40% 40% at 20% 100%, rgba(255,255,255,0.04), transparent);
}
.newsletter-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.nl-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.nl-content h2 {
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 20px;
}
.nl-content p {
  font-size: 16px;
  color: var(--gray-300);
  max-width: 420px;
  line-height: 1.7;
}
.nl-form { width: 100%; }
.nl-input-wrap {
  display: flex;
  background: var(--white);
  border-radius: var(--radius);
  padding: 6px;
  gap: 6px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.5);
}
.nl-input-wrap input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  color: var(--black);
  background: transparent;
  min-width: 0;
}
.nl-input-wrap input::placeholder { color: var(--gray-500); }
.nl-input-wrap .btn { background: var(--accent); }
.nl-input-wrap .btn:hover { background: var(--accent-hover); }
.nl-note {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 16px;
  font-weight: 500;
}
@media (max-width: 868px) {
  .newsletter-section { padding: 72px 0; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 36px; }
  .nl-input-wrap { flex-direction: column; background: transparent; padding: 0; gap: 12px; box-shadow: none; }
  .nl-input-wrap input {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
  }
  .nl-input-wrap .btn { padding: 16px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--off-black);
  color: var(--gray-300);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 64px;
}
.footer-logo {
  color: var(--white);
  display: inline-block;
  margin-bottom: 20px;
  font-size: 36px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-800);
  color: var(--white);
  display: grid;
  place-items: center;
  transition: all 0.25s var(--ease);
}
.footer-socials a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}
.footer-socials svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-col a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.fb-legal {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  text-transform: uppercase;
}
.fb-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.fb-links a {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
  transition: color 0.2s;
}
.fb-links a:hover { color: var(--white); }
.fb-payments {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}
.fb-payments svg { width: 48px; height: auto; }

@media (max-width: 868px) {
  .footer { padding-top: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; padding-bottom: 48px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: var(--white);
  z-index: 501;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px -20px rgba(0,0,0,0.3);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.cart-close {
  font-size: 32px;
  line-height: 1;
  color: var(--gray-500);
  padding: 4px;
  transition: color 0.2s, transform 0.2s;
}
.cart-close:hover { color: var(--black); transform: rotate(90deg); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}
.cart-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}
.cart-empty svg {
  width: 56px;
  height: 56px;
  color: var(--gray-300);
  margin-bottom: 20px;
}
.cart-empty p {
  color: var(--gray-600);
  font-size: 15px;
  margin-bottom: 24px;
  font-weight: 500;
}
.cart-empty-btn { width: 100%; max-width: 320px; }

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-100);
  align-items: start;
}
.ci-image {
  width: 80px;
  height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--gray-100);
  flex-shrink: 0;
}
.ci-image img { width: 100%; height: 100%; object-fit: cover; }
.ci-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.4;
}
.ci-meta {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 10px;
}
.ci-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.ci-qty button {
  width: 28px;
  height: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  transition: background 0.15s;
}
.ci-qty button:hover { background: var(--gray-100); }
.ci-qty span {
  width: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}
.ci-price-remove {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.ci-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}
.ci-remove {
  font-size: 11px;
  color: var(--gray-500);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.15s;
}
.ci-remove:hover { color: var(--accent); }

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.cart-shipping-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-700);
  padding: 10px 14px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 500;
}
.cart-shipping-note strong { color: var(--accent); }
.cart-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
}
.cart-row.small { font-size: 13px; color: var(--gray-500); margin-bottom: 20px; }
.cart-row:last-of-type { margin-bottom: 20px; }
.checkout-btn { margin-bottom: 12px; }
.cart-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 12px;
}
.cart-continue {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 600;
  transition: color 0.2s;
}
.cart-continue:hover { color: var(--black); }

/* ============================================================
   MODAL (QUICK VIEW)
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 600;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%) scale(0.95);
  width: 92%;
  max-width: 900px;
  max-height: 90vh;
  background: var(--white);
  z-index: 601;
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  overflow-y: auto;
}
.modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  color: var(--gray-700);
  box-shadow: var(--shadow);
  transition: all 0.2s;
}
.modal-close:hover { background: var(--black); color: var(--white); transform: rotate(90deg); }
.modal-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.modal-image {
  background: var(--white);
  aspect-ratio: 3/4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-image img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.modal-info { padding: 48px 40px; display: flex; flex-direction: column; gap: 20px; }
.modal-info h2 { font-family: 'Inter', sans-serif; font-size: 26px; font-weight: 700; }
.modal-price { font-size: 24px; font-weight: 700; }
.modal-desc { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.modal-size-select { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.modal-size-select .size-btn {
  min-width: 0;
  width: 100%;
  color: var(--black);
  border-color: var(--gray-300);
}
.modal-size-select .size-btn:hover:not(.soldout):not(:disabled) {
  border-color: var(--black);
  background: var(--gray-50);
  color: var(--black);
}
.modal-size-select .size-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.modal-thumbs .modal-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal-thumbs .modal-thumb img {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  display: block;
  background: #fafafa;
}
.modal-size-select .size-btn.soldout,
.modal-size-select .size-btn:disabled {
  background: var(--gray-100);
  color: var(--gray-400);
  border-color: var(--gray-200);
  text-decoration: line-through;
  cursor: not-allowed;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .modal {
    width: 100%;
    max-width: 100%;
    max-height: 100dvh;
    height: 100dvh;
    top: 0;
    left: 0;
    transform: translateY(30px);
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .modal.open {
    transform: translateY(0);
  }
  .modal-close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    font-size: 22px;
    z-index: 20;
  }
  .modal-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .modal-image {
    aspect-ratio: 1 / 1;
    max-height: 48vh;
    flex-shrink: 0;
    padding: 8px 16px 0;
    box-sizing: border-box;
  }
  .modal-main-img-wrapper {
    border-radius: 12px !important;
    aspect-ratio: 3 / 4 !important;
    max-height: 44vh;
    width: 100%;
    margin: 0 auto;
  }
  .modal-thumbs {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    touch-action: pan-y !important;
    overscroll-behavior: none !important;
    -webkit-overflow-scrolling: auto !important;
    gap: 4px !important;
    margin: 10px 16px 12px !important;
    padding: 2px 0 4px;
    justify-content: space-between;
    align-items: stretch;
    width: calc(100% - 32px);
    box-sizing: border-box;
    pointer-events: none;
  }
  .modal-thumbs::-webkit-scrollbar { height: 0; display: none; width: 0; }
  .modal-thumb {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: 60px !important;
    aspect-ratio: 3 / 4 !important;
    height: auto !important;
    border-radius: 6px !important;
    flex-shrink: 1 !important;
    flex-grow: 1 !important;
    pointer-events: auto !important;
    cursor: pointer;
    background: #fafafa !important;
  }
  .modal-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    background: #fafafa !important;
  }
  .modal-info {
    padding: 16px 20px 140px !important;
    gap: 14px !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1;
  }
  .modal-info h2 {
    font-size: 22px !important;
    line-height: 1.2;
  }
  .modal-price {
    font-size: 22px !important;
  }
  .modal-desc {
    font-size: 13px;
    line-height: 1.6;
  }
  .modal-size-select {
    grid-template-columns: repeat(auto-fit, minmax(62px, 1fr)) !important;
    gap: 8px !important;
  }
  .modal-size-select .size-btn {
    font-size: 14px;
    padding: 12px 6px !important;
  }
  .modal-img-nav.prev, .modal-img-nav.next {
    width: 32px !important;
    height: 32px !important;
    font-size: 16px !important;
  }
  .modal-add {
    position: fixed !important;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    width: calc(100% - 24px);
    z-index: 30;
    border-radius: 14px !important;
    padding: 18px 24px !important;
    box-shadow: 0 -6px 30px rgba(0,0,0,0.12) !important;
  }
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 240px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 14px 14px 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 700;
  width: calc(100% - 48px);
  max-width: 440px;
  border: 1px solid var(--gray-200);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.45s var(--ease-out), opacity 0.35s ease, visibility 0s linear 0.45s;
}
.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.45s var(--ease-out), opacity 0.35s ease, visibility 0s linear 0s;
}
.toast-left { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.toast-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--success);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
  font-weight: 700;
}
.toast-check.warn {
  background: #f59e0b;
}
.toast-check.error {
  background: var(--accent);
}
.toast-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}
.toast-sub {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}
.toast-btn {
  padding: 10px 18px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: background 0.2s;
}
.toast-btn:hover { background: var(--accent); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: grid;
  place-items: center;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-lg);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-4px);
}
.back-to-top svg { width: 22px; height: 22px; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   UTILITIES
   ============================================================ */
@media (max-width: 640px) {
  .product-title { font-size: 13px; }
  .product-price { font-size: 14px; }
  .product-vendor { font-size: 10px; }
  .value-section { padding: 56px 0; }
  .value-grid { gap: 28px; }
  .section-header { margin-bottom: 40px; }
}

::selection { background: var(--accent); color: var(--white); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-500); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
