/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #FFFFFF;
  --text-main: #1A1A1A;
  --accent-color: #3AACBF;
  --accent-hover: #2d98aa;
  --accent-secondary: #3AACBF;
  --price-color: #222222;
  --text-muted: #6B6B6B;
  --text-light: rgba(26, 26, 26, 0.78);
  --white: #FFFFFF;
  --border-subtle: #E8E8E8;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-elegant: 0 12px 40px rgba(0, 0, 0, 0.12);

  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Raleway', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-main);
  background-color: #FFFFFF;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* Typography Helpers */
.text-accent {
  color: var(--accent-color);
}

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

.letter-spacing-wide {
  letter-spacing: 0.15em;
}

.uppercase {
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--text-main);
  background: transparent;
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 8px;
}

.btn:hover {
  background: var(--text-main);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

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

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

.featured-product-section .btn-primary {
  animation: ctaPulse 2.4s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(58, 172, 191, 0.18);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(58, 172, 191, 0.32);
  }
}

.btn-outline-white {
  border: 1px solid var(--white);
  color: var(--white);
}

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

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

/* Announcement Bar */
.announcement-bar {
  background: var(--accent-color);
  color: var(--white);
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 700;
  padding: 8px 0;
  letter-spacing: 0.11em;
  text-transform: none;
  z-index: 1001;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.announcement-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.announcement-track span {
  display: inline-block;
  flex: 0 0 auto;
  padding: 0;
  text-align: center;
  white-space: nowrap;
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 1000;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 12px 0;
  transition: all 0.3s ease;
}

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

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75px;
  transition: height 0.3s ease;
  position: relative;
}

.header.scrolled .nav-container {
  height: 60px;
}

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

.header .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.logo-img {
  height: 92px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.header.scrolled .logo-img {
  height: 66px;
}

.logo-b {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  background: var(--text-main);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px 12px 12px 0;
  margin-bottom: 5px;
  line-height: 1;
}

.logo-nav-b {
  font-family: 'Varela Round', sans-serif;
  font-size: 24px;
  color: #B0B5B9;
  /* Silver gray */
  margin-bottom: -5px;
  line-height: 1;
}

.logo-nav-main {
  font-family: 'VAG Rounded Bold', 'Varela Round', sans-serif;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #B0B5B9;
  /* Silver gray */
}

.logo-nav-main .amp {
  color: var(--accent-color);
}

.logo-nav-sub {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: #B0B5B9;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-right: auto;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-main);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-color);
}

/* Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle::after {
  content: '▼';
  font-size: 8px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 15px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 25px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--text-main);
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background: rgba(74, 122, 181, 0.08);
  color: var(--accent-color);
  border-left-color: var(--accent-color);
  padding-left: 30px;
}

.cart-icon-container {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-left: 16px;
}

.search-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.search-toggle:hover {
  color: var(--accent-color);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background: var(--accent-secondary);
  color: var(--white);
  font-size: 10px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* Only exception for roundness as it's a notification badge */
}

/* Hero Section */
.hero {
  height: 60vh;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0;
  position: relative;
}

/* Hero Carousel */
.hero-carousel-section {
  background: #FFFFFF;
  width: 100%;
}

.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 650;
  min-height: 280px;
  max-height: 720px;
  overflow: hidden;
  background: #FFFFFF;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

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

.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  background: rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-arrow:hover {
  background: rgba(58, 172, 191, 0.85);
  transform: translateY(-50%) scale(1.04);
}

.hero-arrow-prev {
  left: 24px;
}

.hero-arrow-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--accent-color);
}

.brand-collections {
  background: #FFFFFF;
  padding: 52px 0 58px;
}

.brand-collections-kicker {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 38px;
}

.brand-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
  align-items: center;
}

.brand-collection-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-main);
  font-weight: 700;
  font-size: 16px;
}

.brand-circle {
  width: 168px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  position: relative;
}

.brand-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.42);
}

.brand-logo-beauty-care {
  filter: grayscale(1) brightness(0);
}

.brand-logo-barbero {
  transform: scale(2.22);
}

.brand-circle img[hidden] {
  display: none !important;
}

.brand-placeholder {
  color: var(--text-main);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.brand-wordmark {
  font-size: 25px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.rituals-section {
  padding: 76px 0;
  background:
    linear-gradient(135deg, rgba(58, 172, 191, 0.12), rgba(255, 255, 255, 0.24) 48%),
    #F2FBFD;
}

.rituals-section .section-title {
  margin-bottom: 46px;
}

.rituals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ritual-card {
  min-height: 230px;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 44% 1fr;
  align-items: center;
  color: var(--text-main);
  text-decoration: none;
  border: 1px solid rgba(58, 172, 191, 0.18);
  box-shadow: 0 18px 36px rgba(30, 74, 86, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ritual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(30, 74, 86, 0.13);
}

.ritual-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 18px;
}

.ritual-card div {
  padding: 24px 22px 24px 0;
}

.ritual-card span {
  display: block;
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ritual-card strong {
  display: block;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 800;
}

.ritual-card-summer {
  background: linear-gradient(135deg, #F0FBF4, #FFFFFF);
}

.ritual-card-hair {
  background: linear-gradient(135deg, #FFF4EA, #FFFFFF);
}

.ritual-card-care {
  background: linear-gradient(135deg, #EEF9FB, #FFFFFF);
}

.shower-showcase {
  padding: 92px 0 98px;
  background: #FFFFFF;
}

.shower-showcase .container {
  max-width: 1380px;
}

.shower-showcase .section-title {
  margin-bottom: 18px;
}

.shower-showcase-intro {
  max-width: 650px;
  margin: 0 auto 44px;
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.shower-showcase-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 36px 28px;
  align-items: end;
}

.shower-item {
  text-decoration: none;
  color: var(--text-main);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 4px 4px 0;
  transition: transform 0.25s ease, color 0.25s ease;
}

.shower-item:hover {
  transform: translateY(-6px);
  color: var(--accent-color);
}

.shower-item img {
  width: 100%;
  max-width: 245px;
  height: 360px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

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

.shower-item strong {
  font-size: 15px;
  font-weight: 800;
}

.shower-item span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}

.shower-showcase-action {
  margin-top: 40px;
  text-align: center;
}

/* Hero Banner - legacy */
.hero-banner-section {
  width: 100%;
  background: #FFFFFF;
  padding: 40px 0;
}

.hero-banner-section .container {
  max-width: 100%;
  padding: 0;
}

.hero-banner-section a {
  display: block;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(58, 172, 191, 0.12);
}

.hero-banner-img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  display: block;
  object-fit: contain;
  object-position: center center;
  image-rendering: auto;
}

@media (max-width: 768px) {
  .hero-banner-section {
    padding: 15px 0;
  }
  
  .hero-banner-img {
    max-height: none;
    height: auto;
    width: 100%;
  }
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  z-index: 2;
}

.hero-subtitle-top {
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
  display: block;
  text-transform: uppercase;
}

.hero-title {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 15px;
  font-family: var(--font-heading);
}

.hero-subtitle-bottom {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 30px;
  font-weight: 600;
}

/* Marquee */
.marquee-wrapper {
  background: var(--accent-color);
  overflow: hidden;
  padding: 14px 0;
  border-bottom: none;
}

.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}

.marquee span {
  padding: 0 60px;
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-section {
  opacity: 1;
  transform: none;
  transition: none;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  transition: all 0.4s ease;
  height: 100%;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E8E8E8;
}

.product-card:hover {
  box-shadow: var(--shadow-elegant);
  transform: translateY(-8px);
  border-color: transparent;
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #FFFFFF;
  padding: 16px;
}

.product-image-wrapper.is-cover-hover {
  padding: 0;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease, opacity 0.42s ease;
}

.product-image[data-fit="cover"] {
  object-fit: cover;
}

.product-image-hover {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  background: #FFFFFF;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 0.48s ease, transform 0.48s ease;
}

.product-image-hover.is-cover {
  object-fit: cover;
  padding: 0;
}

.product-card:hover .product-image-hover {
  opacity: 1;
  transform: scale(1);
}

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

.product-card[data-product-id="prod-12"] .product-image:not(.product-image-hover) {
  transform: scale(1.16);
}

.product-card[data-product-id="prod-20"] .product-image {
  transform: scale(1.1);
}

.product-card[data-product-id="prod-20"]:hover .product-image {
  transform: scale(1.13);
}

/* Hover overlay: 'Ajouter au Panier' slides up */
.product-hover-btn {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: var(--accent-color);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 0;
  transform: translateY(120%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: auto;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  z-index: 2;
}

.product-hover-btn:hover {
  background: var(--accent-hover);
}

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

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

.product-info {
  padding: 20px 18px 24px;
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-link {
  text-decoration: none;
  color: inherit;
}

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

.product-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-main);
  transition: color 0.3s ease;
  line-height: 1.3;
}

.product-desc-short {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
  flex-grow: 1;
  font-weight: 400;
}

.product-price {
  color: var(--price-color);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  white-space: nowrap;
}

.product-price.is-unavailable,
.product-detail-price.is-unavailable {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
}

/* Featured Product */
.featured-product-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.featured-product-section>.container {
  position: relative;
  z-index: 1;
}

/* Liquid Glass Button */
.btn-glass {
  position: relative;
  display: inline-block;
  padding: 16px 36px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 2.2);
  text-align: center;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 0 15px rgba(255, 255, 255, 0.1),
    inset 1px 1px 2px 0 rgba(255, 255, 255, 0.3),
    inset -1px -1px 2px 0 rgba(255, 255, 255, 0.1);
}

.btn-glass:hover {
  transform: scale(0.95);
  background: rgba(255, 255, 255, 0.35);
  color: var(--white);
  box-shadow:
    0 8px 12px rgba(0, 0, 0, 0.25),
    0 0 25px rgba(0, 0, 0, 0.15),
    inset 2px 2px 1px 0 rgba(255, 255, 255, 0.6),
    inset -1px -1px 1px 1px rgba(255, 255, 255, 0.6);
}

.section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 46px;
  margin-bottom: 70px;
  letter-spacing: 0.02em;
  color: var(--text-main);
  font-weight: 800;
  text-transform: uppercase;
}

.featured-card {
  display: flex;
  background: var(--white);
  max-width: 900px;
  margin: 0 auto;
}

.featured-img-col {
  flex: 1;
}

.featured-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.featured-info-col {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-title {
  font-size: 32px;
  margin-bottom: 15px;
}

.featured-desc {
  color: var(--text-muted);
  margin-bottom: 25px;
}

.featured-price {
  font-size: 24px;
  color: var(--price-color);
  font-family: Arial, Helvetica, sans-serif;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 30px;
}

/* Trust Section */
.trust-section {
  background:
    linear-gradient(135deg, rgba(58, 172, 191, 0.12), rgba(255, 255, 255, 0.24) 48%),
    #F2FBFD;
  border-top: 0;
  border-bottom: 0;
  padding: 60px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.trust-item svg {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  color: var(--text-main);
  stroke-width: 1;
}

.trust-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--text-main);
}

.reviews-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FFFE 100%);
  padding: 90px 0;
}

.section-kicker {
  text-align: center;
  color: var(--text-muted);
  margin: -45px auto 45px;
  max-width: 640px;
}

.reviews-carousel {
  position: relative;
  max-width: 760px;
  min-height: 245px;
  margin: 0 auto;
  overflow: hidden;
}

.review-card {
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  border: 1px solid rgba(58, 172, 191, 0.22);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(58, 172, 191, 0.12);
  padding: 32px 34px;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-card.is-active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.review-quote {
  color: var(--accent-color);
  font-family: var(--font-body);
  font-size: 48px;
  line-height: 0.8;
  margin-bottom: 12px;
  opacity: 0.65;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-stars {
  color: var(--accent-secondary);
  font-size: 14px;
  letter-spacing: 0.06em;
}

.review-text {
  color: var(--text-main);
  line-height: 1.75;
  margin-bottom: 0;
}

.review-author {
  color: var(--text-main);
  font-weight: 800;
  margin: 0;
}

.about-section {
  background:
    linear-gradient(135deg, rgba(58, 172, 191, 0.13), rgba(255, 255, 255, 0) 48%),
    #F9FFFE;
  padding: 80px 0;
}

.about-card {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid rgba(58, 172, 191, 0.24);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(58, 172, 191, 0.11);
  padding: 34px;
}

.about-brand-panel {
  min-height: 260px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    #FFFFFF;
  border: 1px solid rgba(58, 172, 191, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 16px 34px rgba(58, 172, 191, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--text-main);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-brand-panel img {
  width: min(215px, 84%);
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.about-copy {
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-main);
  font-weight: 500;
}

.about-copy p {
  margin-bottom: 20px;
}

/* Newsletter Section */
.newsletter-section {
  background: #FFFFFF;
  text-align: center;
}

.newsletter-title {
  font-size: 36px;
  margin-bottom: 15px;
}

.newsletter-desc {
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid var(--text-muted);
  background: transparent;
  font-family: var(--font-body);
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--text-main);
}

.newsletter-btn {
  border-left: none;
}

/* Footer */
.footer {
  background: var(--accent-color);
  color: var(--text-main);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo .logo-main {
  color: var(--white);
}

.footer-logo .amp {
  color: var(--accent-color);
}

.footer-desc {
  color: rgba(26, 26, 26, 0.82);
  font-size: 14px;
}

.footer-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

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

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

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-logo img {
  filter: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  color: rgba(26, 26, 26, 0.86);
  font-size: 13px;
  padding-top: 24px;
  text-align: center;
}

.footer-arabic {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.social-links-container {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icon-link {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-icon-link:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-3px);
  color: var(--white);
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #FFF;
}

/* Shop Page specific */
.shop-header {
  padding: 60px 0 40px;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid #E8E8E8;
}

.shop-title {
  font-size: 48px;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  cursor: pointer;
  padding-bottom: 8px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover {
  color: var(--text-main);
}

.filter-btn.active {
  color: var(--text-main);
  border-bottom-color: var(--accent-color);
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--text-main);
  border-bottom-color: var(--accent-color);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 60px 0;
}

/* Product Detail Page */
.product-detail-section {
  padding: 60px 0 80px;
}

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

.product-detail-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 12px;
  padding: 20px;
}

#pd-image[src*="anti-moustiques-200ml"] {
  transform: scale(1.08);
}

.product-detail-title {
  font-size: 48px;
  margin-bottom: 15px;
}

.product-detail-price {
  font-size: 23px;
  color: var(--price-color);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 30px;
}

.product-detail-desc {
  margin-bottom: 40px;
  color: var(--text-muted);
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 30px;
}

.qty-btn {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
}

.qty-input {
  width: 50px;
  height: 40px;
  border: none;
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.accordion {
  margin-top: 40px;
  border-top: 0;
}

.accordion-item {
  background: #FFFFFF;
  border: 0;
  border-bottom: 1px solid #E0E5E7;
  border-left: 0;
  border-radius: 0;
  margin-bottom: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.accordion .accordion-item {
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
}

.accordion-item.is-open {
  box-shadow: none;
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main);
}

.accordion .accordion-header {
  padding: 18px 8px !important;
  font-size: 17px !important;
}

.accordion-header svg {
  transition: transform 0.3s ease;
}

.accordion-item.is-open .accordion-header svg {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-muted);
}

.accordion-content.active {
  max-height: 260px;
  padding-bottom: 14px;
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.94);
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 90px 20px 30px;
}

.search-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.search-panel {
  max-width: 720px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 14px;
  box-shadow: var(--shadow-elegant);
  padding: 24px;
}

.search-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.search-input {
  flex: 1;
  border: 1px solid #DCE3E5;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  outline: none;
}

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

.search-close {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--text-main);
  border-radius: 50%;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.search-close:hover {
  color: var(--accent-color);
}

.search-results {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.search-result {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid #EEF1F2;
  border-radius: 10px;
}

.search-result img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.search-result strong {
  display: block;
  font-size: 14px;
}

.search-result span {
  color: var(--price-color);
  font-size: 13px;
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Order Form Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--white);
  width: 90%;
  max-width: 600px;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  font-family: var(--font-body);
  background: transparent;
}

.form-control:focus {
  border-color: var(--text-main);
  outline: none;
}

.cod-notice {
  background: #F9FFFE;
  padding: 15px;
  margin: 20px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Cart Page */
.cart-section {
  padding: 60px 0 80px;
  background: #FFFFFF;
}

.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #E8E8E8;
}

.cart-item-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  padding: 8px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 5px;
}

.cart-item-price {
  color: var(--price-color);
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
}

.cart-summary {
  background: var(--white);
  padding: 30px;
  height: fit-content;
  border: 1px solid #E8E8E8;
  border-radius: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-total {
  font-size: 20px;
  font-weight: 800;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  background: #FFFFFF;
  color: var(--text-main);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: auto;
}

.site-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 20px);
  background: var(--text-main);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 3000;
  max-width: calc(100% - 32px);
  text-align: center;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 48px;
  }

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

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

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

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

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

  .shower-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 16px;
  }

  .featured-card {
    flex-direction: column;
  }

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

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

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

@media (max-width: 768px) {
  .announcement-bar {
    font-size: 12px;
    padding: 8px 0;
  }

  .announcement-track {
    gap: 48px;
    overflow: visible;
    padding: 0 18px;
  }

  .hero-carousel {
    aspect-ratio: 1024 / 1280;
    min-height: 0;
    max-height: none;
  }

  .hero-slide img {
    object-fit: contain;
    object-position: center;
  }

  .hero-arrow {
    width: 34px;
    height: 34px;
    font-size: 32px;
  }

  .hero-arrow-prev {
    left: 10px;
  }

  .hero-arrow-next {
    right: 10px;
  }

  .hero-dots {
    bottom: 12px;
  }

  .brand-collections {
    padding: 38px 0 30px;
  }

  .brand-collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 18px;
  }

  .brand-circle {
    width: 136px;
    height: 88px;
  }

  .brand-collection-card {
    font-size: 15px;
  }

  .shower-showcase {
    padding: 58px 0 66px;
  }

  .shower-item img {
    height: 230px;
    max-width: 158px;
  }

  .rituals-section {
    padding: 52px 0;
  }

  .ritual-card {
    grid-template-columns: 38% 1fr;
    min-height: 190px;
  }

  .ritual-card img {
    height: 180px;
  }

  .ritual-card strong {
    font-size: 20px;
  }

  .nav-container {
    height: 68px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 13px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    margin-right: 0;
    z-index: 4;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    margin-top: 0;
    min-width: 0;
    padding: 0 0 0 10px;
    display: none;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    display: block;
    transform: none;
  }

  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
    letter-spacing: 0.03em;
    margin-bottom: 44px;
  }

  .reviews-carousel {
    min-height: 290px;
  }

  .review-card {
    padding: 26px;
  }

  .about-card {
    padding: 20px;
  }

  .about-brand-panel {
    min-height: 190px;
  }

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

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

  .shower-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .shop-title {
    font-size: 32px;
  }

  .filter-bar {
    flex-wrap: wrap;
    gap: 16px;
  }

  .product-detail-grid,
  .product-info-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .cart-item {
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
