/* ============================================
   STRIDE - Sneaker Store CSS
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --black: #111111;
  --red: #e63946;
  --red-hover: #d62836;
  --gray-light: #f8f9fa;
  --gray-medium: #e9ecef;
  --gray-text: #6c757d;
  --gray-dark: #495057;
  --footer-bg: #111111;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
  --nike-orange: #ff6900;
  --bg: var(--white);
  --text: var(--black);
  --card-bg: var(--white);
  --card-border: var(--gray-medium);
  --input-bg: var(--white);
}

/* Dark Mode */
[data-theme="dark"] {
  --bg: #0f0f0f;
  --text: #e8e8e8;
  --gray-light: #1e1e1e;
  --gray-medium: #2a2a2a;
  --gray-text: #9ca3af;
  --gray-dark: #d1d5db;
  --footer-bg: #0a0a0a;
  --card-bg: #1a1a1a;
  --card-border: #2a2a2a;
  --input-bg: #1e1e1e;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
}

[data-theme="dark"] body {
  background: var(--bg);
  color: var(--text);
}

[data-theme="dark"] .navbar {
  background: #0f0f0f;
  border-bottom-color: var(--card-border);
}

[data-theme="dark"] .product-card {
  background: var(--card-bg);
  border-color: var(--card-border);
}

[data-theme="dark"] .product-image {
  background: #151515;
}

[data-theme="dark"] .mobile-menu {
  background: #0f0f0f;
}

[data-theme="dark"] .mobile-menu a {
  color: var(--text);
  border-bottom-color: var(--card-border);
}

[data-theme="dark"] .filter-bar select {
  background-color: var(--input-bg);
  color: var(--text);
  border-color: var(--card-border);
}

[data-theme="dark"] .trust-item {
  background: var(--card-bg);
  border-color: var(--card-border);
}

[data-theme="dark"] .cart-summary {
  background: var(--card-bg);
}

[data-theme="dark"] .contact-info-card {
  background: var(--card-bg);
}

[data-theme="dark"] .bottom-nav {
  background: #0f0f0f;
  border-top-color: var(--card-border);
}

[data-theme="dark"] .gallery-main {
  background: #151515;
}

[data-theme="dark"] .gallery-thumbs button {
  background: #151515;
}

[data-theme="dark"] .size-option {
  background: var(--card-bg);
  border-color: var(--card-border);
  color: var(--text);
}

[data-theme="dark"] .quantity-selector {
  border-color: var(--card-border);
}

[data-theme="dark"] .quantity-selector input {
  background: var(--input-bg);
  color: var(--text);
  border-color: var(--card-border);
}

[data-theme="dark"] .quantity-selector button {
  color: var(--text);
}

[data-theme="dark"] .accordion-header {
  color: var(--text);
}

[data-theme="dark"] .accordion {
  border-color: var(--card-border);
}

[data-theme="dark"] .accordion-item {
  border-color: var(--card-border);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select {
  background: var(--input-bg);
  color: var(--text);
  border-color: var(--card-border);
}

[data-theme="dark"] .hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #111122 50%, #0d1525 100%);
}

[data-theme="dark"] .stock-info-critical {
  background: #2a1215;
  border-color: #5c2024;
}

[data-theme="dark"] .stock-info-low {
  background: #2a2310;
  border-color: #5c4b1a;
}

[data-theme="dark"] .stock-info-medium,
[data-theme="dark"] .stock-info-ok {
  background: #0d2818;
  border-color: #1a5c34;
}

[data-theme="dark"] .size-option.size-critical {
  background: #2a1215;
  border-color: #5c2024;
}

[data-theme="dark"] .size-option.size-low {
  background: #2a2310;
  border-color: #5c4b1a;
}

[data-theme="dark"] .destockage-banner {
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

[data-theme="dark"] ::-webkit-scrollbar-track {
  background: #1a1a1a;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
  background: #333;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   PROMO BAR
   ============================================ */
.promo-bar {
  background: var(--red);
  color: #fff;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  overflow: hidden;
  position: relative;
}

.promo-bar-content {
  display: flex;
  animation: promoScroll 20s linear infinite;
  white-space: nowrap;
}

.promo-bar-text {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
  flex-shrink: 0;
}

.promo-bar-text span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@keyframes promoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--gray-medium);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-logo img {
  height: 36px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-links a:hover {
  color: var(--red);
}

.navbar-cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s ease;
}

.navbar-cart:hover {
  color: var(--red);
}

.navbar-cart svg {
  width: 22px;
  height: 22px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-count.hidden {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  padding: 100px 30px 30px;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--gray-medium);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--red);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .navbar-links {
    display: none;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, #111111 0%, #1a1a2e 50%, #16213e 100%);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(230,57,70,0.08) 0%, transparent 60%);
  animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(230,57,70,0.15);
  border: 1px solid rgba(230,57,70,0.3);
  color: var(--red);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--red);
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.hero-cta:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230,57,70,0.3);
}

.hero-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
    min-height: 400px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 15px;
  }
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.section-title p {
  font-size: 16px;
  color: var(--gray-text);
}

.section-title .title-line {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ============================================
   PRODUCT GRID
   ============================================ */
.products-section {
  padding: 80px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.products-grid.collection-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-grid.collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .products-grid.collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .products-grid.collection-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Card */
.product-card {
  display: block;
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-medium);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  background: var(--gray-light);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.badge-new {
  background: var(--text);
}

.product-info {
  padding: 16px;
}

.product-info h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-color {
  font-size: 12px;
  color: var(--gray-text);
  margin-bottom: 8px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-current {
  font-size: 18px;
  font-weight: 800;
  color: var(--red);
}

.price-original {
  font-size: 14px;
  color: var(--gray-text);
  text-decoration: line-through;
}

/* ============================================
   COLLECTION PAGE
   ============================================ */
.collection-header {
  padding: 50px 0 30px;
  text-align: center;
}

.collection-header h1 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 8px;
}

.collection-header .product-count {
  font-size: 15px;
  color: var(--gray-text);
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--gray-medium);
  flex-wrap: wrap;
}

.filter-bar select {
  padding: 10px 16px;
  border: 1px solid var(--gray-medium);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  min-width: 180px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23495057' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.filter-bar select:focus {
  outline: none;
  border-color: var(--text);
}

.filter-group {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-dark);
}

@media (max-width: 768px) {
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .filter-group {
    width: 100%;
  }
  .filter-bar select {
    flex: 1;
    min-width: 0;
    width: 100%;
  }
}

/* Brand Tabs */
.brand-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.brand-tab {
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid var(--gray-medium);
  background: transparent;
  color: var(--gray-text);
  text-transform: uppercase;
}

.brand-tab:hover {
  border-color: var(--gray-dark);
  color: var(--gray-dark);
}

.brand-tab.active {
  color: #fff;
  border-color: transparent;
}

.brand-tab.active[data-brand=""] {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.brand-tab.active[data-brand="NIKE"] {
  background: var(--nike-orange);
  border-color: var(--nike-orange);
  color: #fff;
}

.brand-tab.active[data-brand="ASICS"] {
  background: #111;
  border-color: #111;
  color: #fff;
}

[data-theme="dark"] .brand-tab.active[data-brand="ASICS"] {
  background: #e8e8e8;
  border-color: #e8e8e8;
  color: #111;
}

@media (max-width: 480px) {
  .brand-tab {
    padding: 6px 16px;
    font-size: 11px;
  }
}

/* Dark Mode Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-medium);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-dark);
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: var(--gray-light);
  border-color: var(--gray-dark);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.theme-toggle .icon-sun {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}

[data-theme="dark"] .theme-toggle {
  border-color: var(--card-border);
  color: var(--gray-text);
}

[data-theme="dark"] .theme-toggle:hover {
  background: var(--card-bg);
}

.collection-section {
  padding: 0 0 80px;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-text);
  font-size: 16px;
}

.product-card.filtered-out {
  display: none !important;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.breadcrumb {
  padding: 20px 0;
  font-size: 13px;
  color: var(--gray-text);
}

.breadcrumb a {
  color: var(--gray-text);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--text);
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--gray-medium);
}

.breadcrumb .current {
  color: var(--text);
  font-weight: 600;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 20px 0 80px;
}

@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Image Gallery */
.gallery {
  position: sticky;
  top: 90px;
  align-self: start;
}

@media (max-width: 900px) {
  .gallery {
    position: static !important;
    top: auto;
  }
}

.gallery-main {
  aspect-ratio: 1;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.gallery-thumbs button {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: var(--transition);
  background: var(--gray-light);
  padding: 0;
}

.gallery-thumbs button:hover,
.gallery-thumbs button.active {
  opacity: 1;
  border-color: var(--text);
}

.gallery-thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.product-detail-info h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.product-detail-price .price-current {
  font-size: 28px;
}

.product-detail-price .price-original {
  font-size: 18px;
}

.product-detail-price .price-badge {
  background: var(--red);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

/* Color Selector */
.selector-label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  gap: 6px;
}

.selector-label .selected-value {
  font-weight: 400;
  color: var(--gray-text);
}

.color-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.color-option {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gray-medium);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  padding: 0;
}

.color-option::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.color-option:hover::after,
.color-option.active::after {
  border-color: var(--text);
}

.color-option.active {
  border-color: #fff;
}

/* Size Selector */
.size-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.size-option {
  padding: 10px 6px 8px;
  border: 1px solid var(--gray-medium);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  position: relative;
}

.size-number {
  display: block;
  line-height: 1.2;
}

.size-stock {
  display: block;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2px;
}

.size-stock.stock-critical {
  color: #dc2626;
}

.size-stock.stock-low {
  color: #f59e0b;
}

.size-option:hover {
  border-color: var(--text);
}

.size-option.active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.size-option.active .size-stock.stock-critical,
.size-option.active .size-stock.stock-low {
  color: rgba(255,255,255,0.8);
}

.size-option.size-critical {
  border-color: #fecaca;
  background: #fef2f2;
}

.size-option.size-critical.active {
  background: var(--text);
  border-color: var(--text);
}

.size-option.size-low {
  border-color: #fef3c7;
  background: #fffbeb;
}

.size-option.size-low.active {
  background: var(--text);
  border-color: var(--text);
}

.size-option.unavailable {
  opacity: 0.3;
  cursor: not-allowed;
}

.size-option.unavailable .size-number {
  text-decoration: line-through;
}

/* Stock Info Banner */
.stock-info {
  min-height: 20px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.stock-info:empty {
  display: none;
}

.stock-info svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.stock-info-critical {
  background: #fef2f2;
  color: #dc2626;
  padding: 10px 14px;
  border: 1px solid #fecaca;
  animation: stockPulse 2s ease-in-out infinite;
}

.stock-info-low {
  background: #fffbeb;
  color: #d97706;
  padding: 10px 14px;
  border: 1px solid #fef3c7;
}

.stock-info-medium {
  color: #059669;
  padding: 10px 14px;
  background: #ecfdf5;
  border: 1px solid #d1fae5;
}

.stock-info-ok {
  color: #059669;
  padding: 10px 14px;
  background: #ecfdf5;
  border: 1px solid #d1fae5;
}

@keyframes stockPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Destockage Banner */
.destockage-banner {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.destockage-banner svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.destockage-dot {
  width: 8px;
  height: 8px;
  background: #fbbf24;
  border-radius: 50%;
  animation: destockageBlink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes destockageBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Quantity */
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
  border: 1px solid var(--gray-medium);
  border-radius: var(--radius);
  width: fit-content;
}

.quantity-selector button {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s;
}

.quantity-selector button:hover {
  background: var(--gray-light);
}

.quantity-selector input {
  width: 50px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--gray-medium);
  border-right: 1px solid var(--gray-medium);
  font-weight: 600;
  font-size: 14px;
}

.quantity-selector input:focus {
  outline: none;
}

/* Add to Cart Button */
.btn-add-cart {
  width: 100%;
  padding: 16px 32px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.btn-add-cart:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(230,57,70,0.3);
}

.btn-add-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-add-cart svg {
  width: 20px;
  height: 20px;
}

/* Accordion */
.accordion {
  border-top: 1px solid var(--gray-medium);
  margin-bottom: 24px;
}

.accordion-item {
  border-bottom: 1px solid var(--gray-medium);
}

.accordion-header {
  width: 100%;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.accordion-header svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.open .accordion-header svg {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.open .accordion-body {
  max-height: 500px;
}

.accordion-body-inner {
  padding: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-dark);
}

/* Product Trust Icons */
.product-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.product-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-dark);
}

.product-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--red);
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-section {
  padding: 60px 0;
  background: var(--gray-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  text-align: center;
  padding: 30px 16px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-medium);
}

.trust-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.trust-item h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 12px;
  color: var(--gray-text);
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .trust-item {
    padding: 20px 12px;
  }
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-section {
  padding: 50px 0 80px;
}

.cart-section h1 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 30px;
}

.cart-empty {
  text-align: center;
  padding: 80px 20px;
}

.cart-empty svg {
  width: 80px;
  height: 80px;
  color: var(--gray-medium);
  margin-bottom: 20px;
}

.cart-empty h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cart-empty p {
  color: var(--gray-text);
  margin-bottom: 24px;
}

.cart-empty a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: #fff;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}

.cart-empty a:hover {
  background: var(--red);
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-medium);
}

.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-light);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cart-item-info .cart-item-variant {
  font-size: 13px;
  color: var(--gray-text);
  margin-bottom: 12px;
}

.cart-item-info .cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--gray-medium);
  border-radius: var(--radius);
  width: fit-content;
}

.cart-item-qty button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.cart-item-qty span {
  width: 36px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  border-left: 1px solid var(--gray-medium);
  border-right: 1px solid var(--gray-medium);
  height: 32px;
  line-height: 32px;
}

.cart-item-right {
  text-align: right;
}

.cart-item-price {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cart-item-remove {
  font-size: 12px;
  color: var(--gray-text);
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
}

.cart-item-remove:hover {
  color: var(--red);
}

@media (max-width: 600px) {
  .cart-section {
    padding: 20px 0 40px;
  }
  .cart-section h1 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .cart-item {
    grid-template-columns: 70px 1fr;
    gap: 10px;
    padding: 16px 0;
  }
  .cart-item-image {
    width: 70px;
    height: 70px;
  }
  .cart-item-info h3 {
    font-size: 13px;
  }
  .cart-item-info .cart-item-variant {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .cart-item-qty button {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .cart-item-qty span {
    width: 40px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
  }
  .cart-item-right {
    grid-column: 1 / -1;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cart-item-price {
    font-size: 15px;
  }
  .cart-summary {
    padding: 20px;
    position: static;
    border-radius: var(--radius);
  }
  .btn-checkout {
    padding: 14px;
    font-size: 14px;
  }
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section {
  padding: 40px 0 60px;
  border-top: 1px solid var(--gray-medium);
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 12px;
}

.reviews-header h2 {
  font-size: 22px;
  font-weight: 800;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
}

.reviews-stars svg {
  width: 18px;
  height: 18px;
}

.reviews-avg {
  font-size: 18px;
  font-weight: 800;
}

.reviews-count {
  font-size: 14px;
  color: var(--gray-text);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.review-card {
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-medium);
}

.review-card:last-child {
  border-bottom: none;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-text);
  flex-shrink: 0;
}

.review-name {
  font-size: 14px;
  font-weight: 700;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #059669;
  background: #ecfdf5;
  padding: 3px 8px;
  border-radius: 20px;
}

[data-theme="dark"] .review-badge {
  background: #0d2818;
}

.review-badge svg {
  width: 12px;
  height: 12px;
}

.review-date {
  font-size: 12px;
  color: var(--gray-text);
}

.review-stars {
  display: flex;
  gap: 1px;
  color: #f59e0b;
  margin-bottom: 8px;
}

.review-stars svg {
  width: 14px;
  height: 14px;
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-dark);
}

.review-variant {
  font-size: 12px;
  color: var(--gray-text);
  margin-top: 8px;
}

@media (max-width: 480px) {
  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .review-card {
    padding: 16px 0;
  }
  .review-text {
    font-size: 13px;
  }
}

/* Cart Summary */
.cart-summary {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: sticky;
  top: 90px;
}

.cart-summary h2 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-medium);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
}

.cart-summary-row.total {
  font-size: 18px;
  font-weight: 800;
  border-top: 2px solid var(--text);
  margin-top: 12px;
  padding-top: 16px;
}

.cart-summary-row .free {
  color: #22c55e;
  font-weight: 600;
}

.btn-checkout {
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 20px;
  display: block;
  text-align: center;
}

.btn-checkout:hover {
  background: var(--red-hover);
}

.cart-continue {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-text);
  transition: color 0.2s;
}

.cart-continue:hover {
  color: var(--text);
}

/* ============================================
   EXPRESS CHECKOUT (Apple Pay / Google Pay)
   ============================================ */
.express-checkout {
  margin-top: 20px;
}

.express-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-text);
  text-align: center;
  margin-bottom: 12px;
}

.express-buttons {
  display: flex;
  gap: 10px;
}

.btn-apple-pay,
.btn-google-pay {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: inherit;
}

.btn-apple-pay {
  background: #000;
  color: #fff;
}

.btn-apple-pay:hover {
  background: #222;
}

.btn-google-pay {
  background: var(--white);
  color: #3c4043;
  border: 1.5px solid var(--gray-medium);
}

.btn-google-pay:hover {
  background: var(--gray-light);
  border-color: var(--gray-text);
}

[data-theme="dark"] .btn-google-pay {
  background: #2a2a2a;
  color: #e8e8e8;
  border-color: #444;
}

[data-theme="dark"] .btn-google-pay:hover {
  background: #333;
}

.btn-apple-pay:disabled,
.btn-google-pay:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-apple-pay svg,
.btn-google-pay svg {
  flex-shrink: 0;
}

.express-divider {
  display: flex;
  align-items: center;
  margin: 16px 0 0;
  gap: 12px;
}

.express-divider::before,
.express-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-medium);
}

.express-divider span {
  font-size: 12px;
  color: var(--gray-text);
  font-weight: 500;
  text-transform: uppercase;
}

/* ============================================
   LEGAL / CONTACT PAGES
   ============================================ */
.page-section {
  padding: 50px 0 80px;
}

.page-section h1 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 30px;
}

.page-content {
  max-width: 800px;
}

.page-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text);
}

.page-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-dark);
  margin-bottom: 16px;
}

.page-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.page-content ul li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-dark);
  list-style: disc;
  margin-bottom: 4px;
}

.page-content a {
  color: var(--red);
  text-decoration: underline;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.contact-info-card {
  background: var(--gray-light);
  padding: 30px;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}

.contact-info-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--gray-dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1px solid var(--gray-medium);
  border-radius: var(--radius);
  font-size: 14px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--text);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  padding: 14px 32px;
  background: var(--text);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  width: fit-content;
}

.btn-submit:hover {
  background: var(--red);
}

/* FAQ Section */
.faq-section {
  margin-top: 60px;
}

.faq-section h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand img {
  height: 30px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links a {
  display: block;
  font-size: 13px;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-payments {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--text);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  max-width: 360px;
}

.toast.show {
  transform: translateX(0);
}

.toast svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #22c55e;
}

.toast a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 4px;
}

@media (max-width: 480px) {
  .toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}

/* ============================================
   LOADING / SKELETON
   ============================================ */
.skeleton {
  background: linear-gradient(90deg, var(--gray-light) 25%, var(--gray-medium) 50%, var(--gray-light) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================
   VIEW ALL BUTTON
   ============================================ */
.view-all {
  text-align: center;
  margin-top: 40px;
}

.view-all a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border: 2px solid var(--text);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: var(--transition);
}

.view-all a:hover {
  background: var(--text);
  color: #fff;
}

/* ============================================
   MOBILE BOTTOM NAV
   ============================================ */
.bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  /* Hide promo bar on mobile */
  .promo-bar {
    padding: 6px 0;
    font-size: 10px;
  }

  /* Slim navbar */
  .navbar-inner {
    height: 52px;
  }

  .navbar-logo img {
    height: 28px;
  }

  /* Hide hamburger + top cart icon - bottom nav replaces them */
  .hamburger {
    display: none !important;
  }

  .navbar-cart {
    display: none !important;
  }

  /* Bottom nav */
  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg);
    z-index: 9999;
    border-top: 1px solid var(--gray-medium);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
    padding: 6px 0;
    padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px));
  }

  .bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 0;
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-text);
    transition: color 0.2s;
    text-decoration: none;
    position: relative;
    -webkit-tap-highlight-color: transparent;
  }

  .bottom-nav a.active {
    color: var(--red);
  }

  .bottom-nav a svg {
    width: 22px;
    height: 22px;
  }

  .bottom-nav .bnav-badge {
    position: absolute;
    top: 2px;
    right: calc(50% - 18px);
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .bottom-nav .bnav-badge.hidden {
    display: none;
  }

  /* Add space at bottom so content isn't hidden behind nav */
  body {
    padding-bottom: 72px;
  }

  /* Footer extra padding */
  .footer {
    padding-bottom: 80px;
  }

  /* Toast above bottom nav */
  .toast {
    bottom: 80px !important;
  }

  /* Product detail bottom padding for "ajouter au panier" */
  .product-detail {
    padding-bottom: 20px;
  }

  /* Collection bottom padding */
  .collection-section {
    padding-bottom: 20px;
  }
}

/* ============================================
   MOBILE FIXES
   ============================================ */
@media (max-width: 480px) {
  /* Product detail: tailles 4 colonnes au lieu de 5 */
  .size-options {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }
  .size-option {
    padding: 8px 4px 6px;
    font-size: 12px;
  }
  /* Product title smaller */
  .product-detail-info h1 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  /* Price */
  .product-detail-price {
    margin-bottom: 16px;
  }
  .product-detail-price .price-current {
    font-size: 24px;
  }
  /* Color options bigger touch target */
  .color-option {
    width: 40px;
    height: 40px;
  }
  /* Accordion text */
  .accordion-body-inner {
    font-size: 13px;
  }
  .accordion-body-inner p {
    margin-bottom: 6px;
  }
  /* Trust items */
  .product-trust {
    gap: 8px;
  }
  .product-trust-item {
    font-size: 11px;
    padding: 8px 10px;
  }
  /* Quantity selector bigger touch */
  .quantity-selector button {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .quantity-selector input {
    width: 56px;
    height: 48px;
    font-size: 16px;
  }
  /* Add to cart bigger */
  .btn-add-cart {
    padding: 18px 24px;
    font-size: 14px;
  }
  /* Gallery thumbs */
  .gallery-thumbs button {
    width: 60px;
    height: 60px;
  }
  /* Breadcrumb */
  .breadcrumb {
    font-size: 12px;
  }
  /* Promo bar */
  .promo-bar {
    font-size: 11px;
    padding: 8px 0;
  }
  /* Navbar */
  .navbar-inner {
    height: 56px;
    padding: 0 12px;
  }
  .navbar-logo img {
    height: 28px;
  }
}

/* Legal pages mobile */
@media (max-width: 600px) {
  .legal-page {
    padding: 20px 16px 60px !important;
  }
  .legal-page h1 {
    font-size: 22px !important;
  }
  .legal-page h2 {
    font-size: 17px !important;
  }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-medium);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-text);
}

/* ============================================
   NOTRE HISTOIRE PAGE
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.stat-card {
  text-align: center;
  padding: 30px 16px;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-medium);
}

.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-dark);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat-number {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .stat-card {
    padding: 20px 12px;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-medium);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--red);
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-dark);
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .value-card {
    padding: 30px 20px;
  }
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-category {
  margin-bottom: 40px;
}

.faq-category h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.faq-cta {
  text-align: center;
  padding: 50px 20px;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  margin-top: 40px;
}

.faq-cta h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.faq-cta p {
  font-size: 15px;
  color: var(--gray-dark);
  margin-bottom: 20px;
}

.faq-cta .btn-submit {
  display: inline-block;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-section {
  padding: 40px 0 80px;
}

.checkout-section h1 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 30px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .checkout-summary-section {
    order: -1;
  }
}

.checkout-form-section h2,
.checkout-summary-section h2 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-medium);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

#checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#checkout-form input {
  padding: 14px 16px;
  border: 1px solid var(--gray-medium);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  background: var(--input-bg);
  color: var(--text);
  transition: border-color 0.2s;
}

#checkout-form input:focus {
  outline: none;
  border-color: var(--text);
}

.btn-pay {
  width: 100%;
  padding: 18px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  margin-top: 8px;
}

.btn-pay:hover {
  background: var(--red-hover);
}

.btn-pay:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.checkout-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-text);
  margin-top: 8px;
}

.checkout-secure svg {
  color: #22c55e;
}

.checkout-summary-section {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 90px;
}

.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.checkout-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout-item-img {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray-medium);
  flex-shrink: 0;
}

.checkout-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-item-qty {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gray-dark);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-item-info {
  flex: 1;
  min-width: 0;
}

.checkout-item-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-item-variant {
  display: block;
  font-size: 12px;
  color: var(--gray-text);
}

.checkout-item-price {
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.checkout-totals {
  border-top: 1px solid var(--gray-medium);
  padding-top: 16px;
}

.checkout-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.checkout-row.total {
  font-size: 18px;
  font-weight: 800;
  border-top: 2px solid var(--text);
  margin-top: 8px;
  padding-top: 12px;
}

.checkout-row .free {
  color: #22c55e;
  font-weight: 600;
}

/* ============================================
   CONFIRMATION PAGE
   ============================================ */
.confirmation-section {
  padding: 80px 0 120px;
}

.confirmation-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.confirmation-icon {
  color: #22c55e;
  margin-bottom: 24px;
}

.confirmation-icon svg {
  width: 80px;
  height: 80px;
}

.confirmation-box h1 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 12px;
}

.confirmation-order {
  font-size: 16px;
  color: var(--gray-dark);
  margin-bottom: 20px;
}

.confirmation-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-text);
  margin-bottom: 32px;
}

.confirmation-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.confirmation-actions .btn-primary {
  padding: 14px 32px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.confirmation-actions .btn-primary:hover {
  background: var(--red-hover);
}

.confirmation-actions .btn-secondary {
  padding: 14px 32px;
  background: transparent;
  color: var(--text);
  border: 2px solid var(--gray-medium);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.confirmation-actions .btn-secondary:hover {
  border-color: var(--text);
}
