/* ============================================
   BRAHG — Global Stylesheet
   Design: Ultra-minimal, blanc + cyan subtil
   ============================================ */

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

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

:root {
  --white: #ffffff;
  --off-white: #f9f9f8;
  --light-gray: #f2f2f0;
  --border: #e8e8e5;
  --text: #111111;
  --text-secondary: #888888;
  --text-light: #aaaaaa;
  --cyan: #00C8D7;
  --cyan-light: #e0f8fb;
  --cyan-dark: #008fa0;
  --black: #0a0a0a;
  --font-main: 'Outfit', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

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

body {
  font-family: var(--font-main);
  background-color: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

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

.logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity var(--transition);
}

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

.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 1rem;
}

.main-nav ul {
  display: flex;
  gap: 3.5rem;
}

/* Centre la nav au milieu absolu du header, indépendamment des largeurs logo/icônes */
.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.main-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 2px;
}

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

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.btn-icon:hover {
  background: var(--light-gray);
  color: var(--cyan);
}

.btn-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--cyan);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}

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

/* ---- POPUP NEWSLETTER ---- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 1rem;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: white;
  max-width: 560px;
  width: 100%;
  display: flex;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(30px) scale(0.97);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.show .popup-box {
  transform: translateY(0) scale(1);
}

.popup-image {
  width: 220px;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}

.popup-content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.popup-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
}

.popup-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
}

.popup-title strong {
  display: block;
  font-weight: 400;
  color: var(--cyan);
}

.popup-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.popup-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  outline: none;
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--off-white);
}

.popup-form input:focus {
  border-color: var(--cyan);
  background: white;
}

.btn-cyan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--cyan);
  color: white;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.btn-cyan:hover {
  background: var(--cyan-dark);
}

.popup-skip {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-light);
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.popup-skip:hover {
  color: var(--text-secondary);
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color var(--transition);
}

/* ---- HERO ---- */
.hero {
  margin-top: 90px;
  height: calc(100vh - 70px);
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.hero:hover .hero-media img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.15) 50%,
    rgba(0,0,0,0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 4rem;
  max-width: 700px;
  color: white;
}

.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--cyan);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 400px;
  line-height: 1.7;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(255,255,255,0.7);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background: white;
  color: var(--text);
  border-color: white;
}

.btn-outline-white svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  transition: transform var(--transition);
}

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

/* ---- SECTIONS COMMUNES ---- */
.section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
  font-weight: 300;
  max-width: 500px;
  line-height: 1.7;
}

/* ---- GRILLE PRODUITS ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-image img.primary-img {
  position: relative;
  z-index: 1;
}

.product-card-image img.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

.product-card-image:has(.hover-img):hover img.primary-img {
  opacity: 0;
}

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

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.75rem;
  background: var(--text);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 5;
}

.product-badge.new {
  background: var(--cyan);
}

.product-card-actions {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  padding: 0.75rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
  transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-actions {
  bottom: 0;
}

.btn-add-cart {
  flex: 1;
  padding: 0.75rem;
  background: white;
  color: var(--text);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.btn-add-cart:hover {
  background: var(--text);
  color: white;
  border-color: var(--text);
}

.btn-add-cart.added {
  background: var(--cyan);
  color: white;
  border-color: var(--cyan);
}

.product-card-info {
  padding: 1.25rem 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.product-name {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.product-color {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-top: 0.2rem;
}

.product-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

/* ---- BANNIÈRE COLLECTION ---- */
.collection-banner {
  background: var(--cyan-light);
  padding: 0;
  overflow: hidden;
}

.collection-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.collection-banner-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.collection-banner-tag {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.collection-banner-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--cyan-dark);
}

.collection-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
}

.collection-banner-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
  max-width: 400px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  background: var(--text);
  color: white;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: var(--transition);
}

.btn-dark:hover {
  background: var(--cyan);
}

.btn-dark svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}

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

.collection-banner-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.collection-banner-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- SHOOTING SECTION ---- */
.shooting-section {
  padding: 6rem 0;
  overflow: hidden;
  background: var(--off-white);
}

.shooting-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.shooting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.shooting-item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shooting-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

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

.shooting-item:first-child {
}

.shooting-item:not(:first-child) {
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--black);
  color: #ccc;
  padding: 5rem 2rem 2rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #222;
}

.footer-logo {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--cyan);
}

.footer-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: #888;
  max-width: 280px;
  font-weight: 300;
}

.footer-col-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  font-size: 0.82rem;
  color: #888;
  font-weight: 300;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--cyan);
}

.footer-newsletter-text {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.footer-newsletter-form {
  display: flex;
  border: 1px solid #333;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-main);
  font-size: 0.82rem;
  color: white;
}

.footer-newsletter-form input::placeholder {
  color: #555;
}

.footer-newsletter-form button {
  padding: 0.8rem 1.25rem;
  background: var(--cyan);
  color: white;
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.footer-newsletter-form button:hover {
  background: var(--cyan-dark);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.75rem;
  color: #555;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: var(--transition);
  font-size: 0.75rem;
}

.footer-social a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* Footer legal links bar */
.footer-legal-links {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  color: #444;
}

.footer-legal-links a {
  color: #555;
  transition: color var(--transition);
}

.footer-legal-links a:hover {
  color: var(--cyan);
}

.footer-legal-links span {
  color: #333;
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 0 2rem;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.cookie-banner.visible {
  transform: translateY(0);
  pointer-events: all;
}

.cookie-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
  padding: 1.1rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.82rem;
  color: #bbb;
  line-height: 1.55;
  font-weight: 300;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-btn-refuse {
  padding: 0.6rem 1.25rem;
  background: transparent;
  border: 1px solid #444;
  color: #888;
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn-refuse:hover {
  border-color: #666;
  color: #aaa;
}

.cookie-btn-accept {
  padding: 0.6rem 1.5rem;
  background: var(--cyan);
  border: 1px solid var(--cyan);
  color: white;
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn-accept:hover {
  background: var(--cyan-dark);
  border-color: var(--cyan-dark);
}

@media (max-width: 700px) {
  .cookie-banner-inner {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }
  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* Responsive footer 4 cols */
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ---- CART PAGE ---- */
.page-hero {
  margin-top: 90px;
  padding: 4rem 2rem 2rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--text);
}

.cart-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

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

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.cart-item-color {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text);
  transition: var(--transition);
}

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

.qty-val {
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 600;
  text-align: right;
}

.btn-remove {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: var(--text-light);
  cursor: pointer;
  letter-spacing: 0.05em;
  text-decoration: underline;
  background: none;
  border: none;
  font-family: var(--font-main);
  transition: color var(--transition);
}

.btn-remove:hover {
  color: #cc0000;
}

.cart-summary {
  background: var(--off-white);
  padding: 2rem;
  position: sticky;
  top: 90px;
}

.cart-summary-title {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
}

.cart-summary-row.total {
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}

.cart-summary-row.discount {
  color: var(--cyan);
}

.btn-checkout {
  width: 100%;
  padding: 1rem;
  background: var(--text);
  color: white;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: var(--transition);
}

.btn-checkout:hover {
  background: var(--cyan);
}

.cart-empty {
  text-align: center;
  padding: 6rem 2rem;
}

.cart-empty svg {
  width: 60px;
  height: 60px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 1;
  margin: 0 auto 1.5rem;
}

.cart-empty-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.cart-empty-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ---- FABRICATION PAGE ---- */
.fab-hero {
  margin-top: 90px;
  padding: 6rem 2rem;
  background: var(--off-white);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.fab-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fab-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.fab-story-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fab-story-text p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 300;
}

.fab-story-text p strong {
  color: var(--text);
  font-weight: 500;
}

.fab-story-img {
  overflow: hidden;
}

.fab-story-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fab-story-img:hover img {
  transform: scale(1.03);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.video-card {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--light-gray);
  overflow: hidden;
  cursor: pointer;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.video-card:hover .video-overlay {
  background: rgba(0,0,0,0.45);
}

.play-btn {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}

.video-card:hover .play-btn {
  transform: scale(1.1);
  background: var(--cyan);
}

.play-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--text);
  margin-left: 3px;
  transition: fill var(--transition);
}

.video-card:hover .play-btn svg {
  fill: white;
}

.tiktok-cta {
  margin-top: 4rem;
  padding: 3rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.tiktok-text h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.tiktok-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.btn-tiktok {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  background: var(--text);
  color: white;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-tiktok:hover {
  background: var(--cyan);
}

/* ---- COLLECTION PAGE ---- */
.collection-page-header {
  background: var(--off-white);
  padding: 5rem 2rem 3rem;
  margin-top: 90px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.collection-page-section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* ---- DIVIDER ---- */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- TOAST ---- */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--text);
  color: white;
  padding: 1rem 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 340px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .collection-banner-inner {
    grid-template-columns: 1fr;
  }
  .collection-banner-images {
    height: 300px;
  }
  .fab-story {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .hero-content {
    padding: 0 1.5rem 3rem;
  }
  .shooting-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .shooting-item:first-child {
  }
  .shooting-item:not(:first-child) {
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-item {
    grid-template-columns: 80px 1fr auto;
  }
  .popup-image {
    display: none;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  .tiktok-cta {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 4rem 1.25rem;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .collection-banner-content {
    padding: 3rem 1.5rem;
  }
}

/* ---- PAGE PANIER — Titre "Panier" en police serif ---- */
.cart-page-title {
  font-family: var(--font-serif) !important;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* ---- PLACEHOLDER "Pas d'image" ---- */
.no-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  color: var(--text-light);
  gap: 0.6rem;
}
.no-image-placeholder svg {
  opacity: 0.35;
}
.no-image-placeholder span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ---- COLLECTION : séparateur de sections ---- */
.collection-section-label {
  margin-bottom: 0.5rem;
}

.collection-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ---- ILLUSTRATIONS SECTION ---- */
.illustrations-section {
  padding: 6rem 0;
  background: var(--white);
}

.illustrations-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.illustrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.illustrations-item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.illustrations-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

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

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

/* ---- PRODUCT CARD OVERLAY (hover → "Choisir la taille") ---- */
.product-card-overlay {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  padding: 0.9rem;
  background: rgba(255,255,255,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid var(--border);
}

.product-card-overlay span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.product-card:hover .product-card-overlay {
  bottom: 0;
}

/* ---- PAGE PRODUIT ---- */
.product-breadcrumb {
  margin-top: 90px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 2rem;
}

.product-breadcrumb-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.product-breadcrumb-inner a {
  color: var(--text-secondary);
  transition: color var(--transition);
}

.product-breadcrumb-inner a:hover {
  color: var(--cyan);
}

.product-breadcrumb-sep {
  color: var(--text-light);
}

.product-page {
  padding: 4rem 2rem 6rem;
}

.product-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* ---- Galerie ---- */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 110px;
}

.product-gallery-main {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
  aspect-ratio: 3/4;
}

.product-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 75px;
  flex-shrink: 0;
  border: 2px solid var(--border);
  background: var(--off-white);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: border-color var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-thumb span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  transition: color var(--transition);
}

.gallery-thumb:hover img {
  transform: scale(1.04);
}

.gallery-thumb.active {
  border-color: var(--text);
}

.gallery-thumb.active span {
  color: var(--text);
}

/* Zoom arrière premium pour le format Petit (effet cinémascope) */
.product-gallery-main {
  transition: background-color 0.3s ease;
}
.product-gallery-main:has(.is-small-format) {
  background: #ffffff !important;
}
.product-main-img.is-small-format {
  height: 80% !important;
  margin: 10% 0 !important;
  border-radius: 4px;
}

.product-gallery-inner {
  display: flex;
  gap: 1.5rem;
  align-items: start;
  width: 100%;
}
.product-gallery-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 75px;
  flex-shrink: 0;
}
.gallery-thumb-sidebar {
  width: 100%;
  border: 2px solid var(--border);
  background: var(--off-white);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color var(--transition);
}
.gallery-thumb-sidebar img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-thumb-sidebar:hover img {
  transform: scale(1.04);
}
.gallery-thumb-sidebar.active {
  border-color: var(--text);
}
@media (max-width: 576px) {
  .product-gallery-inner {
    flex-direction: column-reverse;
    gap: 1rem;
  }
  .product-gallery-sidebar {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
  }
  .gallery-thumb-sidebar {
    width: 60px;
  }
}

/* ---- Infos produit ---- */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-info-top {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-info-tag {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
}

.product-info-name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
}

.product-info-color {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* ---- Prix ---- */
.product-price-block {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.product-price-current {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--text);
  transition: all 0.3s ease;
}

.product-price-note {
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- Sélecteur de taille ---- */
.product-size-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-size-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.product-size-selected {
  color: var(--cyan);
  font-weight: 600;
}

.product-size-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.size-btn {
  border: 2px solid var(--border);
  background: var(--white);
  padding: 1.2rem 1rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.size-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.size-btn.active::before,
.size-btn:hover::before {
  transform: scaleX(1);
}

.size-btn-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.size-btn-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.25s ease;
  letter-spacing: 0.05em;
}

.size-btn-desc {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 300;
  transition: color 0.25s ease;
}

.size-btn-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 0.5rem;
  transition: color 0.25s ease;
}

.size-btn.active .size-btn-name,
.size-btn.active .size-btn-desc,
.size-btn.active .size-btn-price,
.size-btn:hover .size-btn-name,
.size-btn:hover .size-btn-desc,
.size-btn:hover .size-btn-price {
  color: white;
}

/* ---- Stock ---- */
.product-stock {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.product-stock.ok   { color: #38a169; }
.product-stock.low  { color: #dd6b20; }
.product-stock.out  { color: #e53e3e; font-weight: 600; }

/* ---- Bouton panier ---- */
.btn-add-to-cart {
  width: 100%;
  padding: 1.15rem;
  background: var(--text);
  color: white;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-add-to-cart:hover:not(:disabled) {
  background: var(--cyan);
}

.btn-add-to-cart:disabled {
  background: #4a5568;
  cursor: not-allowed;
}

/* ---- Caractéristiques ---- */
.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.product-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.product-feature svg {
  width: 16px;
  height: 16px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---- Section produits liés ---- */
.product-related {
  background: var(--off-white);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}

.product-related-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.product-related-header {
  text-align: center;
  margin-bottom: 0.5rem;
}

/* ---- Responsive page produit ---- */
@media (max-width: 900px) {
  .product-page-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-gallery {
    position: static;
  }
}

@media (max-width: 480px) {
  .product-page {
    padding: 2rem 1.25rem 4rem;
  }

  .product-size-options {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   GALERIE PHOTOS
   ============================================================ */

.galerie-section {
  padding: 6rem 0 4rem;
  background: var(--off-white);
  overflow: hidden;
}

.galerie-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 10px;
  margin-top: 3rem;
}

.galerie-item {
  overflow: hidden;
  position: relative;
  background: #e8e8e8;
}

.galerie-item.galerie-wide {
  grid-column: span 2;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

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

/* Lightbox */
.galerie-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.93);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.galerie-lightbox.open {
  display: flex;
}

.galerie-lightbox img {
  max-width: min(90vw, 900px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: lb-in 0.25s ease;
}

@keyframes lb-in {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
  z-index: 10000;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10000;
}

.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.18); }

@media (max-width: 900px) {
  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .galerie-item.galerie-wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .galerie-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .galerie-item.galerie-wide {
    grid-column: span 1;
  }
}


