/* ===== IRONCOLD — Global Styles ===== */

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

:root {
  --white: #ffffff;
  --black: #000000;
  --light-1: #f5f5f5;
  --light-2: #ebebeb;
  --light-3: #e0e0e0;
  --gray-1: #888;
  --gray-2: #555;
  --gray-3: #333;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-h: 72px;
  --section-pad: clamp(60px, 8vw, 120px);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.highlight {
  -webkit-text-stroke: 2px var(--black);
  color: transparent;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--black); border-radius: 2px; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  transition: background 0.3s, backdrop-filter 0.3s, border-bottom 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav--hero .nav__logo-icon { filter: brightness(0) invert(1); }
.nav.scrolled .nav__logo-icon { filter: brightness(0); }
.nav.scrolled .nav__links a { color: rgba(0,0,0,0.5); }
.nav.scrolled .nav__links a:hover,
.nav.scrolled .nav__links a.active { color: var(--black); }
.nav.scrolled .nav__links a::after { background: var(--black); }
.nav.scrolled .nav__cta { background: var(--black); color: #fff; outline: none; }
.nav.scrolled .nav__cta:hover { background: transparent; color: var(--black); outline: 1px solid var(--black); }
.nav.scrolled .nav__burger span { background: var(--black); }

.nav__logo a {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  letter-spacing: 3px;
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__logo a span {
  color: var(--black);
  letter-spacing: 3px;
}

.nav__logo-icon {
  height: 50px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: brightness(0);
  margin-left: 200px;
}

@media (max-width: 768px) {
  .nav__logo-icon { height: 38px; }
}

.nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  color: rgba(0,0,0,0.55);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width 0.3s;
}

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

.nav__links a:hover::after, .nav__links a.active::after {
  width: 100%;
}

.nav--hero .nav__links a { color: rgba(255,255,255,0.75); }
.nav--hero .nav__links a::after { background: #fff; }
.nav--hero .nav__links a:hover,
.nav--hero .nav__links a.active { color: #fff; }

.nav__cta {
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 22px;
  transition: all 0.2s;
  display: inline-block;
}

.nav__cta:hover {
  background: transparent;
  color: var(--black);
  outline: 1px solid var(--black);
}

.nav--hero .nav__cta {
  background: transparent;
  color: #fff;
  outline: 1px solid rgba(255,255,255,0.6);
}

.nav--hero .nav__cta:hover {
  background: #fff;
  color: var(--black);
  outline: 1px solid #fff;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 16px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s;
}

.nav--hero .nav__burger span { background: #fff; }

.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

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

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  display: none;
  flex-direction: column;
  padding: 40px clamp(16px, 4vw, 48px);
  border-top: 1px solid rgba(0,0,0,0.08);
}

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

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu ul li a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(42px, 12vw, 72px);
  letter-spacing: 4px;
  color: var(--black);
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.1;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu ul li a:hover {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--black);
  padding-left: 16px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-h) clamp(16px, 4vw, 48px) 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: #000;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide.active {
  opacity: 1;
}

.hero__slide.no-transition {
  transition: none;
}

.hero__slide--1 {
  background-image: url('photo1.png');
}

.hero__slide--2 {
  background-image: url('photo2.png');
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding-top: 40px;
}

.hero__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 200px);
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.hero__title .line { display: block; color: #fff; }
.hero__title .highlight {
  color: transparent;
  -webkit-text-stroke: 2px #fff;
}
.hero__title .highlight .solid {
  color: #fff;
  -webkit-text-stroke: 0;
}

.hero__sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 2px;
  line-height: 1;
}

.stat__label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.stat__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero__scroll-hint {
  position: absolute;
  right: clamp(16px, 4vw, 48px);
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero__scroll-hint span {
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(0,0,0,0.3);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--black);
  color: var(--white);
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 0;
}

.btn--primary:hover::after {
  transform: translateX(0);
}

.btn--primary:hover {
  color: var(--black);
  outline: 1px solid var(--black);
}

.btn--primary span, .btn--primary .btn-arrow { position: relative; z-index: 1; }

.btn--ghost {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(0,0,0,0.25);
}

.btn--ghost:hover {
  border-color: var(--black);
  background: rgba(0,0,0,0.05);
}

.btn--large {
  padding: 18px 48px;
  font-size: 14px;
}

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

/* ===== TICKER ===== */
.ticker {
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  padding: 14px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.ticker--footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
}

.ticker__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: tickerScroll 18s linear infinite;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 3px;
}

.ticker__track .dot {
  font-size: 10px;
  opacity: 0.6;
}

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

/* ===== SECTION BASE ===== */
.section {
  padding: var(--section-pad) 0;
}

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.section__header.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section__tag {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 10px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 80px);
  letter-spacing: 2px;
  line-height: 0.95;
}

.section__link {
  color: rgba(0,0,0,0.45);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
  white-space: nowrap;
  padding-bottom: 4px;
}

.section__link:hover { color: var(--black); }

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.products-grid--shop {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}

@media (max-width: 1100px) {
  .products-grid--shop { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
  .products-grid, .products-grid--shop { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 400px) {
  .products-grid, .products-grid--shop { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.product-card {
  position: relative;
  cursor: pointer;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.15);
}

.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: transparent;
}

.product-card__img {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.5s ease;
  background: transparent;
}

.product-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

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

.product-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.product-placeholder svg { width: 100%; height: 100%; }

.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #e63946;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}

.product-card__badge.bestseller { background: #111; }
.product-card__badge.sale       { background: #e63946; }

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  z-index: 2;
}

.product-card:hover .product-card__overlay { opacity: 1; }

.product-card__overlay span {
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 4px;
  transform: translateY(12px);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

.product-card:hover .product-card__overlay span { transform: translateY(0); }

.quick-view {
  background: var(--white); color: var(--black);
  border: none; padding: 12px 28px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  display: inline-block; transition: all 0.2s;
}
.quick-view:hover { background: var(--black); color: var(--white); }

.product-card__info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__cat {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}

.product-card__name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 14px;
  line-height: 1.3;
  color: #111;
  flex: 1;
}

.product-card__bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  margin-top: auto;
}

.product-card__price {
  font-size: 22px;
  font-weight: 900;
  color: #111;
}

.product-card__old {
  font-size: 14px;
  color: #888;
  text-decoration: line-through;
}

.add-cart {
  width: 100%;
  padding: 12px;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  display: block;
  text-align: center;
}

.add-cart:hover {
  background: transparent;
  color: var(--black);
  outline: 1px solid var(--black);
}

.featured-large {
  grid-row: span 1;
}

/* ===== STORY ===== */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  background: var(--light-1);
}

.story__left {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  border-right: none;
}

.story__photo-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.story__photo {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.story__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 400px;
}

.story__block {
  position: absolute;
  font-family: var(--font-display);
  line-height: 1;
}

.story__block--1 {
  top: 10%;
  left: 5%;
  display: flex;
  flex-direction: column;
}

.story__year {
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: 6px;
  color: rgba(0,0,0,0.25);
}

.story__num {
  font-size: clamp(72px, 14vw, 160px);
  color: transparent;
  -webkit-text-stroke: 2px rgba(0,0,0,0.1);
}

.story__block--2 {
  bottom: 10%;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.story__block--2 span {
  font-size: clamp(28px, 5vw, 56px);
  letter-spacing: 4px;
  line-height: 1;
}

.story__block--2 span:first-child {
  color: var(--black);
}

.story__block--2 span:last-child {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0,0,0,0.35);
}

.story__right {
  padding: var(--section-pad) clamp(24px, 5vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--light-1);
}

.story__right p {
  color: rgba(0,0,0,0.5);
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.8;
  margin: 12px 0;
  font-weight: 300;
}

.story__pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 36px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(0,0,0,0.08);
  border-left: 2px solid var(--black);
  background: var(--white);
}

.pillar__icon {
  font-size: 20px;
  color: rgba(0,0,0,0.5);
  flex-shrink: 0;
}

.pillar__text {
  display: flex;
  flex-direction: column;
}

.pillar__text strong {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.pillar__text span {
  font-size: 12px;
  color: rgba(0,0,0,0.4);
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ===== CATEGORIES ===== */
.categories {
  background: var(--white);
}

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

.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 9/16;
  border-radius: 16px;
  display: block;
  text-decoration: none;
  transition: transform 0.3s;
  max-width: 320px;
  margin: 0 auto;
  width: 100%;
}

.cat-card:hover { transform: translateY(-4px); }

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

.cat-card__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
  background-size: cover;
  background-position: center;
}

.cat-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cat-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

.cat-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  z-index: 2;
}

.cat-card__content h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: 3px;
  color: #fff;
  line-height: 1;
}

.cat-card__content span {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
  margin: 6px 0 12px;
  display: block;
}

.cat-shop {
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .cat-grid { grid-template-columns: 1fr; gap: 10px; }
  .cat-card { aspect-ratio: 4/3; }
}

/* ===== TRUST ===== */
.trust {
  background: var(--light-1);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.trust-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.06);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.trust-item h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 12px;
  color: rgba(0,0,0,0.4);
  letter-spacing: 1px;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: var(--section-pad) 0;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter__text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: var(--black);
}

.newsletter__text h2 .highlight {
  -webkit-text-stroke: 2px var(--black);
}

.newsletter__text p {
  color: rgba(0,0,0,0.45);
  font-size: 14px;
}

.newsletter__form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.newsletter__form input {
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.15);
  border-right: none;
  color: var(--black);
  padding: 14px 20px;
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  width: 280px;
  transition: border-color 0.2s;
}

.newsletter__form input::placeholder { color: rgba(0,0,0,0.3); }
.newsletter__form input:focus { border-color: rgba(0,0,0,0.4); }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: none;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 48px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 4px;
  margin-bottom: 14px;
}

.footer__logo {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer__logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__logo span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
}

.footer__brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  border: none;
}

.social-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.social-btn--wa {
  background: #25D366;
}

.social-btn--wa:hover { background: #1da851; }

.footer__nav h5 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav ul a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer__nav ul a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

.social-btn { background: rgba(255,255,255,0.12); }
.social-btn:hover { background: rgba(255,255,255,0.2); }

/* ===== PAGE HERO ===== */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) clamp(16px, 4vw, 48px) clamp(40px, 6vw, 80px);
  background: var(--light-1);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 12vw, 140px);
  letter-spacing: 4px;
  line-height: 0.9;
  margin: 8px 0 16px;
}

.page-hero__logo {
  height: clamp(70px, 12vw, 140px);
  width: auto;
  display: block;
  filter: brightness(0);
  margin: 0 auto;
}

.page-hero p {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(0,0,0,0.4);
  font-weight: 300;
}

/* ===== FILTER BAR ===== */
.shop-section {
  background: var(--white);
}

/* ===== PRODUCT MODAL ===== */
.pmodal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.pmodal-overlay.active { opacity: 1; pointer-events: all; }

.pmodal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.97);
  z-index: 901;
  background: #fff;
  width: 860px;
  height: 560px;
  max-width: 94vw;
  max-height: 94vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s, transform 0.28s;
}
.pmodal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.pmodal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  border: none;
  font-size: 16px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pmodal__img-wrap {
  position: relative;
  background: #f0f0f0;
}

.pmodal__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: background 0.2s, transform 0.2s;
}
.pmodal__arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}
.pmodal__arrow--prev { left: 12px; }
.pmodal__arrow--next { right: 12px; }

.pmodal__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.pmodal__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background 0.2s;
}
.pmodal__dot.active { background: #111; }
.pmodal__img {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pmodal__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pmodal__info {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  height: 100%;
}

.pmodal__cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}

.pmodal__name {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.pmodal__price {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.pmodal__desc {
  font-size: 13px;
  color: rgba(0,0,0,0.5);
  line-height: 1.7;
  font-weight: 400;
}

.pmodal__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  display: block;
  margin-bottom: 10px;
}

.pmodal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pmodal__tissu {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #555;
}
.pmodal__tissu strong { color: #111; }

.pmodal__meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.pmodal__meta-item {
  font-size: 12px;
  color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 640px) {
  .pmodal { grid-template-columns: 1fr; border-radius: 16px 16px 0 0; top: auto; bottom: 0; left: 0; right: 0; width: 100%; transform: translateY(100%); max-height: 95vh; }
  .pmodal.active { transform: translateY(0); }
  .pmodal__img { min-height: 280px; }
  .pmodal__info { padding: 20px 18px; max-height: none; }
  .pmodal__actions { grid-template-columns: 1fr; }
}

/* ===== FREE SHIPPING BANNER ===== */
.free-ship-banner {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 16px 24px;
  font-size: 15px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.free-ship-banner strong {
  font-weight: 800;
  letter-spacing: 2px;
}

/* ===== CART BTN ===== */
.nav__cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  display: flex;
  align-items: center;
  padding: 4px;
  margin-right: 4px;
}

.nav__cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  background: #e63946;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ===== CART DRAWER ===== */
.cart-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1200;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-backdrop.active { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(100vw, 400px);
  height: 100dvh;
  background: #fff;
  z-index: 1201;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.active { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid #ebebeb;
}
.cart-drawer__header h3 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 3px;
}
.cart-drawer__header button {
  background: none; border: none;
  font-size: 18px; cursor: pointer; color: #888;
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #aaa;
  padding: 40px 0;
}
.cart-empty p { font-size: 14px; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cart-item__img {
  width: 56px;
  height: 68px;
  border-radius: 8px;
  flex-shrink: 0;
}
.cart-item__info { flex: 1; }
.cart-item__name { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.cart-item__meta { font-size: 11px; color: #888; margin-bottom: 8px; }
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-item__qty button {
  width: 24px; height: 24px;
  border: 1px solid #ddd; border-radius: 4px;
  background: none; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.cart-item__qty span { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item__del {
  background: none;
  border: none;
  color: #bbb;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  transition: color 0.2s, background 0.2s;
}
.cart-item__del:hover { color: #e63946; background: #fff0f0; }

.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid #ebebeb;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
}

/* ===== ORDER FORM MODAL ===== */
.order-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.order-overlay.active { opacity: 1; pointer-events: all; }

.order-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%) scale(0.97);
  z-index: 1101;
  background: #fff;
  width: min(94vw, 500px);
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 20px;
  padding: 36px 32px;
  opacity: 0; pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.order-modal.active {
  opacity: 1; pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.order-modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%; background: #111; color: #fff;
  border: none; font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.order-modal__header { margin-bottom: 24px; }
.order-modal__header h3 { font-family: var(--font-display); font-size: 24px; letter-spacing: 2px; margin-top: 8px; }
.order-modal__product { font-size: 13px; color: #666; background: #f7f7f7; padding: 10px 14px; border-radius: 8px; margin-bottom: 8px; }

.order-form { display: flex; flex-direction: column; gap: 16px; }

.order-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.order-form__group { display: flex; flex-direction: column; gap: 6px; }
.order-form__group label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #666; }
.order-form__group input,
.order-form__group select {
  padding: 12px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
.order-form__group input:focus,
.order-form__group select:focus { border-color: #111; }

.order-summary-line {
  display: flex; justify-content: space-between;
  font-size: 13px; padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
}
.order-summary-line span:first-child { color: #888; }
.order-summary-line span:last-child { font-weight: 600; }

.order-form__submit { margin-top: 4px; font-size: 14px; padding: 16px; }

.order-success { text-align: center; padding: 16px 0; }
.order-success__icon { font-size: 52px; margin-bottom: 12px; }
.order-success h3 { font-family: var(--font-display); font-size: 28px; letter-spacing: 2px; margin-bottom: 8px; }
.order-success p { color: #555; font-size: 14px; margin-bottom: 16px; }
.order-success__details { background: #f7f7f7; border-radius: 10px; padding: 16px; text-align: left; margin: 16px 0; display: flex; flex-direction: column; gap: 8px; }
.order-success__details p { margin: 0; font-size: 14px; }
.order-success__sub { font-size: 13px; color: #777; margin-bottom: 20px !important; }

@media (max-width: 480px) {
  .order-form__row { grid-template-columns: 1fr; }
  .order-modal { padding: 24px 20px; }
}

/* ===== GENDER TABS ===== */
.gender-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  margin-top: -8px;
}

.gender-tab {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 100px;
  background: transparent;
  color: rgba(0,0,0,0.45);
  cursor: pointer;
  transition: all 0.2s;
}

.gender-tab:hover { border-color: var(--black); color: var(--black); }
.gender-tab.active { background: var(--black); border-color: var(--black); color: #fff; }

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.filter-tab {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 28px;
  border: none;
  background: transparent;
  color: rgba(0,0,0,0.35);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.filter-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.filter-tab:hover { color: var(--black); }

.filter-tab.active {
  color: var(--black);
}

.filter-tab.active::after {
  transform: scaleX(1);
}

/* ===== PRODUCT DETAIL PAGE ===== */
.pd-page {
  padding: calc(var(--nav-h) + 48px) 0 80px;
}

.pd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.pd-img {
  background: #0d0d0d;
  aspect-ratio: 1;
  overflow: hidden;
}

.pd-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  display: block;
  margin-bottom: 12px;
}

.pd-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 16px;
}

.pd-price {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.pd-desc {
  font-size: 14px;
  color: rgba(0,0,0,0.55);
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 300;
}

.pd-sizes { margin-bottom: 28px; }

.pd-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  display: block;
  margin-bottom: 12px;
}

.pd-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.pd-meta {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pd-meta__item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.pd-meta__item span:first-child { color: rgba(0,0,0,0.4); }
.pd-meta__item span:last-child { font-weight: 600; }

.pd-gallery {
  position: relative;
  overflow: hidden;
}

.pd-img {
  position: relative;
  z-index: 1;
}

.pd-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: none;
  width: 44px;
  height: 44px;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.pd-arrow:hover { background: #fff; }
.pd-arrow--prev { left: 14px; }
.pd-arrow--next { right: 14px; }

.pd-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.pd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.2s;
}

.pd-dot.active { background: #fff; }

@media (max-width: 768px) {
  .pd-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== PRODUCT CARD AS LINK ===== */
a.product-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.product-card .product-card__overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}

a.product-card .product-card__overlay span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 12px 24px;
}

.col-landing { background: var(--white); }

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

.col-card {
  display: block;
  text-decoration: none;
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.col-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.col-card__img svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.col-card:hover .col-card__img svg {
  transform: scale(1.04);
}

.col-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.col-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: 4px;
}

.col-card__count {
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(0,0,0,0.4);
  text-transform: uppercase;
}

.col-card__arrow {
  font-size: 20px;
  transition: transform 0.2s;
}

.col-card:hover .col-card__arrow {
  transform: translateX(6px);
}

.back-link {
  color: rgba(0,0,0,0.4);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.back-link:hover { color: var(--black); }

@media (max-width: 600px) {
  .col-grid { grid-template-columns: 1fr; }
}

.cat-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.cat-nav__links {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.cat-nav__links::-webkit-scrollbar { display: none; }

.cat-nav__link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  text-decoration: none;
  padding: 18px 28px;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
}

.cat-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.cat-nav__link:hover { color: var(--black); }

.cat-nav__link.active {
  color: var(--black);
}

.cat-nav__link.active::after {
  transform: scaleX(1);
}

.cat-section {
  background: var(--white);
}

.cat-section--dark {
  background: #f5f5f5;
}

.cat-section__header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

.cat-section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 6px;
  white-space: nowrap;
  color: var(--black);
}

.cat-section__line {
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.15);
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 20px;
}

.filter-bar__cats {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: 1px solid rgba(0,0,0,0.12);
  color: rgba(0,0,0,0.45);
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

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

.filter-bar__sort select {
  background: none;
  border: 1px solid rgba(0,0,0,0.12);
  color: rgba(0,0,0,0.5);
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 1px;
  font-family: var(--font-body);
  cursor: pointer;
  outline: none;
}

.filter-bar__sort select option {
  background: var(--white);
  color: var(--black);
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: rgba(0,0,0,0.3);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== PRODUCT MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.product-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 2001;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.product-modal.open {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid rgba(0,0,0,0.2);
  color: var(--black);
  width: 40px;
  height: 40px;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--black);
  color: var(--white);
}

.modal-img {
  background: var(--light-2);
  aspect-ratio: 1;
}

.modal-info {
  padding: clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-cat {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
}

.modal-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 2px;
}

.modal-price {
  font-size: 22px;
  font-weight: 700;
}

.modal-desc {
  font-size: 14px;
  color: rgba(0,0,0,0.5);
  line-height: 1.7;
}

.modal-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  display: block;
  margin-bottom: 10px;
}

.size-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-btn {
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(0,0,0,0.15);
  color: rgba(0,0,0,0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.size-btn:hover,
.size-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

/* ===== CART TOAST ===== */
.cart-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--black);
  color: var(--white);
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 3000;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.cart-toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ===== DELIVERY PAGE ===== */
.delivery-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 60px;
}

.delivery-card {
  background: var(--light-1);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(0,0,0,0.07);
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.delivery-card--featured {
  background: var(--black);
  color: var(--white);
}

.delivery-card--featured h3,
.delivery-card--featured p,
.delivery-card--featured .delivery-card__time,
.delivery-card--featured .delivery-card__price { color: var(--white); }

.delivery-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--white);
  color: var(--black);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 10px;
}

.delivery-card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 8px;
}

.delivery-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 2px;
}

.delivery-card__time {
  font-size: 13px;
  font-weight: 600;
  color: rgba(0,0,0,0.45);
}

.delivery-card__price {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 2px;
}

.delivery-card p:last-child {
  font-size: 13px;
  color: rgba(0,0,0,0.45);
  line-height: 1.6;
}

.delivery-card--featured .delivery-card__time {
  color: rgba(255,255,255,0.55);
}

.delivery-card--featured p:last-child {
  color: rgba(255,255,255,0.5);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--light-1);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 160px;
  text-align: center;
}

.step__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0,0,0,0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.step__content h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.step__content p {
  font-size: 13px;
  color: rgba(0,0,0,0.4);
  line-height: 1.6;
}

.step__arrow {
  font-size: 20px;
  color: rgba(0,0,0,0.2);
  margin-top: 24px;
  flex-shrink: 0;
}

/* ===== TABLE ===== */
.table-wrap {
  overflow-x: auto;
}

.delivery-table {
  width: 100%;
  border-collapse: collapse;
}

.delivery-table th {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  padding: 14px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  white-space: nowrap;
}

.delivery-table td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 14px;
  color: rgba(0,0,0,0.6);
}

.table-highlight td {
  background: rgba(0,0,0,0.03);
  color: var(--black);
  font-weight: 600;
}

.zone-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 10px;
  text-transform: uppercase;
}

.zone-1 { background: rgba(0,0,0,0.1); color: var(--black); }
.zone-2 { background: rgba(0,0,0,0.07); color: var(--black); }
.zone-3 { background: rgba(0,0,0,0.04); color: var(--black); }
.zone-free { background: var(--black); color: var(--white); }

/* ===== PAYMENT ===== */
.payment-section {
  background: var(--white);
}

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

.payment-card {
  background: var(--light-1);
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.07);
  transition: border-color 0.2s, background 0.2s;
}

.payment-card:hover {
  border-color: rgba(0,0,0,0.2);
  background: var(--white);
}

.payment-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.payment-card h4 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.payment-card p {
  font-size: 13px;
  color: rgba(0,0,0,0.4);
  line-height: 1.6;
}

/* ===== RETURNS ===== */
.returns-section {
  background: var(--light-1);
}

.returns-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.returns-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.returns-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(0,0,0,0.6);
}

.check {
  width: 22px;
  height: 22px;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.returns-cta__box {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
}

.returns-cta__box h4 {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.returns-cta__box p {
  font-size: 13px;
  color: rgba(0,0,0,0.4);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--black);
  padding: 22px 0;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.faq-question:hover { color: rgba(0,0,0,0.6); }

.faq-icon {
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: rgba(0,0,0,0.35);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
  padding-bottom: 22px;
  font-size: 14px;
  color: rgba(0,0,0,0.45);
  line-height: 1.7;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.contact-info .section__title {
  margin-bottom: 16px;
}

.contact-intro {
  font-size: 14px;
  color: rgba(0,0,0,0.45);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.08);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  color: var(--black);
}

.contact-channel:hover {
  border-color: rgba(0,0,0,0.25);
  background: rgba(0,0,0,0.02);
}

.contact-channel__icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--black);
}

.contact-channel__icon svg {
  width: 22px;
  height: 22px;
}

.contact-channel__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-channel__text strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--black);
}

.contact-channel__text span {
  font-size: 14px;
  color: rgba(0,0,0,0.55);
}

.contact-channel__text em {
  font-size: 11px;
  font-style: normal;
  color: rgba(0,0,0,0.3);
  letter-spacing: 1px;
}

.contact-hours {
  border: 1px solid rgba(0,0,0,0.08);
  padding: 24px;
}

.contact-hours h5 {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 16px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 13px;
  color: rgba(0,0,0,0.5);
}

.hours-row:last-child { border-bottom: none; }

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: var(--light-1);
  border: 1px solid rgba(0,0,0,0.08);
  padding: clamp(24px, 4vw, 48px);
}

.contact-form-header {
  margin-bottom: 28px;
}

.contact-form-header h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.contact-form-header p {
  font-size: 13px;
  color: rgba(0,0,0,0.4);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--black);
  padding: 14px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0,0,0,0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0,0,0,0.4);
}

.form-group textarea { resize: vertical; }

.form-group select option {
  background: var(--white);
  color: var(--black);
}

.form-success {
  text-align: center;
  padding: 60px 20px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: rgba(0,0,0,0.45);
}

/* ===== WHATSAPP CTA ===== */
.whatsapp-cta {
  padding: var(--section-pad) 0;
  background: var(--black);
  color: var(--white);
}

.whatsapp-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.whatsapp-cta__text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: var(--white);
}

.whatsapp-cta__text h2 .highlight {
  -webkit-text-stroke: 2px var(--white);
}

.whatsapp-cta__text p {
  font-size: clamp(13px, 1.5vw, 15px);
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  line-height: 1.7;
}

.whatsapp-cta .btn--primary {
  background: var(--white);
  color: var(--black);
  flex-shrink: 0;
}

.whatsapp-cta .btn--primary:hover {
  background: var(--black);
  color: var(--white);
  outline: 2px solid var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .story { grid-template-columns: 1fr; }
  .story__left { min-height: 300px; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .delivery-cards {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .delivery-cards .delivery-card {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 20px;
  }

  .steps { flex-wrap: wrap; }
  .step__arrow { display: none; }
  .step { min-width: 140px; max-width: calc(50% - 12px); }

  .payment-grid { grid-template-columns: 1fr; gap: 2px; }
  .returns-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }

  .cat-grid { grid-template-columns: 1fr; height: auto; }
  .cat-card { height: 200px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .hero__title { font-size: clamp(60px, 18vw, 120px); }
  .hero__stats { gap: 16px; }
  .stat__divider { height: 28px; }
  .hero__scroll-hint { display: none; }

  .section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .newsletter__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter__form {
    width: 100%;
    flex-direction: column;
  }

  .newsletter__form input {
    width: 100%;
    border-right: 1px solid rgba(255,255,255,0.15);
    border-bottom: none;
  }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { border-top: 1px solid rgba(0,0,0,0.06); }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .product-modal { grid-template-columns: 1fr; }
  .modal-img { max-height: 300px; overflow: hidden; }

  .table-wrap { margin: 0 -16px; padding: 0 16px; }
  .delivery-table th, .delivery-table td { padding: 14px 12px; font-size: 12px; }

  .steps { gap: 24px; }
  .step { max-width: 100%; min-width: 100%; }

  .whatsapp-cta__inner { flex-direction: column; align-items: flex-start; }
  .whatsapp-cta .btn--large { width: 100%; justify-content: center; }

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

@media (max-width: 480px) {
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { text-align: center; justify-content: center; }
  .filter-bar { flex-direction: column; align-items: flex-start; }
  .filter-bar__cats { gap: 8px; }
  .filter-btn { padding: 8px 14px; font-size: 10px; }
  .delivery-cards .delivery-card { flex-direction: column; text-align: center; }
  .modal-sizes { overflow-x: auto; }
  .size-btns { flex-wrap: nowrap; min-width: max-content; }
}

/* ============================================
   MOBILE OPTIMISATION COMPLÈTE
   ============================================ */
@media (max-width: 768px) {

  /* NAV */
  .nav__logo-icon { height: 32px; margin-left: 0; }
  .nav__cart-btn { color: #111; }
  .nav--hero .nav__cart-btn { color: #fff; }
  .nav.scrolled .nav__cart-btn { color: #111; }
  .nav__actions { gap: 4px; }

  /* MOBILE MENU */
  .mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 990;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    padding: 40px 32px;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu ul { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 24px; }
  .mobile-menu ul a {
    font-family: var(--font-display);
    font-size: 36px;
    letter-spacing: 4px;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
  }

  /* HERO */
  .hero { min-height: 100svh; }
  .hero__content { padding-top: 20px; }
  .hero__slide { background-size: cover; background-position: center top; }
  .hero__overlay { background: rgba(0,0,0,0.4); }
  .hero__grid-lines { display: none; }
  .hero__stats { gap: 12px; }
  .stat__num { font-size: clamp(22px, 6vw, 36px); }
  .hero__btns { gap: 10px; }
  .hero__btns .btn { padding: 14px 24px; font-size: 12px; }

  /* PRODUCTS GRID */
  .products-grid--shop {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 24px;
  }
  .product-card__info { padding: 10px 10px 12px; }
  .product-card__name { font-size: 12px; margin: 0 0 8px; }
  .product-card__price { font-size: 16px; }
  .add-cart { padding: 10px; font-size: 10px; letter-spacing: 1px; }

  /* FILTER TABS */
  .filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    gap: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .filter-tabs::-webkit-scrollbar { display: none; }
  .filter-tab { white-space: nowrap; padding: 14px 18px; font-size: 11px; }

  /* GENDER TABS */
  .gender-tabs { gap: 6px; margin-bottom: 20px; }
  .gender-tab { padding: 7px 16px; font-size: 11px; }

  /* PRODUCT MODAL → full screen bottom sheet */
  .pmodal-overlay { background: rgba(0,0,0,0.6); }
  .pmodal {
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 92svh !important;
    border-radius: 20px 20px 0 0 !important;
    grid-template-columns: 1fr !important;
    transform: translateY(100%) !important;
    overflow-y: auto;
  }
  .pmodal.active { transform: translateY(0) !important; }
  .pmodal__img { min-height: 280px; }
  .pmodal__img img { object-fit: contain; }
  .pmodal__info { padding: 20px 18px; overflow-y: visible; max-height: none; }
  .pmodal__name { font-size: 18px; }
  .pmodal__price { font-size: 22px; }
  .pmodal__actions { grid-template-columns: 1fr; gap: 10px; }
  .pmodal__close { top: 12px; right: 12px; width: 32px; height: 32px; }

  /* CART DRAWER */
  .cart-drawer {
    width: 100%;
    height: 100dvh;
  }
  .cart-drawer__footer {
    padding: 16px 20px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
  .cart-drawer__footer .btn {
    padding: 16px;
    font-size: 14px;
  }

  /* ORDER FORM */
  .order-modal {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    transform: translate(0, 100%) !important;
    max-height: 95svh;
    padding: 24px 20px;
  }
  .order-modal.active { transform: translate(0, 0) !important; }
  .order-form__row { grid-template-columns: 1fr; }

  /* CATEGORIES */
  .cat-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px;
  }
  .cat-card {
    max-width: 100%;
    aspect-ratio: 2/3;
    border-radius: 10px;
  }
  .cat-card__content h3 { font-size: 14px; letter-spacing: 1px; }
  .cat-card__content span { font-size: 9px; }
  .cat-shop { font-size: 10px !important; letter-spacing: 1px !important; }
  .cat-card__content { padding: 12px; }

  /* PAGE HERO */
  .page-hero { min-height: 30vh; padding: calc(var(--nav-h) + 32px) 20px 32px; }
  .page-hero h1 { font-size: clamp(40px, 14vw, 80px); }
  .page-hero__logo { height: 48px; }

  /* STORY */
  .story__photo-wrap { padding: 20px; }
  .story__photo { max-width: 100%; }

  /* FOOTER */
  .footer__top { padding: 32px 0 24px; }
  .footer__logo-img { height: 24px; }

  /* NOTIFICATIONS */
  .purchase-notif { left: 12px; right: 12px; max-width: calc(100% - 24px); bottom: 16px; }

  /* FREE SHIP BANNER */
  .free-ship-banner { font-size: 12px; padding: 12px 16px; flex-wrap: wrap; gap: 6px; }

  /* TICKER */
  .ticker { padding: 10px 0; }
  .ticker__track { font-size: 12px; gap: 24px; }

  /* TRUST */
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  /* LIVRAISON */
  .delivery-table th, .delivery-table td { font-size: 11px; padding: 10px 8px; }
  .steps { gap: 16px; }
  .step { min-width: 100%; max-width: 100%; }

  /* NEWSLETTER */
  .newsletter__form input { border-right: 1px solid rgba(0,0,0,0.15); border-bottom: none; width: 100%; }

  /* SECTION PADDING */
  .section { padding: 40px 0; }
  .container { padding: 0 16px; }
}

/* ===== PURCHASE NOTIFICATION ===== */
.purchase-notif {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  max-width: 300px;
  transform: translateX(-120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  border-left: 3px solid #111;
}

.purchase-notif.show {
  transform: translateX(0);
  opacity: 1;
}

.purchase-notif__img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1px;
}

.purchase-notif__img::after { content: 'IC'; }

.purchase-notif__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.purchase-notif__name {
  font-size: 12px;
  font-weight: 700;
  color: #111;
}

.purchase-notif__msg {
  font-size: 11px;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.purchase-notif__time {
  font-size: 10px;
  color: #aaa;
}

.purchase-notif__close {
  background: none;
  border: none;
  font-size: 13px;
  color: #aaa;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  line-height: 1;
}

/* ===== SELECTION ===== */
::selection {
  background: var(--black);
  color: var(--white);
}

/* ===== ENTRANCE ANIMATION ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__content {
  animation: fadeInUp 0.8s ease forwards;
}

/* ===== TV / LARGE SCREENS ===== */
@media (min-width: 1920px) {
  :root {
    --nav-h: 90px;
    --section-pad: 140px;
  }

  .container {
    max-width: 1600px;
  }

  html {
    font-size: 18px;
  }

  .nav__logo-icon {
    height: 64px;
    margin-left: 260px;
  }

  .nav__links a {
    font-size: 15px;
    letter-spacing: 3px;
  }

  .nav__cta {
    font-size: 14px;
    padding: 13px 30px;
  }

  .hero__title {
    font-size: clamp(120px, 10vw, 220px);
  }

  .hero__sub {
    font-size: 20px;
    max-width: 640px;
  }

  .hero__tag {
    font-size: 14px;
    letter-spacing: 6px;
  }

  .stat__num {
    font-size: clamp(42px, 3vw, 60px);
  }

  .stat__label {
    font-size: 13px;
    letter-spacing: 4px;
  }

  .section__title {
    font-size: clamp(48px, 4vw, 72px);
  }

  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

  .product-card__name {
    font-size: 18px;
  }

  .product-card__price {
    font-size: 18px;
  }

  .btn {
    font-size: 14px;
    padding: 16px 40px;
    letter-spacing: 3px;
  }

  .footer__logo {
    font-size: 48px;
  }
}

@media (min-width: 2560px) {
  :root {
    --nav-h: 110px;
    --section-pad: 180px;
  }

  .container {
    max-width: 2200px;
  }

  html {
    font-size: 20px;
  }

  .nav__logo-icon {
    height: 80px;
    margin-left: 320px;
  }

  .hero__title {
    font-size: clamp(160px, 9vw, 280px);
  }

  .hero__sub {
    font-size: 24px;
    max-width: 800px;
  }

  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }
}
