/* ============================================================
   IVORA COLLECTION — Design System Ultra-Premium V3
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Montserrat:wght@200;300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --black: #0a0908;
  --black-soft: #111111;
  --charcoal: #1a1a1a;
  --ivory: #f5f0e8;
  --ivory-light: #faf7f2;
  --ivory-dark: #e8e0d0;
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --gold-dark: #a07840;
  --white: #ffffff;
  --gray-100: #f7f5f3;
  --gray-200: #ece8e1;
  --gray-300: #d4cfc6;
  --gray-500: #8a847a;
  --gray-700: #4a4540;
  --gray-900: #1e1a16;

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, sans-serif;

  --nav-height: 80px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-med: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 8px rgba(10, 9, 8, 0.08);
  --shadow-md: 0 8px 30px rgba(10, 9, 8, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 9, 8, 0.2);
  --shadow-xl: 0 40px 100px rgba(10, 9, 8, 0.3);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

body.menu-open,
body.cart-open,
body.modal-open {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background var(--transition-med), box-shadow var(--transition-med);
}

.navbar.transparent {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(10,9,8,0.08);
}

.navbar.dark-mode {
  background: transparent;
}

.navbar.dark-mode.scrolled {
  background: rgba(10, 9, 8, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo img {
  height: 36px;
  width: auto;
  transition: opacity var(--transition-fast);
}

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

.nav-logo-dark {
  display: none;
}

.navbar.dark-mode .nav-logo-light {
  display: none;
}

.navbar.dark-mode .nav-logo-dark {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  transition: color var(--transition-fast);
}

.navbar.dark-mode .nav-links a {
  color: var(--ivory-light);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition-med);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background var(--transition-fast);
  position: relative;
}

.nav-icon-btn:hover {
  background: rgba(10,9,8,0.06);
}

.navbar.dark-mode .nav-icon-btn:hover {
  background: rgba(255,255,255,0.1);
}

.nav-icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--black);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.navbar.dark-mode .nav-icon-btn svg {
  stroke: var(--ivory-light);
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all var(--transition-fast);
}

.cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

/* Mobile Menu Button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--black);
  transition: all var(--transition-med);
  transform-origin: center;
}

.navbar.dark-mode .hamburger span {
  background: var(--ivory-light);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ============================================================
   MOBILE MENU
   ============================================================ */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-links a {
  font-family: var(--font-serif);
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 300;
  color: var(--ivory-light);
  letter-spacing: 0.05em;
  line-height: 1.2;
  transition: color var(--transition-fast);
  display: inline-block;
}

.mobile-menu-links a:hover {
  color: var(--gold);
}

.mobile-menu-footer {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 32px;
  align-items: center;
}

.mobile-menu-footer a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: color var(--transition-fast);
}

.mobile-menu-footer a:hover {
  color: var(--ivory-light);
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */

.announcement-bar {
  background: var(--black);
  color: var(--ivory-light);
  text-align: center;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  z-index: 1001;
}

.announcement-bar span {
  color: var(--gold);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-bg img.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 9, 8, 0.2) 0%,
    rgba(10, 9, 8, 0.45) 50%,
    rgba(10, 9, 8, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(70px, 14vw, 160px);
  font-weight: 300;
  color: var(--ivory-light);
  letter-spacing: 0.08em;
  line-height: 0.9;
  margin-bottom: 28px;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory-dark);
  letter-spacing: 0.04em;
  margin-bottom: 50px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ivory-light);
  opacity: 0.7;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--ivory-light), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 40px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform var(--transition-med);
}

.btn:hover::before {
  transform: translateX(0);
}

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

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

.btn-primary:hover {
  color: var(--ivory-light);
}

.btn-primary-dark {
  background: var(--black);
  color: var(--ivory-light);
}

.btn-primary-dark::before {
  background: var(--gold-dark);
}

.btn-primary-dark:hover {
  color: var(--ivory-light);
}

.btn-outline {
  background: transparent;
  color: var(--ivory-light);
  border: 1px solid rgba(250, 247, 242, 0.5);
}

.btn-outline::before {
  background: var(--ivory-light);
}

.btn-outline:hover {
  color: var(--black);
  border-color: var(--ivory-light);
}

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

.btn-outline-dark::before {
  background: var(--black);
}

.btn-outline-dark:hover {
  color: var(--ivory-light);
}

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

.btn-gold::before {
  background: var(--gold-dark);
}

.btn-gold:hover {
  color: var(--ivory-light);
}

.btn-text {
  background: none;
  color: var(--black);
  padding: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  transition: opacity var(--transition-fast);
}

.btn-text:hover {
  opacity: 0.5;
}

.btn-text::before {
  display: none;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-icon svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn-icon:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */

.section {
  padding: 120px 40px;
}

.section-sm {
  padding: 80px 40px;
}

.section-xl {
  padding: 160px 40px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.container-sm {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  color: var(--black);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.section-title em {
  font-style: italic;
  font-weight: 300;
}

.section-subtitle {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   CATEGORIES GRID
   ============================================================ */

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

.category-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,9,8,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 30px;
  transition: background var(--transition-med);
}

.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(10,9,8,0.85) 0%, rgba(10,9,8,0.1) 55%);
}

.category-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-align: center;
}

.category-count {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
}

.category-btn {
  margin-top: 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.5);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-med);
}

.category-card:hover .category-btn {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   FEATURED — SPLIT EDITORIAL
   ============================================================ */

.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.editorial-image {
  position: relative;
  overflow: hidden;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

.editorial-image:hover img {
  transform: scale(1.05);
}

.editorial-content {
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}

.editorial-content .section-label {
  color: var(--gold);
  text-align: left;
}

.editorial-content .section-title {
  color: var(--ivory-light);
  text-align: left;
  font-size: clamp(36px, 4vw, 56px);
}

.editorial-text {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-300);
  max-width: 420px;
}

.editorial-cta {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.editorial-cta .btn-text {
  color: var(--ivory-light);
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */

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

.products-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  position: relative;
  cursor: pointer;
  background: var(--ivory-light);
}

.product-card-image {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--gray-200);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

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

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--black);
  color: var(--ivory-light);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  z-index: 1;
}

.product-tag.gold {
  background: var(--gold);
  color: var(--black);
}

.product-wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(250,247,242,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.product-wishlist svg {
  width: 16px;
  height: 16px;
  stroke: var(--black);
  fill: none;
  stroke-width: 1.5;
  transition: all var(--transition-fast);
}

.product-wishlist.active svg {
  fill: var(--black);
}

.product-card:hover .product-wishlist {
  opacity: 1;
  transform: scale(1);
}

.product-quick-view {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 9, 8, 0.92);
  color: var(--ivory-light);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px;
  text-align: center;
  transform: translateY(100%);
  transition: transform var(--transition-med);
  z-index: 1;
  backdrop-filter: blur(4px);
}

.product-card:hover .product-quick-view {
  transform: translateY(0);
}

.product-card-info {
  padding: 16px 0 20px;
}

.product-card-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.product-card-category {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 400;
  margin-bottom: 10px;
}

.product-card-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.product-card-price .price-old {
  font-size: 12px;
  font-weight: 300;
  color: var(--gray-500);
  text-decoration: line-through;
}

.product-card-sizes {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.size-dot {
  width: 22px;
  height: 22px;
  border: 1px solid var(--gray-300);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

/* ============================================================
   MARQUEE BANNER
   ============================================================ */

.marquee-section {
  background: var(--black);
  padding: 20px 0;
  overflow: hidden;
}

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

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ivory-light);
  flex-shrink: 0;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* ============================================================
   MANIFESTO SECTION
   ============================================================ */

.manifesto-section {
  background: var(--black);
  padding: 140px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto-section::before {
  content: 'IVORA';
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(120px, 22vw, 300px);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.2em;
  pointer-events: none;
  white-space: nowrap;
}

.manifesto-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.manifesto-label::before,
.manifesto-label::after {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.manifesto-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory-light);
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto 36px;
}

.manifesto-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.9;
  max-width: 580px;
  margin: 0 auto 50px;
  letter-spacing: 0.03em;
}

/* ============================================================
   LOOKBOOK GRID
   ============================================================ */

.lookbook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}

.lookbook-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.lookbook-item.tall {
  grid-row: span 2;
}

.lookbook-item img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

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

.lookbook-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,9,8,0);
  transition: background var(--transition-med);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lookbook-item:hover .lookbook-item-overlay {
  background: rgba(10,9,8,0.35);
}

.lookbook-item-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.8);
  padding: 12px 28px;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-med);
  backdrop-filter: blur(4px);
}

.lookbook-item:hover .lookbook-item-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   VALUES / USP SECTION
   ============================================================ */

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

.value-card {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid var(--gray-200);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.value-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.value-text {
  font-size: 12px;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* ============================================================
   INSTAGRAM SECTION
   ============================================================ */

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

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,9,8,0);
  transition: background var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-item:hover .instagram-item-overlay {
  background: rgba(10,9,8,0.4);
}

.instagram-icon {
  color: var(--white);
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition-fast);
}

.instagram-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.instagram-item:hover .instagram-icon {
  opacity: 1;
  transform: scale(1);
}

.instagram-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  gap: 12px;
}

.instagram-handle {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
}

.instagram-handle svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */

.newsletter-section {
  background: var(--black);
  padding: 120px 40px;
}

.newsletter-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 300;
  color: var(--ivory-light);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.newsletter-subtitle {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-500);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

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

.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  color: var(--ivory-light);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-input::placeholder {
  color: var(--gray-500);
  letter-spacing: 0.08em;
}

.newsletter-input:focus {
  border-color: rgba(255,255,255,0.3);
}

.newsletter-btn {
  padding: 16px 32px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--gold-dark);
  color: var(--ivory-light);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--charcoal);
  padding: 80px 40px 40px;
}

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

.footer-brand .footer-logo {
  height: 30px;
  width: auto;
  margin-bottom: 20px;
  opacity: 0.9;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--gray-300);
  margin-bottom: 24px;
  line-height: 1.6;
}

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

.footer-social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--gray-300);
  transition: fill var(--transition-fast);
}

.footer-social-link:hover {
  border-color: var(--gold);
  background: var(--gold);
}

.footer-social-link:hover svg {
  fill: var(--black);
}

.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

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

.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-300);
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--ivory-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.08em;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--gray-300);
}

/* ============================================================
   CART SIDEBAR
   ============================================================ */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,9,8,0.6);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
  backdrop-filter: blur(4px);
}

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

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -500px;
  width: 440px;
  max-width: 100%;
  height: 100%;
  background: var(--ivory-light);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-luxury);
  box-shadow: var(--shadow-xl);
}

.cart-sidebar.open {
  right: 0;
}

.cart-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border-bottom: 1px solid var(--gray-200);
}

.cart-sidebar-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.cart-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
  border-radius: 50%;
}

.cart-close:hover {
  background: var(--gray-200);
}

.cart-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--black);
  fill: none;
  stroke-width: 1.5;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}

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

.cart-item-img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  background: var(--gray-200);
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.cart-item-meta {
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

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

.qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--black);
}

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

.qty-value {
  font-size: 13px;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 500;
  text-align: right;
}

.cart-item-remove {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  cursor: pointer;
  transition: color var(--transition-fast);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cart-item-remove:hover {
  color: var(--black);
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  color: var(--gray-500);
}

.cart-empty svg {
  width: 48px;
  height: 48px;
  stroke: var(--gray-300);
  fill: none;
  stroke-width: 1;
}

.cart-empty p {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
}

.cart-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--gray-200);
  background: var(--ivory-light);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cart-subtotal-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cart-subtotal-amount {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-actions .btn {
  width: 100%;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--transition-fast);
  font-family: var(--font-sans);
  width: 100%;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: #128C7E;
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

/* ============================================================
   QUICK VIEW MODAL
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,9,8,0.7);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
  backdrop-filter: blur(6px);
}

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

.modal-container {
  background: var(--ivory-light);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition-med);
}

.modal-overlay.open .modal-container {
  transform: scale(1) translateY(0);
}

.modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-image {
  aspect-ratio: 2/3;
  overflow: hidden;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
}

.modal-close {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
  border-radius: 50%;
  margin-bottom: 20px;
}

.modal-close:hover {
  background: var(--gray-200);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--black);
  fill: none;
  stroke-width: 1.5;
}

.modal-category {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.modal-name {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

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

.modal-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 28px;
  border-top: 1px solid var(--gray-200);
  padding-top: 24px;
}

.modal-size-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--black);
}

.modal-sizes {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.size-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-300);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--black);
  background: var(--white);
  font-family: var(--font-sans);
}

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

.modal-add-btn {
  width: 100%;
  margin-bottom: 16px;
}

.modal-wishlist-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-700);
  cursor: pointer;
  transition: color var(--transition-fast);
  font-family: var(--font-sans);
}

.modal-wishlist-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

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

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */

.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: var(--black);
  color: var(--ivory-light);
  padding: 16px 24px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  min-width: 260px;
  transform: translateX(120%);
  transition: transform var(--transition-med);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast.show {
  transform: translateX(0);
}

.toast svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1500;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* ============================================================
   PAGE TITLE HERO (sous-pages)
   ============================================================ */

.page-hero {
  height: 60vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.55);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.page-hero-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 8vw, 90px);
  font-weight: 300;
  color: var(--ivory-light);
  letter-spacing: 0.1em;
  line-height: 1;
}

.page-hero-subtitle {
  margin-top: 20px;
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  color: var(--ivory-dark);
  font-weight: 300;
}

/* ============================================================
   COLLECTION PAGE — FILTRES & LAYOUT
   ============================================================ */

.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--ivory-light);
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
}

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

.filter-tab {
  padding: 8px 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-700);
  background: transparent;
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-sans);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--black);
  color: var(--ivory-light);
  border-color: var(--black);
}

.collection-sort {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sort-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 500;
}

.sort-select {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--black);
  background: transparent;
  border: 1px solid var(--gray-300);
  padding: 8px 16px;
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.sort-select:focus {
  border-color: var(--black);
}

.collection-count {
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-500);
  letter-spacing: 0.06em;
}

.collection-products {
  padding: 2px 40px 80px;
}

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

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--gold);
  opacity: 0.3;
  z-index: -1;
}

.about-intro-text .section-label {
  text-align: left;
}

.about-intro-text .section-title {
  text-align: left;
  font-size: clamp(30px, 3.5vw, 48px);
  margin-bottom: 24px;
}

.about-intro-text p {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-700);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}

.about-stat-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-label {
  text-align: left;
}

.contact-info .section-title {
  text-align: left;
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-700);
  line-height: 1.9;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-detail-text h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 4px;
}

.contact-detail-text p {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-500);
  margin-bottom: 0;
}

.contact-form {
  background: var(--white);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

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

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

.form-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--ivory-light);
  border: 1px solid var(--gray-200);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--black);
  outline: none;
  transition: border-color var(--transition-fast);
  border-radius: 0;
  -webkit-appearance: none;
}

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

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  .products-grid,
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .categories-grid {
    grid-template-columns: repeat(2, 2fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --nav-height: 64px;
  }
  .navbar {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .section, .section-xl {
    padding: 80px 24px;
  }
  .section-sm {
    padding: 60px 24px;
  }
  .editorial-split {
    grid-template-columns: 1fr;
  }
  .editorial-content {
    padding: 50px 32px;
  }
  .products-grid,
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-intro,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .modal-inner {
    grid-template-columns: 1fr;
  }
  .modal-image {
    aspect-ratio: 16/9;
  }
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .collection-toolbar {
    padding: 16px 24px;
    flex-wrap: wrap;
    gap: 12px;
    top: var(--nav-height);
  }
  .collection-products {
    padding: 2px 24px 60px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .manifesto-section {
    padding: 100px 24px;
  }
  .lookbook-grid {
    grid-template-columns: 1fr;
  }
  .lookbook-item.tall {
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  .products-grid,
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-input {
    border-right: 1px solid rgba(255,255,255,0.12);
    border-bottom: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cart-sidebar {
    width: 100%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-form {
    padding: 28px 20px;
  }
  .filter-tabs {
    gap: 6px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.hidden { display: none !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.gold { color: var(--gold); }
.ivory { color: var(--ivory-light); }

/* ============================================================
   AMÉLIORATIONS PREMIUM V4 — STYLE ZARA / CLUB LONDON
   ============================================================ */

/* --- Hero v4: texte en bas à gauche comme Zara --- */
.hero-content-left {
  position: absolute;
  bottom: 80px;
  left: 60px;
  z-index: 2;
  text-align: left;
  max-width: 600px;
}

/* --- Nouveau bandeau announcement animé --- */
.announcement-bar {
  overflow: hidden;
  white-space: nowrap;
}

/* --- Produits : card-hover avec second image (Zara style) --- */
.product-card-image .product-img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-luxury);
}

.product-card:hover .product-card-image .product-img-hover {
  opacity: 1;
}

.product-card:hover .product-card-image .product-img-main {
  opacity: 0;
}

.product-card-image .product-img-main {
  transition: opacity var(--transition-luxury);
}

/* --- Section Hero 2 colonnes (style Zara homepage) --- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  min-height: 85vh;
  margin-top: var(--nav-height);
}

.hero-split-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hero-split-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

.hero-split-item:hover img {
  transform: scale(1.04);
}

.hero-split-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,9,8,0.6) 0%, transparent 50%);
}

.hero-split-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  color: var(--ivory-light);
}

.hero-split-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.hero-split-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-split-btn {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-light);
  border-bottom: 1px solid rgba(250,247,242,0.5);
  padding-bottom: 3px;
  transition: border-color var(--transition-fast);
}

.hero-split-btn:hover {
  border-color: var(--ivory-light);
}

/* --- Grille produits "Zara" : produits taille L sur desktop --- */
@media (min-width: 1200px) {
  .products-grid-featured {
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
  
  .products-grid-featured .product-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .products-grid-featured .product-card:nth-child(1) .product-card-image {
    aspect-ratio: unset;
    height: 100%;
    min-height: 700px;
  }
}

/* --- Badge de nouveauté amélioré --- */
.product-badge-new {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--ivory-light);
  color: var(--black);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 1;
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--transition-med);
}

.product-card:hover .product-badge-new {
  opacity: 1;
  transform: translateY(0);
}

/* --- Filtre collection amélioré --- */
.filter-tabs-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.filter-tabs-scroll::-webkit-scrollbar {
  display: none;
}

/* --- Section "Nouvelle Collection" banner style Zara --- */
.new-collection-banner {
  background: var(--black);
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.new-collection-banner-text {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory-light);
  letter-spacing: 0.05em;
}

.new-collection-banner-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: opacity var(--transition-fast);
}

.new-collection-banner-cta:hover {
  opacity: 0.7;
}

/* --- Hero vidéo / image pleine largeur style Club London --- */
.hero-fullscreen {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}

.hero-fullscreen-bg {
  position: absolute;
  inset: 0;
}

.hero-fullscreen-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-fullscreen-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 9, 8, 0.5) 0%,
    rgba(10, 9, 8, 0.1) 60%,
    transparent 100%
  );
}

.hero-fullscreen-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px;
  background: linear-gradient(to top, rgba(10,9,8,0.7) 0%, transparent 100%);
  z-index: 2;
}

.hero-fullscreen-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.hero-fullscreen-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 300;
  color: var(--ivory-light);
  letter-spacing: 0.06em;
  line-height: 0.9;
  margin-bottom: 30px;
}

.hero-fullscreen-sub {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: var(--ivory-dark);
  margin-bottom: 40px;
  max-width: 400px;
}

.hero-fullscreen-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* --- Product hover : taille visible au survol (style Zara) --- */
.product-hover-sizes {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(250, 247, 242, 0.97);
  padding: 12px 16px;
  transform: translateY(100%);
  transition: transform var(--transition-med);
  z-index: 2;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

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

.product-hover-sizes .size-pill {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border: 1px solid var(--gray-300);
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--black);
}

.product-hover-sizes .size-pill:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* --- Page loader amélioré --- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  height: 40px;
  width: auto;
  margin-bottom: 40px;
  animation: loaderFade 1.5s ease-in-out infinite alternate;
}

@keyframes loaderFade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

.loader-bar {
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: loaderSlide 1.4s ease-in-out infinite;
}

@keyframes loaderSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* --- Custom cursor premium --- */
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--black);
  border-radius: 50%;
  position: relative;
  top: -3px;
  left: -3px;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(10,9,8,0.3);
  border-radius: 50%;
  position: relative;
  top: -16px;
  left: -16px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

/* --- Section stats/chiffres (style Zara) --- */
.stats-ribbon {
  background: var(--ivory-dark);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.stats-ribbon-item {
  padding: 24px 40px;
  text-align: center;
  background: var(--ivory-light);
}

.stats-ribbon-number {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--black);
  display: block;
  margin-bottom: 8px;
}

.stats-ribbon-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
  }
  
  .hero-split-item {
    min-height: 60vh;
  }
  
  .hero-fullscreen-content {
    padding: 40px 24px;
  }
  
  .new-collection-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .stats-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-ribbon {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-fullscreen-title {
    font-size: clamp(40px, 12vw, 60px);
  }
}

/* --- Hover underline animation --- */
.hover-underline {
  position: relative;
}

.hover-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition-med);
}

.hover-underline:hover::after {
  width: 100%;
}
