/* ============================================
   LES CRO'MIGNONS — MAIN STYLESHEET
   Mobile-first, responsive, optimized
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors from Logo */
  --color-navy: #3d4157;
  --color-navy-light: #5a5e78;
  --color-navy-dark: #2c2f40;
  --color-coral: #e8734a;
  --color-coral-light: #f09070;
  --color-coral-dark: #d35a30;
  --color-yellow: #f5a623;
  --color-yellow-light: #ffc85c;
  --color-pink: #e891a8;
  --color-pink-light: #f5c1d0;

  /* Neutrals */
  --color-white: #ffffff;
  --color-offwhite: #faf8f6;
  --color-cream: #f5f0eb;
  --color-gray-100: #f0ede9;
  --color-gray-200: #e0dbd5;
  --color-gray-300: #c5bfb7;
  --color-gray-400: #9e9890;
  --color-gray-500: #6e6860;
  --color-black: #1a1a2e;

  /* Semantic */
  --color-primary: var(--color-navy);
  --color-accent: var(--color-coral);
  --color-accent-secondary: var(--color-yellow);
  --color-accent-soft: var(--color-pink);
  --color-bg: var(--color-offwhite);
  --color-surface: var(--color-white);
  --color-text: var(--color-navy);
  --color-text-muted: var(--color-gray-500);
  --color-border: var(--color-gray-200);
  --color-success: #4caf7d;
  --color-error: #e74c3c;

  /* Typography */
  --font-display: 'Quicksand', 'Nunito', sans-serif;
  --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;
  --font-accent: 'Fredoka One', 'Quicksand', cursive;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 960px;
  --header-height: 70px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(61, 65, 87, 0.08);
  --shadow-md: 0 4px 12px rgba(61, 65, 87, 0.1);
  --shadow-lg: 0 8px 30px rgba(61, 65, 87, 0.12);
  --shadow-xl: 0 16px 50px rgba(61, 65, 87, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.font-accent {
  font-family: var(--font-accent);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-3xl) 0;
}

.section--alt {
  background-color: var(--color-cream);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border: 2px solid transparent;
}

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

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

.btn--secondary {
  background-color: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

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

.btn--accent {
  background-color: var(--color-yellow);
  color: var(--color-navy-dark);
  border-color: var(--color-yellow);
}

.btn--accent:hover {
  background-color: var(--color-yellow-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--small {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn--icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

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

/* Top bar */
.header-topbar {
  background-color: var(--color-navy);
  color: var(--color-white);
  font-size: 0.8rem;
  padding: 0.4rem 0;
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: 0.3px;
}

.header-topbar a {
  color: var(--color-yellow-light);
  font-weight: 700;
}

.header-topbar a:hover {
  color: var(--color-coral-light);
}

/* Main header */
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-lg);
  height: var(--header-height);
  max-width: var(--container-max);
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  height: 50px;
  width: auto;
}

/* Navigation */
.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-navy);
  position: relative;
  padding: var(--space-xs) 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-coral);
  border-radius: 1px;
  transition: width var(--transition-base);
}

.main-nav a:hover::after,
.main-nav .current-menu-item a::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--color-coral);
}

/* Dropdown */
.main-nav .menu-item-has-children {
  position: relative;
}

.main-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  background: var(--color-white);
  min-width: 200px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  flex-direction: column;
  gap: 0;
  z-index: 100;
}

.main-nav .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .sub-menu li {
  display: block;
}

.main-nav .sub-menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

.main-nav .sub-menu a::after {
  display: none;
}

.main-nav .sub-menu a:hover {
  background-color: var(--color-cream);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header-action-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-navy);
  transition: all var(--transition-fast);
}

.header-action-btn:hover {
  background-color: var(--color-cream);
  color: var(--color-coral);
}

.header-action-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: var(--color-coral);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile menu toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: var(--space-xs);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-navy);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  overflow-y: auto;
  padding: var(--space-xl);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

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

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-gray-100);
}

.mobile-nav .sub-menu {
  padding-left: var(--space-lg);
}

.mobile-nav .sub-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-gray-500);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-cream);
}

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

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61, 65, 87, 0.65) 0%, rgba(61, 65, 87, 0.25) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: var(--space-3xl) var(--space-lg);
  animation: fadeInUp 0.8s ease forwards;
}

.hero__badge {
  display: inline-block;
  background-color: var(--color-yellow);
  color: var(--color-navy-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  letter-spacing: 1px;
}

.hero__title {
  color: var(--color-white);
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.hero__title span {
  color: var(--color-yellow-light);
}

.hero__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

/* Decorative blobs */
.hero__decor {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  opacity: 0.15;
}

.hero__decor--1 {
  width: 300px;
  height: 300px;
  background: var(--color-coral);
  top: -80px;
  right: -60px;
}

.hero__decor--2 {
  width: 200px;
  height: 200px;
  background: var(--color-yellow);
  bottom: -40px;
  left: 10%;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.category-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-card:hover .category-card__img {
  transform: scale(1.05);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 65, 87, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
}

.category-card__label {
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: var(--space-xs);
}

.category-card__count {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.category-card__arrow {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-10px, 10px);
  transition: all var(--transition-base);
}

.category-card:hover .category-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.category-card__arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-navy);
  fill: none;
  stroke-width: 2;
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header__subtitle {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-coral);
  margin-bottom: var(--space-sm);
}

.section-header__title {
  margin-bottom: var(--space-sm);
}

.section-header__text {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-muted);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card__image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: var(--color-gray-100);
}

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

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

/* Product badges */
.product-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.product-badge__tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
}

.product-badge__tag--new {
  background-color: var(--color-coral);
  color: var(--color-white);
}

.product-badge__tag--sale {
  background-color: var(--color-yellow);
  color: var(--color-navy-dark);
}

.product-badge__tag--hot {
  background-color: var(--color-pink);
  color: var(--color-navy-dark);
}

/* Product quick actions */
.product-card__actions {
  position: absolute;
  bottom: var(--space-sm);
  right: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 3;
}

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

.product-card__action-btn {
  width: 36px;
  height: 36px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.product-card__action-btn:hover {
  background-color: var(--color-coral);
  color: var(--color-white);
}

.product-card__action-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Product info */
.product-card__info {
  padding: var(--space-md);
}

.product-card__category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gray-400);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.product-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__title a:hover {
  color: var(--color-coral);
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.product-card__price .amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-navy);
}

.product-card__price del .amount {
  font-size: 0.9rem;
  color: var(--color-gray-400);
  font-weight: 500;
}

.product-card__price ins {
  text-decoration: none;
}

.product-card__price ins .amount {
  color: var(--color-coral);
}

/* Add to cart */
.product-card__add-to-cart {
  width: 100%;
  margin-top: var(--space-sm);
  padding: 0.6rem;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  transition: background var(--transition-fast);
  display: block;
  border: none;
  cursor: pointer;
}

.product-card__add-to-cart:hover {
  background: var(--color-coral);
}

/* Star rating */
.star-rating {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-xs);
}

.star-rating svg {
  width: 14px;
  height: 14px;
  fill: var(--color-yellow);
  stroke: var(--color-yellow);
}

.star-rating svg.empty {
  fill: none;
  stroke: var(--color-gray-300);
}

/* ============================================
   USP / FEATURES BAR
   ============================================ */
.usp-bar {
  background: var(--color-white);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  text-align: center;
}

.usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.usp-item__icon {
  width: 50px;
  height: 50px;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-coral);
}

.usp-item__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.usp-item__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.usp-item__text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter__decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.newsletter__decor--1 {
  width: 400px;
  height: 400px;
  background: var(--color-coral);
  top: -150px;
  right: -100px;
}

.newsletter__decor--2 {
  width: 250px;
  height: 250px;
  background: var(--color-yellow);
  bottom: -80px;
  left: -60px;
}

.newsletter h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.newsletter p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto var(--space-xl);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 450px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--color-coral);
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-3xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.footer-col__title {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: var(--space-md);
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--color-coral-light);
}

.footer-logo {
  height: 45px;
  margin-bottom: var(--space-md);
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-coral);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-payments {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.footer-payments img {
  height: 24px;
  opacity: 0.5;
}

/* ============================================
   WOOCOMMERCE — SHOP PAGE
   ============================================ */
.shop-header {
  background: var(--color-cream);
  padding: var(--space-2xl) 0;
}

.shop-header h1 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.shop-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  padding: var(--space-2xl) 0;
}

/* Filters sidebar */
.shop-filters {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.shop-filters__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-sm) 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-navy);
  border-bottom: 2px solid var(--color-border);
  margin-bottom: var(--space-md);
}

.filter-group {
  margin-bottom: var(--space-lg);
}

.filter-group__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  color: var(--color-navy);
}

.filter-group__items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.filter-chip {
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--color-white);
}

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

/* Color swatches */
.filter-color {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-color:hover,
.filter-color.active {
  border-color: var(--color-navy);
  transform: scale(1.15);
}

/* Price range */
.filter-price-range {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.filter-price-range input {
  width: 80px;
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.85rem;
}

/* Shop toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.shop-result-count {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.shop-sort select {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  background: var(--color-white);
  color: var(--color-text);
}

/* ============================================
   WOOCOMMERCE — SINGLE PRODUCT
   ============================================ */
.single-product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  padding: var(--space-2xl) 0;
}

.product-gallery {
  position: relative;
}

.product-gallery__main {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-gray-100);
  margin-bottom: var(--space-md);
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.product-gallery__thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.product-gallery__thumb.active,
.product-gallery__thumb:hover {
  border-color: var(--color-coral);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product summary */
.product-summary {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.product-summary__breadcrumb {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.product-summary__breadcrumb a:hover {
  color: var(--color-coral);
}

.product-summary__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.product-summary__price {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.product-summary__price .price-current {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--color-coral);
}

.product-summary__price .price-original {
  font-size: 1.1rem;
  color: var(--color-gray-400);
  text-decoration: line-through;
}

.product-summary__desc {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Size selector */
.size-selector {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.size-selector__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  display: block;
  width: 100%;
}

.size-option {
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0 var(--space-sm);
}

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

.size-option.out-of-stock {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Quantity & add to cart */
.product-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.quantity-selector button {
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  transition: background var(--transition-fast);
}

.quantity-selector button:hover {
  background: var(--color-cream);
}

.quantity-selector input {
  width: 50px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-weight: 600;
}

.product-actions .btn {
  flex: 1;
  min-width: 200px;
}

/* Wishlist button */
.wishlist-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.wishlist-btn:hover,
.wishlist-btn.active {
  border-color: var(--color-pink);
  background: var(--color-pink-light);
}

.wishlist-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-navy);
  fill: none;
  stroke-width: 2;
}

.wishlist-btn.active svg {
  fill: var(--color-pink);
  stroke: var(--color-pink);
}

/* Product meta */
.product-meta {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.product-meta strong {
  color: var(--color-navy);
}

/* Product tabs */
.product-tabs {
  margin-top: var(--space-2xl);
}

.product-tabs__nav {
  display: flex;
  gap: var(--space-xs);
  border-bottom: 2px solid var(--color-border);
  margin-bottom: var(--space-xl);
  overflow-x: auto;
}

.product-tabs__btn {
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-gray-400);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.product-tabs__btn.active,
.product-tabs__btn:hover {
  color: var(--color-navy);
  border-bottom-color: var(--color-coral);
}

.product-tabs__content {
  display: none;
}

.product-tabs__content.active {
  display: block;
}

/* Related products */
.related-products {
  padding: var(--space-3xl) 0;
}

/* ============================================
   QUICK VIEW MODAL
   ============================================ */
.quickview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  backdrop-filter: blur(4px);
}

.quickview-overlay.active {
  display: flex;
}

.quickview-modal {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideUp 0.3s ease;
}

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

.quickview-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  background: var(--color-gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition-fast);
}

.quickview-close:hover {
  background: var(--color-coral);
  color: var(--color-white);
}

.quickview-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg);
}

/* ============================================
   CART & CHECKOUT
   ============================================ */
.woocommerce-cart-form table {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-cart-form th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gray-400);
  padding: var(--space-md);
  border-bottom: 2px solid var(--color-border);
  text-align: left;
}

.woocommerce-cart-form td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-gray-100);
  vertical-align: middle;
}

.cart-item-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-totals {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.cart-totals h3 {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-border);
}

.cart-totals table {
  width: 100%;
  margin-bottom: var(--space-lg);
}

.cart-totals td {
  padding: var(--space-sm) 0;
}

.cart-totals .order-total td {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  padding-top: var(--space-md);
  border-top: 2px solid var(--color-border);
}

/* Checkout form */
.checkout-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.checkout-section {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}

.checkout-section h3 {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-border);
}

.form-row {
  margin-bottom: var(--space-md);
}

.form-row label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: var(--space-xs);
  color: var(--color-navy);
}

.form-row label .required {
  color: var(--color-coral);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
  background: var(--color-white);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-coral);
}

/* ============================================
   PAGES — ABOUT, CONTACT, FAQ
   ============================================ */
.page-header {
  background: var(--color-cream);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: var(--space-sm);
}

.page-header p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: var(--space-3xl) 0;
}

/* About page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: box-shadow var(--transition-fast);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  color: var(--color-navy);
  background: var(--color-white);
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--color-cream);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gray-400);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 var(--space-lg);
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item.active .faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  max-height: 500px;
}

.faq-answer p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-coral);
}

.contact-info-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  backdrop-filter: blur(4px);
}

.search-overlay.active {
  display: flex;
}

.search-box {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 600px;
  padding: var(--space-lg);
  animation: modalSlideUp 0.3s ease;
}

.search-box input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.search-box input:focus {
  border-color: var(--color-coral);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-2xl) 0;
}

.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.pagination a {
  border: 1px solid var(--color-border);
}

.pagination a:hover {
  border-color: var(--color-coral);
  color: var(--color-coral);
}

.pagination .current {
  background: var(--color-navy);
  color: var(--color-white);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  padding: var(--space-md) 0;
  font-size: 0.8rem;
  color: var(--color-gray-400);
}

.breadcrumbs a {
  color: var(--color-gray-400);
}

.breadcrumbs a:hover {
  color: var(--color-coral);
}

.breadcrumbs .separator {
  margin: 0 var(--space-sm);
}

/* ============================================
   WISHLIST PAGE
   ============================================ */
.wishlist-table {
  width: 100%;
  border-collapse: collapse;
}

.wishlist-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: var(--space-md);
  border-bottom: 2px solid var(--color-border);
  text-align: left;
  color: var(--color-gray-400);
}

.wishlist-table td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-gray-100);
  vertical-align: middle;
}

/* ============================================
   COOKIE / RGPD NOTICE
   ============================================ */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-navy-dark);
  color: var(--color-white);
  padding: var(--space-lg);
  z-index: 3000;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-notice.visible {
  transform: translateY(0);
}

.cookie-notice__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
}

.cookie-notice p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.cookie-notice p a {
  color: var(--color-yellow-light);
  text-decoration: underline;
}

.cookie-notice__actions {
  display: flex;
  gap: var(--space-sm);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-accent { color: var(--color-coral); }
.text-muted { color: var(--color-text-muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lazy-load {
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.lazy-load.loaded {
  opacity: 1;
}

/* ============================================
   RESPONSIVE — TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-form {
    flex-direction: row;
  }

  .newsletter-form .btn {
    width: auto;
    flex-shrink: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quickview-content {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .checkout-form {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .single-product-layout {
    grid-template-columns: 1fr 1fr;
  }

  .shop-layout {
    grid-template-columns: 260px 1fr;
  }

  .cookie-notice__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .main-nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

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

  .usp-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .hero {
    min-height: 70vh;
  }

  .hero__content {
    padding: var(--space-4xl) var(--space-lg);
  }
}

/* ============================================
   ANIMATIONS — Intersection Observer
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .site-header,
  .site-footer,
  .cookie-notice,
  .newsletter {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }
}
