@font-face {
  font-family: 'KyivTypeSans';
  src: url('/web/fonts/KyivTypeSans-Heavy.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}


:root {
  --primary: #f1906b;
  --primary-dark: #e07a53;
  --secondary: #f5de8c;
  --background: #f3ebd3;
  --surface: #faf6ed;
  --text-primary: #1a1a1a;
  --text-secondary: #5a5a5a;
  --text-light: #8a8a8a;
  --success: #4A9D5F;
  --error: #D64545;
  --border: #e5dcc4;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-lg: rgba(0, 0, 0, 0.12);
}

.promo-topbar {
  background: #903b1e;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.3px;
  line-height: 1.4;
  position: relative;
}
.promo-topbar.hidden { display: none; }
.promo-text-short { display: none; }
.promo-topbar-left {
  position: absolute;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  font-size: 0.78rem;
}
.promo-topbar-center {
  font-weight: 400;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 6px;
}
.promo-topbar-toggle {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0;
  opacity: 0.85;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-left: 4px;
  position: relative;
  top: -3px;
}
.promo-topbar-toggle:hover { opacity: 1; }
.promo-topbar-close {
  position: absolute;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
}
.promo-topbar-close:hover { opacity: 1; }
.promo-topbar-details {
  background: #903b1e;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  text-align: center;
  padding: 16px 24px 12px;
  line-height: 1.5;
  border-top: none;
}
.promo-topbar-details.hidden { display: none; }
.promo-topbar-details p {
  margin: 0 auto;
  max-width: 600px;
  color: rgba(255,255,255,0.9);
}
.promo-topbar-details-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 0.8rem;
  font-family: 'Roboto', sans-serif;
  margin-top: 10px;
  padding: 4px 8px;
  opacity: 0.85;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
}
.promo-topbar-details-close:hover { opacity: 1; }
@media (max-width: 768px) {
  .promo-topbar {
    font-size: 0.72rem;
    padding: 10px 36px 10px 12px;
    white-space: nowrap;
  }
  .promo-topbar-center {
    gap: 2px;
    flex-wrap: nowrap;
    flex-shrink: 0;
  }
  .promo-topbar-toggle {
    font-size: 1.4rem;
    padding: 6px 8px;
    margin-left: 2px;
    top: -1px;
    flex-shrink: 0;
  }
  .promo-topbar-left { display: none; }
  .promo-text-full { display: none; }
  .promo-text-short { display: inline; }
  .promo-topbar-close { right: 6px; font-size: 1.4rem; padding: 6px 8px; }
  .promo-topbar-details { font-size: 0.72rem; padding: 12px 16px 10px; white-space: normal; }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.3;
  text-transform: none;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(241, 144, 107, 0.3);
}

.btn-white {
  background: #ffffff;
  color: var(--primary);
}

.btn-white:hover {
  background: #f5f5f5;
  color: var(--primary);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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

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

.btn-large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* Header */
.site-header {
  position: relative;
  background: #fefaf0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  overflow: visible;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  max-width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  overflow: visible;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.nav-right {
  justify-content: flex-end;
}

.nav-link {
  color: var(--text-primary);
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link-aide {
  position: relative;
  cursor: default;
}

.aide-popup {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: -20px;
  z-index: 9999;
  background: #fff;
  border-radius: 10px;
  padding: 20px 28px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  text-align: center;
  min-width: 260px;
}

.aide-popup.visible {
  display: block;
}

.aide-popup::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 40px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: -2px -2px 4px rgba(0,0,0,0.04);
}

.aide-popup-title {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.footer-social span {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.footer-social a {
  color: var(--text-primary);
  transition: opacity 0.2s;
  display: inline-flex;
}

.footer-social a:hover {
  opacity: 0.6;
}

.profile-menu-wrapper {
  position: relative;
}

.profile-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 9999;
  background: #fff;
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  min-width: 220px;
}

.profile-dropdown.visible {
  display: block;
}

.profile-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 16px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: -2px -2px 4px rgba(0,0,0,0.04);
}

.profile-dropdown a {
  display: block;
  padding: 10px 24px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.88rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: background 0.15s;
}

.profile-dropdown a:hover {
  background: #f5f5f5;
}

.profile-dropdown .profile-sep {
  height: 1px;
  background: #eee;
  margin: 6px 0;
}

.profile-dropdown a.profile-logout {
  color: #d32f2f;
}

.aide-popup-email {
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  color: var(--primary);
  text-decoration: none;
}

.aide-tooltip-email:hover {
  text-decoration: underline;
}

.logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.header-products {
  text-align: center;
  padding: 10px 0;
}

.header-products-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}

.nav-link-product {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-link-product:hover {
  color: var(--primary);
}

.nav-btn-resume {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 22px;
  border-radius: 28px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  margin-left: 16px;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.nav-btn-resume:hover {
  opacity: 0.85;
}

.header-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  color: var(--text-primary);
  transition: color 0.2s;
}

.header-icon-link:hover {
  color: var(--primary);
}

.cart-icon {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-icon-wrapper {
  position: relative;
}
.cart-preview {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border: 1px solid #f0e6d6;
  z-index: 1000;
  padding: 16px;
  margin-top: 8px;
}
.cart-icon-wrapper:hover .cart-preview,
.cart-preview.visible {
  display: block;
}
.cart-preview::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 14px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-top: 1px solid #f0e6d6;
  border-left: 1px solid #f0e6d6;
  transform: rotate(45deg);
}
.cart-preview-empty {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  color: #999;
  text-align: center;
  padding: 12px 0;
}
.cart-preview-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f5f0e8;
}
.cart-preview-item:last-child {
  border-bottom: none;
}
.cart-preview-item-img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  background: #f0ece4;
  flex-shrink: 0;
}
.cart-preview-item-info {
  flex: 1;
  min-width: 0;
}
.cart-preview-item-name {
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-preview-item-qty {
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
  color: #999;
}
.cart-preview-item-price {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  flex-shrink: 0;
}
.cart-preview-footer {
  padding-top: 12px;
  border-top: 1px solid #f0e6d6;
  margin-top: 4px;
}
.cart-preview-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.cart-preview-cta {
  display: block;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  background: #839363;
  color: #fff;
  text-decoration: none;
  padding: 9px 0;
  border-radius: 22px;
  transition: background 0.2s, transform 0.2s;
}
.cart-preview-cta:hover {
  background: #6f7f52;
  color: #fff;
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: 0.2s;
}

@media (min-width: 768px) {
  .nav-left .nav-link,
  .nav-right .nav-link {
    display: inline;
  }
  .mobile-menu-btn {
    display: none;
  }
}

@media (max-width: 767px) {
  .nav-left .nav-link,
  .nav-right .nav-link,
  .nav-right .header-icon-link#login-btn {
    display: none;
  }
  .header-products {
    display: none;
  }
  .header-top {
    padding-left: 12px;
    padding-right: 12px;
    height: 48px;
  }
  .nav-left {
    flex: 0 0 auto;
    gap: 8px;
  }
  .nav-right {
    flex: 0 0 auto;
    gap: 8px;
  }
  .logo-center {
    position: static;
    transform: none;
    flex: 1;
    display: flex;
    justify-content: center;
    order: 0;
  }
  .nav-left { order: -1; }
  .nav-right { order: 1; }
  .logo-img {
    height: 26px;
  }
  .header-icon-link svg {
    width: 20px;
    height: 20px;
  }
  .cart-badge {
    top: -3px;
    right: -5px;
    min-width: 16px;
    height: 16px;
    font-size: 9px;
  }
  .container {
    padding: 0 16px;
  }
}

.mobile-nav-panel {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: #fefaf0;
  z-index: 10001;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  padding: 24px 0;
  overflow-y: auto;
  animation: mobileNavSlide 0.25s ease;
}
@keyframes mobileNavSlide {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.mobile-nav-panel.open {
  display: block;
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 10000;
}
.mobile-nav-overlay.open {
  display: block;
}
.mobile-nav-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 4px;
  line-height: 1;
}
.mobile-nav-links {
  list-style: none;
  padding: 48px 0 0;
  margin: 0;
}
.mobile-nav-links li:not(.mobile-nav-sep) {
  border-bottom: none;
}
.mobile-nav-links a {
  display: block;
  padding: 14px 28px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-nav-links a:hover {
  background: rgba(0,0,0,0.03);
}
.mobile-nav-sep {
  height: 0;
  margin: 0;
}
.mobile-nav-links .mobile-nav-cta {
  color: #E67E50;
  font-weight: 600;
}

/* Promo Banner */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  min-height: 420px;
  height: 75vh;
  max-height: 720px;
}

.hero-banner--home {
  background: #903b1e;
}

.hero-banner--fullphoto {
  position: relative;
  height: 55vw;
  min-height: 400px;
  max-height: 750px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-banner__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-banner__overlay-title {
  position: absolute;
  bottom: 40px;
  left: 60px;
  z-index: 2;
}

.hero-banner__overlay-home {
  position: absolute;
  top: 50%;
  left: 110px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.hero-banner__home-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 12px 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-banner__home-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.5;
  margin: 0 0 24px 0;
  max-width: 520px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero-banner__overlay-cta {
  position: absolute;
  bottom: 35%;
  left: 110px;
  display: flex;
  z-index: 2;
}

.hero-banner--fullphoto .hero-banner__cta {
  color: #000;
  background: #fefaf0;
  font-size: 1rem;
  padding: 14px 36px;
}

.hero-banner--green {
  background: #fefaf0;
}

.hero-banner__text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 60px;
  flex: 0 0 45%;
  max-width: 45%;
}

.hero-banner--home .hero-banner__text {
  align-items: flex-start;
}

.hero-banner--green .hero-banner__text {
  align-items: flex-start;
  background-image: url('/web/images/banner-overlay-green.png');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

.hero-banner__title {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  text-transform: none;
  line-height: 1.15;
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}

.hero-banner--home .hero-banner__title {
  color: #fefaf0;
}

.hero-banner--green .hero-banner__title {
  color: #fff;
}

.hero-banner__cta {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 32px;
  border-radius: 28px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.hero-banner__cta:hover {
  transform: translateY(-2px);
}

.hero-banner--home .hero-banner__cta {
  color: #903b1e;
  background: #fefaf0;
}

.hero-banner--green .hero-banner__cta {
  color: #fff;
  background: #903b1e;
}

.hero-banner__photo {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero-banner__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 767px) {
  .hero-banner {
    flex-direction: column;
    min-height: auto;
    height: auto;
    max-height: none;
  }
  .hero-banner__text {
    flex: none;
    max-width: 100%;
    width: 100%;
    padding: 28px 24px;
    align-items: center !important;
    text-align: center;
  }
  .hero-banner--green .hero-banner__text {
    background-size: 100% 100%;
  }
  .hero-banner__title {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
    margin-bottom: 14px;
  }
  .hero-banner__cta {
    font-size: 0.88rem;
    padding: 11px 28px;
  }
  .hero-banner--home .hero-banner__cta {
    display: none;
  }
  .hero-banner__photo {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  .hero-banner__overlay-home {
    left: 24px;
  }
  .hero-banner__home-title {
    font-size: 0.95rem;
  }
  .hero-banner__home-subtitle {
    font-size: 0.9rem;
    max-width: 320px;
  }
  .hero-banner__overlay-cta {
    bottom: 20%;
    left: 24px;
  }
  .hero-banner--fullphoto {
    height: auto;
    min-height: 250px;
    max-height: 400px;
    aspect-ratio: 2880 / 1600;
  }
  .hero-banner--fullphoto .hero-banner__cta {
    font-size: 0.88rem;
    padding: 11px 28px;
  }
}

/* Trust Bar */
.trust-bar {
  background: #fefaf0;
  padding: 24px 24px;
  text-align: center;
}

.trust-bar-text {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #903b1e;
  letter-spacing: 0.02em;
}
.trust-bar-text .mobile-br {
  display: none;
}
.trust-bar-stars {
  color: #903b1e;
}

/* Dual Carousel Section */
.dual-carousel-section {
  padding: 48px 0 56px;
  background: #fefaf0;
}

.dual-carousel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
}

@media (max-width: 767px) {
  .dual-carousel-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.carousel-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item {
  flex: 0 0 100%;
  min-width: 100%;
}

.carousel-item img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.carousel-item video {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  margin-bottom: 18px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d4cfc2;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 6px;
}

.carousel-caption {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  font-style: normal;
  text-transform: none;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.carousel-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-carousel {
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 28px;
  min-width: 240px;
  text-align: center;
}


/* Moments Section */
.moments-section {
  padding: 48px 0 56px;
  background: #fff;
}

.moments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.moment-video-col {
  border-radius: 20px;
  overflow: hidden;
}

.moment-video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.moment-cards-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.moment-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.moment-card--stacked {
  flex: 1;
}

.moment-card-image {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.moment-card-image img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.moment-card--stacked .moment-card-image {
  flex: 1;
}

.moment-card--stacked .moment-card-image img {
  height: 100%;
}

.moment-arrow-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}

.moment-price-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  padding: 8px 18px;
  border-radius: 24px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.moment-price-badge strong {
  color: var(--primary);
  font-weight: 700;
}

.moment-card-body {
  padding: 8px 4px 4px;
}

.moment-card-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 4px;
  text-transform: none;
}

.moment-card-text {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

@media (max-width: 767px) {
  .moments-grid {
    grid-template-columns: 1fr;
  }
}

/* Reviews Section */
.reviews-section {
  padding: 48px 0 40px;
  background: #fefaf0;
}

.reviews-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.reviews-track-wrapper {
  overflow: hidden;
  padding: 0 0;
}

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviews-scroll 35s linear infinite;
}

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

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

.review-card {
  width: 260px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.review-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

.review-stars {
  color: #f5a623;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.review-text {
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* Reassurance Section */
.reassurance-section {
  padding: 56px 0;
  background: #ffffff;
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  padding: 0 5%;
  box-sizing: border-box;
}

.reassurance-item {
  text-align: center;
}

.reassurance-icon {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 20px;
}

.reassurance-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  text-transform: none;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  white-space: nowrap;
}

.reassurance-text {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

@media (max-width: 767px) {
  .reassurance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Founders Section */
.founders-section {
  padding: 0;
  background: #a9b3a4;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  max-width: 1200px;
  margin: 0 auto;
  background: #a9b3a4;
  border-radius: 0;
  overflow: hidden;
}

.founders-photo {
  overflow: hidden;
}

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

.founders-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 64px;
  text-align: center;
  background-color: #a9b3a4;
}

.founders-quote {
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2a2a2a;
  margin-bottom: 28px;
  max-width: 520px;
}

.founders-names {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-style: italic;
  color: #3a3a3a;
  margin-bottom: 28px;
}

.founders-cta {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #1a1a1a;
  background: #ffffff;
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.founders-cta:hover {
  opacity: 0.85;
}

@media (max-width: 767px) {
  .founders-grid {
    grid-template-columns: 1fr;
  }

  .founders-photo {
    max-height: 360px;
  }

  .founders-text {
    padding: 40px 24px;
  }
}

/* Features Section */
.features {
  padding: 80px 0;
  background: #fefaf0;
}

.features-banner {
  text-align: center;
}

.features-banner img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
}

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

.section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--surface);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--text-secondary);
}

/* Products Section */
.products {
  padding: 100px 0;
  background: var(--surface);
}

.products-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-image {
  position: relative;
  aspect-ratio: 1;
  background: var(--background);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.product-info {
  padding: 20px;
}

.product-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-description {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.product-price .original {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}

/* Editions Cloch Section */
.editions-section {
  padding: 100px 0;
  background: var(--surface);
}

.editions-section .section-header p {
  max-width: 800px;
}

.editions-blocs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 16px auto 0;
}

.edition-bloc {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.edition-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 320px;
  background: #f0ece4;
}

.edition-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  transform: translateX(0%);
}

.edition-slide {
  min-width: 100%;
  flex-shrink: 0;
  min-height: 320px;
}

.edition-slide img {
  width: 100%;
  display: block;
  height: 320px;
  object-fit: cover;
  background: #f0ece4;
}

.edition-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
}

.edition-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.edition-dot.active {
  background: var(--primary);
}

.edition-bloc-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.03em;
  color: var(--primary);
  margin: 4px 20px 8px;
}

.edition-bloc-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 20px 20px;
  text-align: center;
}

.edition-bloc .btn {
  display: inline-block;
  margin-bottom: 24px;
  min-width: 200px;
  text-align: center;
  padding: 12px 32px;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .editions-blocs {
    grid-template-columns: 1fr;
    max-width: 460px;
    gap: 24px;
  }
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--surface);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-stars {
  color: var(--secondary);
}

/* App Download */
.app-download-photo {
  position: relative;
  height: 55vw;
  min-height: 400px;
  max-height: 750px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-download-photo .app-download-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
  padding: 0 24px;
}

.app-download-photo .app-download-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  text-transform: none;
  letter-spacing: 0.02em;
  margin: 0 0 16px 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.app-download-photo .app-download-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.5;
  margin: 0 0 28px 0;
  max-width: 580px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.app-download-photo .app-download-content .btn-app-cta {
  display: inline-block;
  background: #fefaf0;
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 32px;
  border-radius: 28px;
  text-decoration: none;
  transition: transform 0.2s;
}

.app-download-photo .app-download-content .btn-app-cta:hover {
  transform: translateY(-2px);
}

.app-download {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}

.app-download h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.app-download p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 480px) {
  .store-buttons {
    flex-direction: row;
  }
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--white);
  color: var(--text-primary);
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: var(--text-primary);
}

.store-btn svg {
  width: 24px;
  height: 24px;
}

/* Footer */
/* Footer Banner */
.footer-banner {
  width: 100%;
  overflow: hidden;
}

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

/* Footer CTA + Newsletter row */
.footer-cta-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

@media (max-width: 767px) {
  .footer-cta-row {
    grid-template-columns: 1fr;
  }
}

.footer-carte-cadeau {
  background: #f2dfce;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 40px;
}

.footer-carte-cadeau img {
  width: 220px;
  height: auto;
  margin-bottom: 24px;
  border-radius: 4px;
}

.footer-carte-cadeau h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
  color: var(--text-primary);
}

.footer-carte-cadeau p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-primary);
  max-width: 340px;
  margin: 0;
}

/* Footer Newsletter */
.footer-newsletter {
  background: #a9b3a4;
  color: var(--text-primary);
  text-align: center;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-newsletter h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
  color: var(--text-primary);
}

.footer-newsletter p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  margin: 0 0 24px;
  color: var(--text-primary);
  opacity: 0.85;
  max-width: 460px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  max-width: 420px;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
}

.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 24px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: var(--text-primary);
  background: transparent;
}

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

.newsletter-form button {
  border: none;
  background: var(--text-primary);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 14px 28px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: #333;
}

.footer-newsletter .footer-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 20px;
  transition: opacity 0.2s;
}

.footer-newsletter .footer-insta:hover {
  opacity: 0.7;
}

.footer-newsletter .footer-insta svg {
  width: 22px;
  height: 22px;
}

/* Footer Main */
.site-footer {
  background: #e1e6de;
  color: var(--text-primary);
  padding: 40px 0 32px;
}

.footer-grid {
  display: grid;
  gap: 48px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
  }
}

.footer-brand {
  max-width: 320px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-brand p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin: 0;
}

.footer-column h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-column a {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-column a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.footer-bottom p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  color: #999;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

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

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

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

/* === COMPREHENSIVE MOBILE RESPONSIVE === */
@media (max-width: 767px) {
  h1 { font-size: 2rem; line-height: 1.3; }
  h2 { font-size: 2rem; line-height: 1.3; }
  h3 { font-size: 2rem; line-height: 1.3; }

  .section-header {
    margin-bottom: 28px;
    padding: 0 4px;
  }
  .section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .section-header p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .promo-topbar {
    font-size: 0.72rem;
    padding: 10px 36px 10px 12px;
    text-align: center;
    white-space: nowrap;
  }
  .promo-topbar-left { display: none; }
  .promo-text-full { display: none; }
  .promo-text-short { display: inline; }
  .promo-topbar-center { flex-wrap: nowrap; flex-shrink: 0; gap: 2px; }
  .promo-topbar-toggle { font-size: 1.4rem; padding: 6px 8px; flex-shrink: 0; }
  .promo-topbar-close { right: 6px; font-size: 1.4rem; padding: 6px 8px; }



  .dual-carousel-section {
    padding: 28px 0 32px;
  }
  .carousel-box {
    border-radius: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .carousel-box::-webkit-scrollbar { display: none; }
  .carousel-track {
    transition: none;
    transform: none !important;
  }
  .carousel-item {
    scroll-snap-align: center;
  }
  .carousel-item img {
    border-radius: 14px;
  }
  .carousel-caption {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .carousel-subtitle {
    font-size: 0.8rem;
    margin-bottom: 12px;
    line-height: 1.45;
  }
  .carousel-dots {
    margin-top: 10px;
    margin-bottom: 14px;
  }
  .carousel-dot {
    width: 10px;
    height: 10px;
  }
  .carousel-dot.active {
    width: 24px;
  }
  .btn-carousel {
    min-width: 180px;
    padding: 11px 22px;
    font-size: 0.85rem;
  }
  .edition-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .edition-carousel::-webkit-scrollbar { display: none; }
  .edition-carousel-track {
    transition: none;
    transform: none !important;
  }
  .edition-slide {
    scroll-snap-align: center;
  }

  .moments-section {
    padding: 28px 0 32px;
  }
  .moment-video {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }
  .moment-video-col {
    border-radius: 14px;
  }
  .moment-card-image {
    border-radius: 12px;
  }
  .moment-card-heading {
    font-size: 0.9rem;
  }
  .moment-card-text {
    font-size: 0.78rem;
  }

  .reviews-section {
    padding: 28px 0 24px;
  }
  .reviews-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  .review-card {
    width: 220px;
    padding: 14px 16px;
  }
  .review-name { font-size: 0.85rem; }
  .review-text { font-size: 0.78rem; }

  .reassurance-section {
    padding: 28px 0;
  }
  .reassurance-grid {
    gap: 16px;
    padding: 0 8px;
  }
  .reassurance-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
  }
  .reassurance-heading {
    font-size: 0.82rem;
    white-space: normal;
  }
  .reassurance-text {
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .founders-section {
    padding: 0;
  }
  .founders-grid {
    min-height: auto;
  }
  .founders-photo {
    max-height: 280px;
  }
  .founders-text {
    padding: 32px 20px;
  }
  .founders-quote {
    font-size: 0.88rem;
    margin-bottom: 18px;
    line-height: 1.6;
  }
  .founders-names {
    font-size: 0.8rem;
    margin-bottom: 18px;
  }
  .founders-cta {
    font-size: 0.85rem;
    padding: 10px 28px;
  }

  .features {
    padding: 40px 0;
  }
  .feature-card {
    padding: 24px;
    border-radius: 14px;
  }
  .section-header h2 {
    font-size: 1.2rem;
  }
  .feature-card h3 {
    font-size: 1.2rem;
  }
  .feature-card p {
    font-size: 0.85rem;
  }
  .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    margin-bottom: 14px;
  }
  .feature-icon svg {
    width: 26px;
    height: 26px;
  }

  .editions-section {
    padding: 36px 0;
  }
  .editions-section .section-header p {
    font-size: 0.85rem;
  }
  .edition-slide img {
    height: 220px;
  }
  .edition-bloc-title {
    font-size: 1.05rem;
  }
  .edition-bloc-desc {
    font-size: 0.82rem;
    margin: 0 16px 16px;
  }
  .edition-bloc .btn {
    font-size: 0.85rem;
    padding: 10px 24px;
    min-width: 160px;
  }

  .products {
    padding: 40px 0;
  }

  .app-download-photo {
    height: auto;
    min-height: 320px;
    max-height: none;
    aspect-ratio: auto;
    background-position: center top;
    padding: 60px 20px;
  }
  .app-download-photo .app-download-content h2 {
    font-size: 1.2rem;
  }
  .app-download-photo .app-download-content p {
    font-size: 0.85rem;
    max-width: 320px;
  }
  .app-download-photo .app-download-content .btn-app-cta {
    font-size: 0.82rem;
    padding: 10px 22px;
  }
  .app-download {
    padding: 36px 0;
  }
  .app-download h2 {
    font-size: 1.2rem;
  }
  .app-download p {
    font-size: 0.85rem;
    margin-bottom: 24px;
    line-height: 1.5;
  }
  .store-btn {
    padding: 12px 22px;
    font-size: 0.85rem;
    gap: 10px;
  }
  .store-btn svg {
    width: 20px;
    height: 20px;
  }

  .footer-carte-cadeau {
    padding: 32px 20px;
    text-align: center;
  }
  .footer-carte-cadeau img {
    width: 120px;
    margin-bottom: 14px;
  }
  .footer-carte-cadeau h3 {
    font-size: 1.2rem;
  }
  .footer-carte-cadeau p {
    font-size: 0.78rem;
    max-width: 280px;
    margin: 0 auto;
  }

  .footer-newsletter {
    padding: 28px 20px;
  }
  .footer-newsletter h3 {
    font-size: 1.2rem;
  }
  .footer-newsletter p {
    font-size: 0.78rem;
  }
  .newsletter-form {
    max-width: 100%;
  }
  .newsletter-form input {
    padding: 11px 14px;
    font-size: 0.82rem;
  }
  .newsletter-form button {
    padding: 11px 14px;
    font-size: 0.78rem;
  }

  .footer-social {
    justify-content: center;
  }

  .site-footer {
    padding: 28px 0 20px;
  }
  .footer-grid {
    gap: 24px;
    text-align: center;
  }
  .footer-brand {
    margin: 0 auto;
  }
  .footer-brand p {
    font-size: 0.78rem;
  }
  .footer-column {
    text-align: center;
  }
  .footer-column h4 {
    font-size: 0.82rem;
    margin-bottom: 10px;
  }
  .footer-column a {
    font-size: 0.8rem;
  }

  .trust-bar {
    padding: 14px 12px;
  }
  .trust-bar-text {
    font-size: 0.82rem;
    line-height: 1.05;
  }
  .trust-bar-text .mobile-br {
    display: inline;
  }

  .cta-section {
    padding: 40px 0;
  }
  .cta-section p {
    font-size: 0.88rem;
  }

  .made-in-france {
    padding: 40px 0;
  }
  .mif-text p {
    font-size: 0.88rem;
  }

  .quality-badges {
    gap: 12px;
    margin-top: 28px;
  }
  .quality-badge {
    padding: 14px;
    min-width: 100px;
  }
  .quality-badge svg {
    width: 32px;
    height: 32px;
  }
  .quality-badge span {
    font-size: 12px;
  }
}

/* Quality badges */
.quality-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

.quality-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: var(--surface);
  border-radius: 12px;
  min-width: 140px;
}

.quality-badge svg {
  width: 40px;
  height: 40px;
  color: var(--primary);
}

.quality-badge span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Made in France */
.made-in-france {
  padding: 80px 0;
  background: var(--surface);
}

.mif-content {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .mif-content {
    grid-template-columns: 1fr 1fr;
  }
}

.mif-text h2 {
  margin-bottom: 24px;
}

.mif-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1.125rem;
}

.mif-features {
  list-style: none;
  margin-top: 32px;
}

.mif-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 500;
}

.mif-features svg {
  width: 24px;
  height: 24px;
  color: var(--success);
}

.mif-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px var(--shadow-lg);
}

@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="tel"],
  input[type="number"],
  input[type="search"],
  textarea,
  select {
    font-size: 16px !important;
  }
}
