/* ===== VALORIA CHIC - E-Commerce ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600&display=swap');

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

:root {
  --beige: #F9F7F4;
  --beige-dark: #F2EDE7;
  --brown: #1A1A1A;
  --brown-dark: #000000;
  --black: #1A1A1A;
  --gold: #C9A96E;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-light: #888888;
  --border: #E5E0DA;
  --success: #4CAF50;
  --accent: #8B7355;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, sans-serif;
  --max-width: 1340px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: 100px;
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  body {
    padding-top: 81px;
  }
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; font-family: var(--font-body); }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* === HEADER / NAV === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, border-bottom-color 0.3s ease, transform 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
  border-bottom-color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Mobile: hamburger left, logo center, cart right */
@media (max-width: 768px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .nav__hamburger-wrap {
    justify-self: start;
  }
  .nav__logo {
    justify-self: center;
  }
  .nav__icons {
    justify-self: end;
  }
}

.nav__logo img {
  height: 40px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
}

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

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

.nav__icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav__icons button {
  background: none;
  font-size: 1.2rem;
  color: var(--text);
  position: relative;
  transition: var(--transition);
}

.nav__icons button:hover { color: var(--brown); }

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

.cart-count.hidden { display: none; }

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

.fav-count.hidden { display: none; }

/* Mobile menu */
.nav__hamburger-wrap {
  display: none;
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}

/* === ANNOUNCEMENT BAR (rotating slider) === */
.announcement {
  background: var(--black) !important;
  color: white !important;
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  font-weight: 300;
  height: 36px !important;
  max-height: 36px !important;
  padding: 0 16px;
  will-change: transform;
  overflow: hidden !important;
  position: relative;
}
.announcement__slider {
  transition: transform 0.5s ease;
}
.announcement__slide {
  height: 36px;
  line-height: 36px;
  display: block;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.announcement p {
  margin: 0;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .announcement {
    font-size: 0.55rem;
    letter-spacing: 1.5px;
    height: 32px !important;
    max-height: 32px !important;
    padding: 0 12px;
  }
  .announcement__slide {
    height: 32px;
    line-height: 32px;
    height: 32px;
    text-align: center;
    justify-content: center;
  }
}

/* === HERO VIDEO === */
.hero--video {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Show desktop video by default, mobile video hidden */
.hero__video--mobile { display: none; }
@media (max-width: 768px) {
  .hero__video--desktop { display: none; }
  .hero__video--mobile { display: block; }
}

.hero__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  z-index: 1;
}

.hero__video-content {
  position: absolute;
  bottom: 15%;
  left: 60px;
  z-index: 2;
  max-width: 500px;
}

.hero__video-content .hero__eyebrow {
  color: rgba(255,255,255,0.55);
  font-size: 0.6rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 300;
}

.hero__video-content .hero__title {
  color: #fff;
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
  letter-spacing: 2px;
}

.hero__video-content .hero__desc {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  margin-bottom: 12px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero__video-content .hero__secondary {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  margin-bottom: 32px;
  font-weight: 300;
  letter-spacing: 0.3px;
  font-style: italic;
}

.btn--hero {
  display: inline-block;
  padding: 18px 48px;
  font-size: 0.68rem;
  letter-spacing: 3px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 400;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.btn--hero:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
}
}

.hero__video-content .btn--primary {
  background: #fff;
  color: var(--text);
  border: none;
}

.hero__video-content .btn--primary:hover {
  background: var(--beige);
}

@media (max-width: 768px) {
  .hero--video {
    height: 70vh;
  }
  .hero__video-content {
    bottom: 10%;
    left: 24px;
    right: 24px;
    max-width: none;
    text-align: center;
  }
  .hero__video-content .hero__title {
    font-size: 2.4rem;
  }
  .hero__video-content .hero__desc {
    font-size: 0.82rem;
  }
  .hero__video-content .hero__secondary {
    font-size: 0.68rem;
    margin-bottom: 28px;
  }
  .btn--hero {
    padding: 16px 36px;
    font-size: 0.62rem;
    letter-spacing: 2.5px;
  }
  .hero__video-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  }
}

.hero__img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero__content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero__text { z-index: 2; }

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 16px;
}

.hero__desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 440px;
  line-height: 1.7;
  font-weight: 300;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn--white {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
  padding: 14px 40px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn--white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-1px);
}

/* Legacy hero (non-lifestyle) */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--beige);
  overflow: hidden;
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image img {
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
}

.btn--primary {
  background: var(--black);
  color: white;
  border: 2px solid var(--black);
}

.btn--primary:hover {
  background: #333;
  border-color: #333;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

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

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

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

.btn--small {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--beige);
  border-top: none;
  border-bottom: none;
  padding: 32px 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.trust-item__icon {
  font-size: 1.5rem;
  color: var(--brown);
}

.trust-item__text h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-item__text p {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* === SECTION TITLES === */
.section {
  padding: 80px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--black);
  margin-bottom: 12px;
}

.section__subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 300;
}

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

.product-card {
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.product-card:hover {
  transform: none;
  box-shadow: none;
}

.product-card__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--beige);
  border-radius: 4px;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
}

/* Favorite button */
.product-card__fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
  border: none;
  opacity: 1;
  transform: scale(1);
}

.product-card__fav:hover {
  color: #e74c3c;
  transform: scale(1.15);
}

.product-card__fav.active {
  color: #e74c3c;
  opacity: 1;
  transform: scale(1);
}

.product-card__fav.active i::before {
  content: "\f004";
  font-weight: 900;
}

.product-card__quick {
  display: none;
}

.product-card__info {
  padding: 16px;
  text-align: center;
}

.product-card__name {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  margin-bottom: 2px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.product-card__stars {
  color: var(--gold);
  font-size: 0.7rem;
  margin-bottom: 6px;
}

.product-card__colors {
  display: flex;
  gap: 5px;
  margin: 4px 0;
}

.product-card__color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.2s;
}

.product-card__color-dot:hover {
  transform: scale(1.2);
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}
.product-card__stars {
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: -1px;
}
.product-card__stars .star.empty {
  color: var(--border);
}
.product-card__reviews-count {
  font-size: 0.6rem;
  color: var(--text-light);
  font-weight: 300;
}
.product-card__price {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.5px;
}

.product-card__price .old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-weight: 400;
  font-size: 0.85rem;
  margin-right: 6px;
}

/* === ABOUT / WHY US SECTION === */
.why-us {
  background: var(--white);
}

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

.why-us__image img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.why-us__list { display: flex; flex-direction: column; gap: 24px; }

.why-us__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-us__item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--brown);
}

.why-us__item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-us__item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* === REVIEWS === */
.reviews { background: var(--white); }

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

.review-card {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.review-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.review-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}

.review-card__photo {
  margin: 8px 0;
  display: flex;
  gap: 6px;
}
.review-card__photo img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s;
  border: 1px solid #eee;
}
.review-card__photo img:hover {
  transform: scale(1.05);
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--beige-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--brown);
  font-size: 0.9rem;
}

.review-card__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.review-card__date {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* === NEWSLETTER === */
.newsletter {
  background: var(--black);
  color: white;
  text-align: center;
  padding: 64px 24px;
}

.newsletter__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.newsletter__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

.newsletter__form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter__form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.newsletter__form button {
  padding: 14px 28px;
  background: var(--brown);
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0 4px 4px 0;
  transition: var(--transition);
}

.newsletter__form button:hover { background: var(--brown-dark); }

/* === FOOTER === */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 48px;
}

.footer__brand img {
  height: 36px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 300px;
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: white;
}

.footer ul li { margin-bottom: 10px; }

.footer ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer ul li a:hover { color: white; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* === SHOP PAGE === */
.shop-header {
  text-align: left;
  padding: 40px 0 0;
  background: transparent;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}

.shop-header__subtitle {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.3px;
  margin-top: 8px;
  max-width: 500px;
}

.shop-header__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0;
  font-weight: 400;
  font-style: italic;
}

.shop-header__desc {
  display: none;
}

.shop-header__breadcrumb {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shop-header__breadcrumb a:hover { color: var(--black); }

.shop-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.shop-filters__count {
  font-size: 0.9rem;
  color: var(--text-light);
}

.shop-filters__sort select {
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  border-radius: 4px;
  outline: none;
}

/* === PRODUCT PAGE === */
.product-page {
  padding: 0 0 60px;
}

@media (min-width: 769px) {
  .product-page { padding: 0 0 80px; }
}

.product-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Polène-style split layout (desktop) */
.product-page { padding: 0; margin: 0; }

.product-page__polene {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0;
  max-width: 100%;
  margin: 0;
}

.product-page__lifestyle-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-page__lifestyle-img {
  width: 100%;
  overflow: hidden;
  cursor: zoom-in;
}

.product-page__lifestyle-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.product-page__info-col {
  position: relative;
}

.product-page__info-sticky {
  position: sticky;
  top: 80px;
  padding: 30px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-page__main-image-small {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--beige);
  margin-bottom: 12px;
  cursor: zoom-in;
  max-height: 480px;
  width: 100%;
}

.product-page__main-image-small img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-page__gallery {
  position: sticky;
  top: 100px;
}

.product-page__main-image {
  aspect-ratio: 1;
  border-radius: 0;
  overflow: hidden;
  background: var(--beige);
  border: none;
  margin-bottom: 12px;
}

.product-page__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.product-page__thumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.product-page__thumb {
  width: 56px;
  height: 56px;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.product-page__thumb.active {
  border-color: var(--black);
  opacity: 1;
}

.product-page__thumb:hover {
  opacity: 1;
}

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

/* Mobile carousel (hidden on desktop) */
.product-page__mobile-carousel { display: none; }
.product-page__dots { display: none; }

.product-page__carousel-wrap {
  position: relative;
}
/* Hide carousel heart on desktop (main-image-small has its own) */
.product-page__carousel-wrap > .product-page__fav-photo {
  display: none;
}
@media (max-width: 768px) {
  .product-page__carousel-wrap > .product-page__fav-photo {
    display: flex;
  }
}
.product-page__fav-photo {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-light);
  transition: all 0.2s;
}
.product-page__fav-photo:hover {
  color: #e74c3c;
  transform: scale(1.15);
}
.product-page__fav-photo.active,
.product-page__fav-photo.active i {
  color: #e74c3c;
}
.product-page__variants {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.product-page__variant {
  width: 70px;
  height: 70px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.6;
  overflow: hidden;
  flex-shrink: 0;
  padding: 0;
}

.product-page__variant img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-page__variant.active {
  border-color: var(--black);
  opacity: 1;
}

.product-page__variant:hover {
  opacity: 1;
}

.variant-swatch {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.variant-label {
  font-size: 0.65rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
  white-space: nowrap;
}

.product-page__info { padding-top: 16px; width: 100%; }

/* Reviews */
.reviews-summary {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.reviews-summary__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.reviews-summary__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
}

.reviews-summary__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.reviews-summary__count {
  font-size: 0.65rem;
  color: var(--text-light);
  margin-top: 4px;
  white-space: nowrap;
}

.reviews-summary__bars {
  flex: 1;
}

.reviews-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.reviews-bar__track {
  flex: 1;
  height: 6px;
  background: var(--beige-dark);
  border-radius: 3px;
  overflow: hidden;
}

.reviews-bar__fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
}

.review {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.review:last-child {
  border-bottom: none;
}

.review__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.review__author {
  font-weight: 500;
  font-size: 0.8rem;
}

.review__badge {
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.review__stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.review__text {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 6px;
}

.review__date {
  font-size: 0.65rem;
  color: var(--text-light);
}

/* Product Tabs (Polène style) */
.product-tabs {
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding: 0;
}

@media (max-width: 768px) {
  .product-tabs { padding: 0; margin: 24px -24px 0; }
  .product-tabs__nav { overflow-x: visible; }
  .product-tabs__btn { flex: 1; margin-right: 0; text-align: center; padding: 12px 4px; font-size: 0.55rem; }
  .product-tabs__content { padding: 16px 24px; }
}

.product-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.product-tabs__nav::-webkit-scrollbar { display: none; }

.product-tabs__btn {
  background: none;
  border: none;
  padding: 12px 0;
  margin-right: 20px;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.8px;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.product-tabs__btn.active {
  color: var(--text);
  border-bottom-color: var(--black);
}

.product-tabs__btn:hover {
  color: var(--text);
}

.product-tabs__content {
  display: none;
  padding: 16px 0;
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text);
}

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

.product-tabs__content ul {
  list-style: none;
  padding: 0;
}

.product-tabs__content li {
  padding: 4px 0;
}

.product-tabs__content li::before {
  content: "—";
  margin-right: 8px;
  color: var(--text-light);
}

.product-page__breadcrumb {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-page__breadcrumb a:hover { color: var(--brown); }

.product-page__name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-page__stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.product-page__stars span {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-left: 8px;
}

.product-page__price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 24px;
}

.product-page__desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.product-page__quantity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.product-page__quantity label {
  font-weight: 500;
  font-size: 0.9rem;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.qty-selector button {
  padding: 10px 16px;
  background: var(--beige);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}

.qty-selector button:hover { background: var(--beige-dark); }

.qty-selector input {
  width: 50px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 10px 0;
  outline: none;
}

.product-page__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  align-items: stretch;
}

.product-page__actions .btn--full {
  flex: 1;
  font-size: 0.75rem;
  letter-spacing: 2px;
  padding: 16px 24px;
}

.product-page__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.product-page__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.product-page__feature i { color: var(--brown); font-size: 1rem; }

/* === PRODUCT PAGE ACCORDIONS === */
.product-accordions {
  margin-top: 32px;
  border-top: 1px solid var(--border);
}

.accordion {
  border-bottom: 1px solid var(--border);
}

.accordion__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  background: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.accordion__header:hover { color: var(--brown); }

.accordion__header i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  color: var(--text-light);
}

.accordion.active .accordion__header i {
  transform: rotate(180deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion.active .accordion__content {
  max-height: 300px;
  padding-bottom: 18px;
}

.accordion__content p,
.accordion__content ul {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

.accordion__content ul {
  padding-left: 16px;
  list-style: disc;
}

.accordion__content ul li {
  margin-bottom: 6px;
}

/* === PRODUCT PAGE FAVORITE BUTTON === */
.product-page__fav {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.product-page__fav:hover {
  color: #e74c3c;
  border-color: #e74c3c;
}

.product-page__fav.active {
  color: #e74c3c;
  border-color: #e74c3c;
  background: #fff5f5;
}

/* === CART SIDEBAR === */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar, .cart-sidebar * { box-sizing: border-box; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100%;
  background: white;
  z-index: 2001;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
}

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

.cart-sidebar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.cart-sidebar__header h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cart-sidebar__close {
  background: none;
  font-size: 1.4rem;
  color: var(--text);
}

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

.cart-sidebar__empty {
  text-align: center;
  padding: 60px 0;
  color: var(--text-light);
}

.cart-sidebar__empty i {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item__image {
  width: 90px;
  height: 90px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--beige);
  cursor: pointer;
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item__name {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 2px;
}

.cart-item__price {
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 8px;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
}

.cart-item__qty button {
  padding: 6px 12px;
  background: none;
  font-size: 0.75rem;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s;
}

.cart-item__qty button:hover {
  background: var(--beige);
}

.cart-item__qty span {
  padding: 6px 14px;
  font-size: 0.75rem;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.cart-item__remove {
  background: none;
  color: var(--text-light);
  font-size: 0.7rem;
  transition: var(--transition);
  text-decoration: underline;
  cursor: pointer;
}

.cart-item__remove:hover { color: var(--text); }

/* Promo code */
.cart-promo {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.cart-promo input {
  flex: 1;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid var(--border);
  font-size: 0.65rem;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cart-promo input:focus {
  outline: none;
  border-color: var(--black);
}

.cart-promo button {
  padding: 8px 12px;
  background: var(--black);
  color: var(--white);
  font-size: 0.6rem;
  letter-spacing: 0.5px;
  font-family: var(--font-body);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Shipping info */
.cart-shipping {
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}

.cart-shipping__method {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  margin-bottom: 2px;
}

.cart-shipping__method span:last-child {
  color: var(--accent);
  font-weight: 500;
}

.cart-shipping__delay {
  font-size: 0.65rem;
  color: var(--text-light);
  margin-top: 6px;
}

.cart-shipping__delay i {
  margin-right: 4px;
}

/* Cart progress bar (livraison gratuite) */
.cart-progress {
  margin-bottom: 10px;
}

.cart-progress__text {
  font-size: 0.65rem;
  color: var(--text-light);
  margin-bottom: 4px;
  text-align: center;
}

.cart-progress__text strong {
  color: var(--accent);
}

.cart-progress__bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.cart-progress__fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Delivery options */
.cart-delivery {
  margin-bottom: 8px;
}

.cart-delivery__options {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.cart-delivery__option {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.65rem;
}

.cart-delivery__option input {
  display: none;
}

.cart-delivery__option i {
  font-size: 0.85rem;
  color: var(--text-light);
  flex-shrink: 0;
}

.cart-delivery__option div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cart-delivery__option strong {
  font-size: 0.65rem;
  letter-spacing: 0.5px;
}

.cart-delivery__option span {
  font-size: 0.6rem;
  color: var(--text-light);
}

.cart-delivery__option.active,
.cart-delivery__option:has(input:checked) {
  border-color: var(--black);
}

.cart-delivery__option:has(input:checked) i {
  color: var(--black);
}

.cart-delivery__date {
  font-size: 0.65rem;
  color: var(--text-light);
  text-align: center;
}

.cart-delivery__date strong {
  color: var(--text);
}

.cart-delivery__date i {
  margin-right: 4px;
}

.cart-sidebar__footer {
  padding: 10px 20px 6px;
  border-top: 1px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
}

.cart-sidebar__bottom {
  padding: 8px 20px 12px;
  border-top: 1px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
}

.cart-sidebar__bottom .btn--full {
  padding: 12px;
  font-size: 0.7rem;
  margin-top: 6px;
}

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

.cart-sidebar__total strong {
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.cart-sidebar__total .total-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.cart-sidebar__shipping {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* === CONTACT PAGE === */
.contact-page { padding: 40px 0 80px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: white;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

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

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--brown);
  flex-shrink: 0;
}

.contact-info__item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info__item p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* === CGV / LEGAL PAGES === */
.legal-page {
  padding: 40px 0 80px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 32px;
}

.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin: 32px 0 12px;
}

.legal-page p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* === TOAST NOTIFICATION === */
.toast {
  position: fixed;
  top: 70px;
  right: 24px;
  background: var(--white);
  color: var(--text);
  padding: 16px 24px;
  border-radius: 4px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3000;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  letter-spacing: 0.3px;
  max-width: 320px;
  pointer-events: none;
}

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

.toast i { color: var(--accent); font-size: 0.9rem; }

/* === MOBILE NAV OVERLAY === */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 360px;
  height: 100%;
  background: var(--white);
  z-index: 2001;
  transition: left 0.4s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.mobile-nav.active { left: 0; }

.mobile-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-nav__header img { height: 32px; }

.mobile-nav__close {
  background: none;
  font-size: 1.4rem;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav__links a {
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

/* === IMAGE ZOOM OVERLAY (Polène style) === */
.zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.97);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: zoom-out;
}

.zoom-overlay.active {
  opacity: 1;
  visibility: visible;
}

.zoom-overlay__img {
  max-width: 85vw;
  max-height: 90vh;
  object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.zoom-overlay.active .zoom-overlay__img {
  transform: scale(1);
}

.zoom-overlay__close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--beige);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  z-index: 5001;
}

.zoom-overlay__close:hover {
  background: var(--black);
  color: white;
}

/* Zoom cursor on product image */
.product-page__main-image {
  cursor: zoom-in;
}

/* === POLÈNE-STYLE REFINEMENTS === */
.product-page__price {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.product-page__old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-right: 8px;
}

.product-page__name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.product-page__desc {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-light);
  font-weight: 300;
}

/* Review cards */
.review-card {
  background: var(--white);
  padding: 32px;
  border-radius: 0;
  border: 1px solid var(--border);
}

/* Newsletter Polène style */
.newsletter {
  background: var(--beige);
  color: var(--text);
}

.newsletter__title {
  color: var(--text);
}

.newsletter__text {
  color: var(--text-light);
}

.newsletter__form button {
  background: var(--black);
  color: white;
}

.newsletter__form button:hover {
  background: #333;
}

/* Why us section */
.why-us {
  background: var(--white);
}

.why-us__item-icon {
  background: var(--white);
  color: var(--accent);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-us__grid { gap: 40px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger-wrap { display: block; }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
    min-height: auto;
  }

  .hero__desc { margin: 0 auto 32px; }
  .hero__buttons { justify-content: center; }
  .hero__image { order: -1; }
  .hero__image img { max-height: 300px; }
  .hero { min-height: auto; }

  /* hero split hidden on mobile via .hero--desktop */

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

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

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

  .why-us__grid { grid-template-columns: 1fr; }
  .why-us__image { order: -1; }

  .product-page__grid { grid-template-columns: 1fr; gap: 0; }
  .product-page__polene {
    display: block;
  }
  .product-page__lifestyle-col { display: none; }
  .product-page__info-sticky { position: static; padding: 0; }
  .product-page__main-image-small { display: none; }

  /* Mobile carousel */
  .product-page__mobile-carousel {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product-page__mobile-carousel::-webkit-scrollbar { display: none; }
  .product-page__mobile-slide {
    min-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    aspect-ratio: 3/4;
    max-height: 60vh;
    overflow: hidden;
  }
  .product-page__mobile-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--beige);
  }
  .product-page__mobile-slide.lifestyle img {
    object-fit: cover;
    object-position: center center;
  }
  .product-page__dots {
    display: flex !important;
    justify-content: center;
    gap: 6px;
    padding: 8px 0 4px;
    width: 100%;
    align-self: center;
  }
  .product-page__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s;
  }
  .product-page__dot.active {
    background: var(--black);
  }
  .product-page__gallery { position: static; margin: 0; }
  .product-page__gallery { margin: 0 -24px; }
  .product-page__main-image { border-radius: 0; aspect-ratio: 1; background: var(--beige); }
  .product-page__main-image img { width: 100%; height: 100%; object-fit: contain; }
  .product-page__thumbs { padding: 8px 24px 4px; gap: 6px; }
  .product-page__thumb { width: 60px; height: 60px; }
  .product-page__info { padding: 8px 24px 24px; }
  .product-page__variants { padding: 0; gap: 6px; }
  .product-page__variants-block { padding: 0 24px; margin-bottom: 4px; }
  .product-page__variant { width: 54px; height: 54px; }
  .product-page__color-label { margin-bottom: 6px; font-size: 0.65rem !important; }

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

  .footer__grid { grid-template-columns: 1fr; gap: 24px; }

  .newsletter__form { flex-direction: column; }
  .newsletter__form input { border-radius: 4px; }
  .newsletter__form button { border-radius: 4px; }

  .section { padding: 48px 0; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card__info { padding: 12px; }
  .product-card__name { font-size: 0.85rem; }
  .product-card__price { font-size: 0.9rem; }
  .hero__title { font-size: 2rem; }
  .trust-bar__grid { grid-template-columns: 1fr 1fr; }
  .trust-item { flex-direction: column; text-align: center; gap: 6px; }
}

/* === BAG CAROUSEL (infinite horizontal scroll) === */
.bag-carousel {
  overflow: hidden;
  padding: 80px 0;
  background: #FAF7F3;
}

.bag-carousel__track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: carouselScroll 400s linear infinite;
  width: max-content;
}

.bag-carousel__item {
  flex-shrink: 0;
  width: 180px;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.bag-carousel__item:hover {
  transform: translateY(-8px);
}

.bag-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}

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

@media (max-width: 768px) {
  .bag-carousel { padding: 50px 0; }
  .bag-carousel__track { gap: 40px; }
  .bag-carousel__item { width: 140px; height: 160px; }
}

@media (max-width: 480px) {
  .bag-carousel__item { width: 120px; height: 140px; }
  .bag-carousel__track { gap: 32px; }
}

/* === LUXURY TYPOGRAPHY SECTION === */
.luxury-typo {
  padding: 80px 0 60px;
  text-align: center;
  background: var(--white);
}

.luxury-typo__heading {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 16px;
}

.luxury-typo__sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* === SECTION EYEBROW === */
.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

/* ===== PRODUCT PAGE CRO PREMIUM ===== */

/* Mini rating - just below title */
.product-page__rating-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  cursor: pointer;
}
.product-page__stars-mini {
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 1.5px;
}
.product-page__reviews-count {
  font-size: 0.65rem;
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.product-page__rating-mini:hover .product-page__reviews-count {
  color: var(--accent);
}

/* Price layout */
.product-page__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.product-page__current-price {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.5px;
}
.product-page__old-price {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: var(--text-light);
  opacity: 0.5;
}
.product-page__discount {
  font-size: 0.6rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 2px 6px;
  border: 1px solid var(--accent);
  border-radius: 2px;
}

/* Tagline - product specific */
.product-page__tagline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text);
  font-weight: 300;
  letter-spacing: 0.3px;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* Social proof */
.product-page__social-proof {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: 0.5px;
  font-style: italic;
  margin-bottom: 20px;
}
.product-page__social-proof i {
  font-size: 0.5rem;
}

/* Bénéfices produit */
.product-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.product-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0.3px;
}
.product-benefit i {
  font-size: 0.6rem;
  color: var(--accent);
  width: 16px;
  text-align: center;
}

/* CTA amélioré avec shimmer */
.btn--cta {
  padding: 16px 32px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn--cta i {
  font-size: 0.7rem;
  margin-right: 8px;
}
.btn--cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s ease;
}
.btn--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn--cta:hover::after {
  left: 100%;
}

/* Micro-réassurance sous CTA */
p.product-page__micro-reassurance {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin: 12px 0 8px;
  font-size: 0.58rem !important;
  line-height: 1.4;
}
p.product-page__micro-reassurance span {
  font-size: 0.58rem;
  color: var(--text-light);
  letter-spacing: 0.3px;
  font-weight: 300;
  white-space: nowrap;
}
p.product-page__micro-reassurance i {
  font-size: 0.48rem;
  margin-right: 4px;
  color: var(--accent);
}
.product-reassurance__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.3px;
}
.product-reassurance__item i {
  font-size: 0.6rem;
  color: var(--accent);
  width: 14px;
  text-align: center;
}
.product-reassurance__note {
  font-size: 0.6rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 12px;
  line-height: 1.5;
}

/* Accordéons premium */
.product-accordions {
  margin-top: 28px;
  border-top: 1px solid var(--border);
}
.product-accordion {
  border-bottom: 1px solid var(--border);
}
.product-accordion__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--text);
  transition: color 0.2s;
}
.product-accordion__btn:hover { color: var(--accent); }
.product-accordion__btn i {
  font-size: 0.6rem;
  transition: transform 0.3s;
}
.product-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}
.product-accordion.active .product-accordion__content {
  max-height: 500px;
  padding: 0 0 20px;
}
.product-accordion__content ul {
  list-style: none;
  padding: 0;
}
.product-accordion__content li {
  font-size: 0.75rem;
  color: var(--text);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.product-accordion__content li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.product-accordion__content p {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--text);
}
.product-composition {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.product-composition p {
  font-size: 0.72rem;
  margin-bottom: 4px;
}
.accordion-subtitle {
  font-size: 0.65rem !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light) !important;
  margin-bottom: 8px;
  font-weight: 500 !important;
}

/* Section "Pourquoi vous allez l'aimer" */
.product-section-love {
  padding: 60px 24px;
  text-align: center;
  background: var(--beige);
}
.product-section__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.product-section__text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

/* Sections éditoriales image + texte */
.product-editorial {
  max-width: 1200px;
  margin: 0 auto;
}
.product-editorial__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.product-editorial__block--reverse {
  direction: rtl;
}
.product-editorial__block--reverse > * {
  direction: ltr;
}
.product-editorial__img {
  overflow: hidden;
}
.product-editorial__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-editorial__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px;
  background: var(--white);
}
.product-editorial__text h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 16px;
  color: var(--text);
}
.product-editorial__text p {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
}

/* Section avis clients */
.product-reviews-section {
  padding: 60px 24px;
  background: var(--beige);
}
.product-reviews-section .product-section__title {
  text-align: center;
  margin-bottom: 32px;
}
.product-reviews-section .reviews-summary {
  text-align: center;
  margin-bottom: 32px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.review-card {
  background: var(--white);
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: box-shadow 0.2s ease;
}
.review-card:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review-card__stars {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.review-card__date {
  font-size: 0.6rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
}
.review-card__text {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 16px;
  font-weight: 300;
}
.review-card__author {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--text-light);
}
.review-card__author strong {
  color: var(--text);
  font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .product-benefits {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .product-reassurance {
    grid-template-columns: 1fr 1fr;
  }
  .product-editorial__block {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .product-editorial__block--reverse {
    direction: ltr;
  }
  .product-editorial__img {
    height: 300px;
  }
  .product-editorial__text {
    padding: 32px 24px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .product-section-love {
    padding: 40px 20px;
  }
  .product-section__title {
    font-size: 1.1rem;
  }
  .product-reviews-section {
    padding: 40px 16px;
  }
}

/* === SHIPPING TIMELINE === */
.shipping-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 0;
  margin-bottom: 20px;
}
.shipping-timeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
}
.shipping-timeline__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.shipping-timeline__icon i {
  font-size: 0.6rem;
  color: var(--accent);
}
.shipping-timeline__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2px;
}
.shipping-timeline__date {
  font-size: 0.6rem;
  color: var(--text-light);
}
.shipping-timeline__line {
  flex: 1;
  height: 1px;
  background: var(--accent);
  opacity: 0.25;
  margin: 16px 12px 0;
}
.shipping-details {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.shipping-details p {
  font-size: 0.72rem;
  color: var(--text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.shipping-details i {
  color: var(--accent);
  font-size: 0.65rem;
  width: 16px;
  text-align: center;
}

/* Mobile responsive for new CRO elements */
@media (max-width: 768px) {
  .product-page__micro-reassurance {
    flex-wrap: wrap;
    gap: 4px 12px;
    justify-content: center;
    margin-top: 8px;
  }
  .product-page__micro-reassurance span {
    font-size: 0.5rem;
  }
  .product-page__micro-reassurance i {
    font-size: 0.42rem;
  }
  .product-page__social-proof {
    font-size: 0.6rem;
    margin-bottom: 14px;
  }
  .product-page__current-price {
    font-size: 1.1rem;
  }
  .product-benefits {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ===== PAGE À PROPOS ===== */
.about-hero {
  text-align: center;
  padding: 80px 24px 60px;
  background: var(--white);
}
.about-hero__eyebrow {
  font-size: 0.6rem;
  letter-spacing: 4px;
  color: var(--text-light);
  margin-bottom: 12px;
  font-weight: 400;
}
.about-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
}
.about-hero__subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.5px;
}
.about-section {
  padding: 64px 24px;
}
.about-section__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--text);
}
.about-section__text {
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 16px;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.about-value {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border: 1px solid var(--border);
}
.about-value i {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.about-value h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.about-value p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
}
@media (max-width: 768px) {
  .about-values {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-hero {
    padding: 60px 24px 40px;
  }
  .about-section {
    padding: 48px 20px;
  }
}

/* ===== HOMEPAGE CRO PREMIUM ===== */

/* Hero benefits line */
.hero__benefits {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  font-weight: 300;
}

/* Réassurance bar */
.home-reassurance {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.home-reassurance__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.home-reassurance__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.home-reassurance__item i {
  font-size: 1rem;
  color: var(--accent);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.home-reassurance__item strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--text);
}
.home-reassurance__item span {
  display: block;
  font-size: 0.6rem;
  color: var(--text-light);
  font-weight: 300;
}

/* Storytelling section */
.home-story {
  padding: 80px 0;
}
.home-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.home-story__eyebrow {
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.home-story__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 20px;
}
.home-story__desc {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 16px;
}
.home-story__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}
.home-story__link:hover {
  opacity: 0.7;
}
.home-story__image {
  overflow: hidden;
}
.home-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA final */
.home-cta {
  padding: 80px 24px;
  background: var(--text);
  color: var(--white);
}
.home-cta__eyebrow {
  font-size: 0.6rem;
  letter-spacing: 3px;
  opacity: 0.5;
  margin-bottom: 12px;
}
.home-cta__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 16px;
}
.home-cta__text {
  font-size: 0.8rem;
  opacity: 0.6;
  font-weight: 300;
  margin-bottom: 32px;
}

/* Section eyebrow */
.section__eyebrow {
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 400;
}

/* Mobile homepage */
@media (max-width: 768px) {
  .home-reassurance__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .home-reassurance__item {
    gap: 8px;
  }
  .home-reassurance__item i {
    font-size: 0.8rem;
  }
  .home-reassurance__item strong {
    font-size: 0.62rem;
  }
  .home-reassurance__item span {
    font-size: 0.55rem;
  }
  .home-story__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .home-story {
    padding: 48px 24px;
  }
  .home-story__image {
    height: 300px;
  }
  .home-cta {
    padding: 48px 24px;
  }
  .hero__benefits {
    font-size: 0.55rem;
    letter-spacing: 1px;
  }
}

/* ===== HOMEPAGE EDITORIAL (Polène-style) ===== */
.home-editorial {
  width: 100%;
}
.home-editorial__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 600px;
}
.home-editorial__image {
  overflow: hidden;
}
.home-editorial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-editorial__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 80px;
  background: var(--beige);
}
.home-editorial__eyebrow {
  font-size: 0.58rem;
  letter-spacing: 4px;
  color: var(--text-light);
  margin-bottom: 16px;
  font-weight: 400;
}
.home-editorial__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 24px;
}
.home-editorial__text {
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 12px;
}
.home-editorial__link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--text);
  transition: opacity 0.2s;
}
.home-editorial__link:hover {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .home-editorial__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .home-editorial__image {
    height: 400px;
  }
  .home-editorial__content {
    padding: 40px 24px;
  }
  .home-editorial__title {
    font-size: 1.4rem;
  }
}

/* Section marque minimaliste */
.home-brand {
  padding: 64px 24px;
  background: var(--beige);
}
.home-brand__eyebrow {
  font-size: 0.55rem;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 14px;
}
.home-brand__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 16px;
}
.home-brand__text {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 20px;
}
.home-brand__link {
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.home-brand__link:hover { opacity: 0.6; }

/* 3 Quick benefits (compact, above CTA) */
.product-quick-benefits {
  margin-bottom: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.product-quick-benefit {
  font-size: 0.68rem;
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0.3px;
  padding: 4px 0;
}
.product-quick-benefit i {
  font-size: 0.58rem;
  color: var(--accent);
  width: 18px;
  display: inline-block;
  text-align: center;
  margin-right: 6px;
}

/* Emotion line under price */
.product-page__emotion {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Selected color label */
.product-page__selected-color {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 8px;
}
.product-page__selected-color strong {
  color: var(--text);
  font-weight: 500;
}

/* Desktop Add to Cart button */
.product-page__desktop-cta {
  margin: 20px 0 16px;
}
.product-page__add-btn {
  font-size: 0.7rem !important;
  letter-spacing: 2px;
  padding: 15px 32px !important;
}
.product-page__add-btn i {
  margin-right: 8px;
}
@media (max-width: 768px) {
  .product-page__desktop-cta {
    display: none;
  }
}

/* Post-CTA block */
.product-page__post-cta {
  margin-top: 4px;
}

/* Proof line */
.product-page__proof-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  color: var(--text-light);
  margin-top: 10px;
  justify-content: center;
}
.product-page__proof-stars {
  color: var(--accent);
  font-size: 0.6rem;
  letter-spacing: 1px;
}

/* Urgency */
.product-page__urgency {
  font-size: 0.58rem;
  color: var(--accent);
  text-align: center;
  margin-top: 8px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Variants block (label + thumbnails) */
.product-page__variants-block {
  margin-bottom: 12px;
}
.product-page__color-label {
  font-size: 0.75rem !important;
  color: var(--text-light);
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  font-weight: 300;
  text-align: left;
  display: block;
}
.product-page__color-label strong {
  color: var(--text);
  font-weight: 600;
  font-size: 0.75rem;
}

/* Reassurance checks (vertical, post-CTA) */
.product-page__reassurance-checks {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}
.product-page__reassurance-checks span {
  font-size: 0.62rem !important;
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.3px;
}
.product-page__reassurance-checks i {
  font-size: 0.5rem;
  color: var(--accent);
  margin-right: 6px;
}

/* Projection phrase */
.product-projection {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.product-projection__text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
}

/* ===== MOBILE-ONLY CONVERSION OPTIMIZATIONS ===== */
@media (max-width: 768px) {
  /* Hook visuel */
  .product-page__emotion {
    font-size: 14px !important;
    font-style: italic;
    opacity: 0.85;
    margin: 8px 0 12px;
    line-height: 1.5;
  }

  /* Espacement compact pour CTA visible */
  .product-page__name {
    margin-bottom: 4px;
    font-size: 1.3rem;
  }
  .product-page__rating-mini {
    margin-bottom: 6px;
  }
  .product-page__price {
    margin-bottom: 8px;
  }
  .product-page__tagline {
    margin-bottom: 4px;
    line-height: 1.4;
    font-size: 0.72rem;
  }
  .product-page__emotion {
    display: none;
  }
  .product-quick-benefits {
    margin-bottom: 8px;
    padding: 6px 0;
  }
  .product-quick-benefit {
    padding: 2px 0;
    line-height: 1.3;
    font-size: 0.58rem;
  }
  .product-page__actions {
    margin-bottom: 0;
  }
  .btn--cta {
    padding: 14px 24px;
    font-size: 0.65rem;
  }
  .product-page__post-cta {
    margin-top: 12px;
    padding-bottom: 16px;
  }
  .product-page__reassurance-checks {
    margin-top: 14px;
    gap: 5px;
  }
  .product-page__proof-line {
    margin-top: 12px;
  }
  .product-page__urgency {
    margin-top: 10px;
    margin-bottom: 8px;
  }

  /* Timeline plus bas - séparation claire */
  .shipping-timeline {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }

  /* Projection mobile */
  .product-projection {
    padding: 32px 20px;
  }
  .product-projection__text {
    font-size: 0.95rem;
  }
}

/* Newsletter promo line */
.newsletter__promo {
  font-size: 0.65rem !important;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-weight: 300;
}

/* Newsletter -15% badge */
.newsletter__badge {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 12px;
  padding: 8px 24px;
  border: 2px solid var(--accent);
  border-radius: 4px;
}

/* Newsletter legal text */
.newsletter .newsletter__legal,
.newsletter__legal {
  font-size: 10px !important;
  color: var(--text) !important;
  opacity: 0.45;
  margin-top: 20px;
  line-height: 1.7;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter__legal a {
  color: var(--text-light);
  text-decoration: underline;
}

/* ===== STICKY ADD TO CART (mobile only — 2 states) ===== */
/* Desktop: hidden */
.sticky-atc { display: none; }

@media (max-width: 768px) {
  .sticky-atc {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  }

  /* === STATE 1: Floating centered button, transparent sides === */
  .sticky-atc {
    display: flex;
    justify-content: center;
    background: transparent;
    padding: 0 40px 14px;
    pointer-events: none;
  }
  .sticky-atc__left {
    display: none;
  }
  .sticky-atc__btn {
    pointer-events: auto;
    display: block;
    width: 100%;
    max-width: 280px;
    background: var(--black);
    color: #fff;
    border: none;
    padding: 13px 24px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  /* === STATE 2: Full-width white bar with name+price+button === */
  .sticky-atc.scrolled {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 10px 16px;
    border-top: 1px solid var(--border);
    box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
    pointer-events: auto;
  }
  .sticky-atc.scrolled .sticky-atc__left {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
    min-width: 0;
  }
  .sticky-atc.scrolled .sticky-atc__name {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-style: italic;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sticky-atc.scrolled .sticky-atc__price {
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--text-light);
  }
  .sticky-atc__color {
    display: none;
  }
  .sticky-atc.scrolled .sticky-atc__color {
    display: block;
    font-size: 0.52rem;
    color: var(--accent);
    letter-spacing: 0.5px;
    font-weight: 400;
    margin-top: 1px;
  }
  .sticky-atc.scrolled .sticky-atc__btn {
    width: auto;
    max-width: none;
    padding: 11px 20px;
    font-size: 0.56rem;
    letter-spacing: 1.5px;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .sticky-atc.scrolled .sticky-atc__btn:active {
    background: var(--accent);
  }
}


/* ===== CART UPSELL ===== */
.cart-upsell {
  padding: 16px 12px;
  margin: 8px 0;
  background: #faf8f5;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.cart-upsell__title {
  font-size: 0.62rem !important;
  color: var(--accent);
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
  text-transform: uppercase;
}
.cart-upsell__title i {
  margin-right: 6px;
}
.cart-upsell__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.cart-upsell__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.cart-upsell__link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.cart-upsell__img {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--border);
}
.cart-upsell__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cart-upsell__info {
  flex: 1;
  min-width: 0;
}
.cart-upsell__name {
  display: block;
  font-size: 0.62rem;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-upsell__price {
  display: block;
  font-size: 0.58rem;
  color: var(--text-light);
  margin-top: 1px;
}
.cart-upsell__add {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--black);
  background: none;
  font-size: 0.55rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
  color: var(--black);
}
.cart-upsell__add:hover {
  background: var(--black);
  color: #fff;
}

/* ===== PRODUCT FAQ SECTION ===== */
.product-faq-section {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
}
.product-faq-section .product-section__title {
  text-align: center;
  margin-bottom: 32px;
}
.product-faq {
  max-width: 700px;
  margin: 0 auto;
}

/* Ultra-compact mobile product info for CTA visibility */
@media (max-width: 768px) {
  .product-page__dots {
    padding: 4px 0 2px !important;
  }
  .product-page__info {
    padding-top: 4px !important;
  }
}
@media (max-width: 768px) {
  .nav {
    padding: 10px 16px !important;
  }
  .nav__logo img {
    height: 28px !important;
  }
}

/* CTA mobile-early: hidden on desktop, visible on mobile right after price */
.product-page__actions--mobile-early {
  display: none;
}
@media (max-width: 768px) {
  .product-page__actions--mobile-early {
    display: block;
    margin-bottom: 12px;
  }
  .product-page__actions--mobile-early .btn--cta {
    background: transparent !important;
    color: var(--black) !important;
    border: 1.5px solid var(--black) !important;
    padding: 14px 24px;
  }
  .product-page__actions--mobile-early .btn--cta:hover {
    background: var(--black) !important;
    color: #fff !important;
  }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  padding: 16px 24px;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner__content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cookie-banner__text {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
  flex: 1;
}
.cookie-banner__text a {
  color: var(--black);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
}
.cookie-banner__btn--accept {
  background: var(--black);
  color: #fff;
}
.cookie-banner__btn--accept:hover {
  opacity: 0.85;
}
.cookie-banner__btn--refuse {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border);
}
.cookie-banner__btn--refuse:hover {
  border-color: var(--black);
  color: var(--black);
}

@media (max-width: 768px) {
  .cookie-banner__content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }
  .cookie-banner__btn {
    flex: 1;
    padding: 12px 16px;
  }
}
