/* ======= PRELOADER ======= */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--white);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__logo {
  animation: preloaderPulse 1.5s ease-in-out infinite alternate;
}

.preloader__svg {
  width: 120px;
  height: 120px;
}

.whisker--1,
.whisker--2 {
  transform-origin: 32px 36px;
}

.whisker--1 {
  animation: whiskSpin1 1s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.whisker--2 {
  animation: whiskSpin2 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes preloaderPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes whiskSpin1 {
  0% {
    transform: rotate(-45deg);
  }

  100% {
    transform: rotate(-65deg) scaleY(1.1);
  }
}

@keyframes whiskSpin2 {
  0% {
    transform: rotate(45deg);
  }

  100% {
    transform: rotate(65deg) scaleY(1.1);
  }
}

/* ======= NOISE OVERLAY ======= */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Cfilter id='noiseFilter'%3%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 10001;
}

/* ======= SCROLL PROGRESS ======= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--pink);
  z-index: 10002;
  transition: width 0.1s ease-out;
}

/* ======= LENIS SMOOTH SCROLL ======= */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* Global Parallax Elements */
[data-parallax] {
  will-change: transform;
}

/* ======= SVG ICONS ======= */
.nav__icon-svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.strip-sep {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  opacity: 0.85;
}

.feat-svg {
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(232, 23, 138, 0.25));
  transition: transform 0.3s ease;
}

.produits__feat:hover .feat-svg {
  transform: scale(1.12) rotate(-5deg);
}

.saveur-icon {
  display: block;
  flex-shrink: 0;
  min-width: 44px;
  filter: drop-shadow(0 2px 6px rgba(232, 23, 138, 0.2));
  transition: transform 0.3s ease;
}

.saveurs__item:hover .saveur-icon {
  transform: scale(1.1);
}

/* ======= DELICE AI CHATBOT ======= */
.chatbot-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
}

@keyframes chatPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 23, 138, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(232, 23, 138, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(232, 23, 138, 0);
  }
}

.chatbot-toggler {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  border: 2px solid var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(232, 23, 138, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: chatPulse 2s infinite;
}

.chatbot-toggler:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 15px 30px rgba(232, 23, 138, 0.5);
  animation: none;
}

.chatbot-toggler-icon,
.chatbot-toggler-close {
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
}

.chatbot-toggler-close {
  opacity: 0;
  transform: scale(0.5) rotate(90deg);
}

.chatbot-container.active .chatbot-toggler-icon {
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
}

.chatbot-container.active .chatbot-toggler-close {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.chatbot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 380px;
  background: var(--glass);
  backdrop-filter: blur(25px) saturate(160%);
  -webkit-backdrop-filter: blur(25px) saturate(160%);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px) scale(0.9);
  transform-origin: bottom right;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  border: 1px solid var(--glass-border);
  max-width: calc(100vw - 4rem);
}

.chatbot-container.active .chatbot-window {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  padding: 1rem 1.2rem;
  background: var(--pink);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.chatbot-avatar {
  background: var(--white);
  padding: 5px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chatbot-header h3 {
  font-family: var(--font-fancy);
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
  letter-spacing: 0.5px;
}

.chatbot-header p {
  font-size: 0.8rem;
  opacity: 0.8;
  margin: 0;
}

.chatbot-close-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.chatbot-close-btn:hover {
  opacity: 1;
}

.chatbot-messages {
  padding: 1.2rem;
  height: 380px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  background: hsla(327, 80%, 98%, 0.4);
}

/* Custom Scrollbar for chat */
.chatbot-messages::-webkit-scrollbar {
  width: 5px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: rgba(232, 23, 138, 0.2);
  border-radius: 10px;
}

.chat {
  display: flex;
}

.chat.incoming {
  justify-content: flex-start;
}

.chat.outgoing {
  justify-content: flex-end;
}

.chat p {
  margin: 0;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
  word-wrap: break-word;
}

.chat.incoming p {
  background: rgba(255, 255, 255, 0.9);
  color: var(--black);
  border-radius: 18px 18px 18px 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid hsla(327, 82%, 50%, 0.08);
}

.chat.outgoing p {
  background: linear-gradient(135deg, var(--pink), #c71477);
  color: var(--white);
  font-weight: 500;
  border-radius: 18px 18px 4px 18px;
  box-shadow: 0 8px 20px hsla(327, 82%, 50%, 0.2);
}

.chatbot-input-area {
  display: flex;
  padding: 1rem;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  align-items: center;
  gap: 0.5rem;
}

.chatbot-input-area textarea {
  flex: 1;
  border: none;
  outline: none;
  resize: none;
  background: rgba(0, 0, 0, 0.03);
  padding: 0.8rem;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--black);
  max-height: 100px;
  height: 45px;
  line-height: 1.2;
}

.chatbot-input-area textarea::placeholder {
  color: #999;
}

.chatbot-send-btn {
  background: var(--pink);
  color: var(--white);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s, background 0.2s;
}

.chatbot-send-btn:hover {
  transform: scale(1.05);
  background: #c71477;
}

.chatbot-send-btn svg {
  margin-left: -2px;
  /* Optical alignment */
}

/* Typing animation for bot */
.typing-dots {
  display: flex;
  gap: 4px;
  padding: 0.8rem 1rem;
  background: var(--white);
  border-radius: 15px 15px 15px 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  width: max-content;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out both;
  opacity: 0.5;
}

.typing-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typing {

  0%,
  80%,
  100% {
    transform: scale(0);
    opacity: 0.3;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ======= IMAGE HOTSPOTS ======= */
.cake-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.cake-photo-main {
  width: 100%;
  height: auto;
  border-radius: 20px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  animation: floatImg 6s ease-in-out infinite;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.cake-photo-main:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 20px rgba(232, 23, 138, 0.7)) drop-shadow(0 0 50px rgba(232, 23, 138, 0.5)) drop-shadow(0 0 80px rgba(232, 23, 138, 0.3));
}

/* Hotspots Base */
.hotspot {
  position: absolute;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transform: translate(-50%, -50%);
}

.hotspot__dot {
  width: 12px;
  height: 12px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 0 3px #fff, 0 4px 8px rgba(232, 23, 138, 0.4);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
  position: relative;
  z-index: 2;
}

.hotspot__ring {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  opacity: 0;
  animation: pulseRing 2.5s cubic-bezier(0.21, 0.53, 0.56, 0.8) infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.hotspot:hover .hotspot__dot,
.hotspot.active .hotspot__dot {
  transform: scale(1.4);
  background: var(--dark);
}

.hotspot:hover .hotspot__ring,
.hotspot.active .hotspot__ring {
  animation: none;
  opacity: 1;
  transform: scale(1);
  background: rgba(232, 23, 138, 0.1);
  transition: all 0.3s ease;
}

/* Tooltips */
.hotspot__tooltip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.hotspot__title {
  background: #fff;
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 2px solid var(--pink);
}

.hotspot__line {
  height: 2px;
  width: 0;
  background: var(--pink);
  transition: width 0.4s ease 0.1s;
  position: relative;
}

.hotspot__line::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  opacity: 0;
  transition: opacity 0.2s ease 0.3s;
}

.hotspot:hover .hotspot__line::after,
.hotspot.active .hotspot__line::after {
  opacity: 1;
}

.hotspot:hover .hotspot__tooltip,
.hotspot.active .hotspot__tooltip {
  opacity: 1;
}

.hotspot:hover .hotspot__line,
.hotspot.active .hotspot__line {
  width: 40px;
}

/* Specific Hotspot Positions (Adjust percentages based on the image) */
.hotspot--crust {
  top: 42%;
  left: 78%;
}

.hotspot--crust .hotspot__tooltip {
  right: 100%;
  transform: translateX(-10px);
}

.hotspot--crust:hover .hotspot__tooltip {
  transform: translateX(-20px);
}

.hotspot--crust .hotspot__line::after {
  right: -4px;
  border-left-color: var(--pink);
}

.hotspot--sponge {
  top: 55%;
  left: 23%;
}

.hotspot--sponge .hotspot__tooltip {
  left: 100%;
  transform: translateX(10px);
}

.hotspot--sponge:hover .hotspot__tooltip {
  transform: translateX(20px);
}

.hotspot--sponge .hotspot__line::after {
  left: -4px;
  border-right-color: var(--pink);
}

.hotspot--chocolate {
  top: 42%;
  left: 28%;
}

.hotspot--chocolate .hotspot__tooltip {
  left: 100%;
  transform: translateX(10px);
}

.hotspot--chocolate:hover .hotspot__tooltip {
  transform: translateX(20px);
}

.hotspot--chocolate .hotspot__line::after {
  left: -4px;
  border-right-color: var(--pink);
}

/* ======= CUSTOM CURSOR ======= */
body.has-custom-cursor {
  cursor: none;
}

body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor .hotspot {
  cursor: none;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(232, 23, 138, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.custom-cursor.hover {
  width: 60px;
  height: 60px;
  background-color: rgba(232, 23, 138, 0.15);
  backdrop-filter: blur(2px);
  border: 1px solid var(--pink);
  mix-blend-mode: normal;
}

.cursor-follower.hover {
  width: 80px;
  height: 80px;
  border-color: transparent;
}

/* ======= PREMIUM REVEAL ANIMATIONS ======= */
.reveal-clip {
  transform: translateY(40px);
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform, opacity;
}

.reveal-clip.is-revealed {
  transform: translateY(0);
  opacity: 1;
}

/* For staggered lists like the features or stats */
.reveal-stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.reveal-stagger-parent.is-revealed .reveal-stagger-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger-parent.is-revealed .reveal-stagger-item:nth-child(1) {
  transition-delay: 0.1s;
}

.reveal-stagger-parent.is-revealed .reveal-stagger-item:nth-child(2) {
  transition-delay: 0.2s;
}

.reveal-stagger-parent.is-revealed .reveal-stagger-item:nth-child(3) {
  transition-delay: 0.3s;
}

.reveal-stagger-parent.is-revealed .reveal-stagger-item:nth-child(4) {
  transition-delay: 0.4s;
}

.reveal-stagger-parent.is-revealed .reveal-stagger-item:nth-child(5) {
  transition-delay: 0.5s;
}


/* ======= MATERIAL SYMBOLS ======= */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ======= RESET & BASE ======= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #fff;
  color: #1a0a14;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* ======= TOKENS ======= */
:root {
  --pink: hsl(327, 82%, 50%);
  --pink-hover: hsl(327, 82%, 45%);
  --pink-light: hsl(327, 82%, 85%);
  --pink-pale: hsl(327, 80%, 97%);
  --black: #1a0a14;
  --dark: #2d1326;
  --grey: #f8f5f7;
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 20px 60px hsla(327, 82%, 50%, 0.12);
  --shadow-hover: 0 25px 80px hsla(327, 82%, 50%, 0.2);
  --glass: hsla(0, 0%, 100%, 0.7);
  --glass-border: hsla(0, 0%, 100%, 0.5);
  --font-main: 'Outfit', sans-serif;
  --font-fancy: 'Playfair Display', serif;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

h1,
h2,
h3,
.section-title {
  font-family: var(--font-fancy);
  letter-spacing: -0.02em;
}

/* ======= NAV GLASSMORPHISM ======= */
.nav {
  background: var(--glass) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav.scrolled {
  padding: 0.6rem 5%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ======= HERO 3D MODEL ======= */
.hero__model {
  width: 100%;
  height: 100%;
  min-height: 500px;
  --poster-color: transparent;
  outline: none;
  z-index: 5;
  filter: drop-shadow(0 0 15px rgba(232, 23, 138, 0.3));
  animation: heroNeonGlow 4s ease-in-out infinite alternate;
}

@keyframes heroNeonGlow {
  0% {
    filter: drop-shadow(0 0 10px rgba(232, 23, 138, 0.4)) drop-shadow(0 0 20px rgba(232, 23, 138, 0.2));
  }

  100% {
    filter: drop-shadow(0 0 25px rgba(232, 23, 138, 0.8)) drop-shadow(0 0 50px rgba(232, 23, 138, 0.5)) drop-shadow(0 0 80px rgba(232, 23, 138, 0.3));
  }
}

@media (max-width: 768px) {
  .hero__model {
    min-height: 350px;
  }
}

/* ======= SCROLLBAR ======= */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #fdf0f7;
}

::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 3px;
}

/* ======= NAV ======= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(232, 23, 138, 0.1);
  transition: background 0.3s;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 24px rgba(232, 23, 138, 0.08);
}

.nav__logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--pink);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav__icon {
  font-size: 1rem;
  opacity: 0.7;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
}

.nav__links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--black);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav__links a:hover {
  color: var(--pink);
}

.nav__cta {
  text-decoration: none;
  background: var(--pink);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 23, 138, 0.35);
}

.nav__burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--pink);
}

/* ======= MOBILE MENU ======= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.77, 0, .18, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
}

.mobile-menu__link {
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.2s;
}

.mobile-menu__link:hover,
.mobile-menu__link.cta {
  color: var(--pink);
}

/* ======= BUTTONS ======= */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 8px 32px rgba(232, 23, 138, 0.3);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(232, 23, 138, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--black);
  border: 1.5px solid rgba(26, 10, 20, 0.2);
}

.btn--ghost:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.btn--white {
  background: #fff;
  color: var(--pink);
  font-size: 1rem;
  padding: 1rem 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.btn--white:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.25);
}

/* ======= SECTION UTILS ======= */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--black);
}

.section-title em {
  font-style: italic;
  color: var(--pink);
}

.section-sub {
  font-size: 1.05rem;
  color: #6b4557;
  line-height: 1.7;
  margin-top: 0.8rem;
}

/* ======= HERO ======= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2.5rem 4rem;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero__content {
  flex: 1;
  max-width: 520px;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-pale);
  border: 1px solid rgba(232, 23, 138, 0.2);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 1.4rem;
}

.hero__title em {
  font-style: italic;
  color: var(--pink);
}

.hero__subtitle {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #5a2e45;
  margin-bottom: 2.2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(232, 23, 138, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulseGlow 3s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  from {
    transform: scale(0.9);
    opacity: 0.6;
  }

  to {
    transform: scale(1.15);
    opacity: 1;
  }
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.35;
  transition: opacity 1s ease;
  pointer-events: none;
}

.hero__img {
  width: min(480px, 48vw);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  position: relative;
  z-index: 2;
  animation: floatImg 5s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(232, 23, 138, 0.22));
  transition: filter 0.4s ease, transform 0.4s ease;
}

.hero__img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 20px rgba(232, 23, 138, 0.7)) drop-shadow(0 0 50px rgba(232, 23, 138, 0.5)) drop-shadow(0 0 80px rgba(232, 23, 138, 0.3));
}

@keyframes floatImg {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 23, 138, 0.2);
  z-index: 1;
}

.hero__ring--1 {
  width: 380px;
  height: 380px;
  animation: spinRing 18s linear infinite;
}

.hero__ring--2 {
  width: 520px;
  height: 520px;
  border-style: dashed;
  opacity: 0.4;
  animation: spinRing 28s linear infinite reverse;
}

@keyframes spinRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero__tag {
  position: absolute;
  bottom: 3rem;
  left: 2.5rem;
  z-index: 10;
  background: #fff;
  border: 1px solid rgba(232, 23, 138, 0.18);
  border-radius: 16px;
  padding: 0.9rem 1.3rem;
  box-shadow: 0 8px 30px rgba(232, 23, 138, 0.12);
  animation: slideUpTag 0.8s ease 0.5s both;
}

@keyframes slideUpTag {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__tag-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__tag-icon {
  font-size: 1.3rem;
}

.hero__tag-title {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--black);
}

.hero__tag-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--pink);
  font-weight: 500;
}

/* ======= MARQUEE STRIP ======= */
.strip {
  overflow: hidden;
  background: var(--pink);
  padding: 0.9rem 0;
}

.strip__track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.strip__track .sep {
  font-size: 0.6rem;
  opacity: 0.7;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ======= PRODUITS ======= */
.produits {
  padding: 8rem 5% 4rem;
  content-visibility: auto;
  contain-intrinsic-size: 800px;
  background: var(--pink-pale);
}

.produits__header {
  text-align: center;
  margin-bottom: 4rem;
}

.produits__showcase {
  display: flex;
  justify-content: center;
}

.produits__card--main {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: #fff;
  border-radius: 32px;
  padding: 3rem;
  box-shadow: var(--shadow);
  max-width: 960px;
  width: 100%;
}

.produits__img-wrap {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  aspect-ratio: 450 / 550;
}

.produits__img {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.produits__img:hover {
  transform: scale(1.04) rotate(-1deg);
  /* Interactive Neon Glow Effect */
  filter: drop-shadow(0 0 20px rgba(232, 23, 138, 0.6)) drop-shadow(0 0 40px rgba(232, 23, 138, 0.4)) drop-shadow(0 0 60px rgba(232, 23, 138, 0.2));
}

.produits__badge-img {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--pink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(232, 23, 138, 0.4);
}

.produits__info {
  flex: 1;
}

.produits__name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}

.produits__desc {
  font-size: 1rem;
  line-height: 1.75;
  color: #5a2e45;
  margin-bottom: 1.8rem;
}

.produits__features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.produits__feat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
}

.produits__feat-icon {
  font-size: 1.2rem;
}

/* ======= SAVEURS ======= */
.saveurs {
  padding: 6rem 5%;
  background: var(--grey);
  content-visibility: auto;
  contain-intrinsic-size: 600px;
}

.saveurs__header {
  text-align: center;
  margin-bottom: 4rem;
}

.saveurs__split {
  display: flex;
  align-items: center;
  gap: 5rem;
  max-width: 1050px;
  margin: 0 auto;
}

.saveurs__visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.saveurs__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(232, 23, 138, 0.14) 0%, transparent 70%);
  border-radius: 50%;
}

.saveurs__img {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 50px rgba(232, 23, 138, 0.18));
  animation: floatImg 4.5s ease-in-out infinite;
}

.saveurs__details {
  flex: 1;
}

.saveurs__item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.saveurs__dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: var(--pink);
  border-radius: 50%;
  margin-top: 5px;
}

.saveurs__item h4 {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--black);
  margin-bottom: 0.3rem;
}

.saveurs__item p {
  font-size: 0.95rem;
  color: #6b4557;
  line-height: 1.65;
}

/* ======= OTHER PRODUCTS MARQUEE ======= */
.other-products {
  background: var(--pink-pale);
  padding: 6rem 0 8rem;
  overflow: hidden;
  border-top: 2px solid rgba(232, 23, 138, 0.1);
}

.products-marquee {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  position: relative;
  display: flex;
}

/* Overlay masks for fade effect on edges */
.products-marquee::before,
.products-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15vw;
  z-index: 2;
  pointer-events: none;
}

.products-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--pink-pale), transparent);
}

.products-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--pink-pale), transparent);
}

.products-marquee__track {
  display: flex;
  gap: 2.5rem;
  padding: 0 1.25rem;
  animation: scrollMarquee 25s linear infinite;
  will-change: transform;
}

.products-marquee__track:hover {
  animation-play-state: paused;
}

.products-marquee__group {
  display: flex;
  gap: 2.5rem;
  flex-shrink: 0;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 1.25rem));
  }
}

/* Marquee Card - Cartoon/Brutalist Style */
.marquee-card {
  background: #fff;
  border: 3px solid var(--black);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s;
  box-shadow: 6px 6px 0 var(--black);
  cursor: pointer;
}

.marquee-card:hover {
  transform: translateY(-8px) rotate(-2deg);
  box-shadow: 10px 14px 0 var(--pink);
  border-color: var(--pink);
}

.marquee-card__img-ph {
  width: 120px;
  height: 120px;
  aspect-ratio: 1 / 1;
  background: transparent;
  border: 3px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: inset -4px -4px 0 rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, border-color 0.4s;
  overflow: hidden;
  /* Ensures the image doesn't bleed out of the border */
}

.marquee-card:hover .marquee-card__img-ph {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--pink);
}

.marquee-card__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--black);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.marquee-card__desc {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(26, 10, 20, 0.7);
  line-height: 1.4;
}

/* ======= STATS ======= */
.stats {
  padding: 6rem 5%;
  background: var(--dark);
  color: var(--white);
  content-visibility: auto;
  contain-intrinsic-size: 200px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stats__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats__plus {
  font-size: 1.8rem;
}

.stats__label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ======= TRACKING BADGE ======= */
.track-badge {
  display: none;
  /* Hidden by default */
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grey-text);
  position: relative;
}

.track-badge.active {
  display: inline-block;
}

/* Status Colors */
.track-badge.status-new {
  background: #60a5fa;
}

/* Blue */
.track-badge.status-processing {
  background: #fbbf24;
}

/* Amber */
.track-badge.status-completed {
  background: #34d399;
}

/* Green */
.track-badge.status-cancelled {
  background: #f87171;
}

/* Red */

/* Pulsing effect for active tracking */
.track-badge.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.6;
  animation: pulse-badge 1.5s infinite;
}

@keyframes pulse-badge {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.track-badge.status-new {
  background: hsla(327, 82%, 50%, 0.15);
  color: var(--pink);
  border-radius: 50px;
  padding: 2px 8px;
  width: auto;
  height: auto;
}

.track-badge.status-processing {
  background: rgba(245, 158, 11, 0.15);
  color: #F59E0B;
  border-radius: 50px;
  padding: 2px 8px;
  width: auto;
  height: auto;
}

.track-badge.status-completed {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border-radius: 50px;
  padding: 2px 8px;
  width: auto;
  height: auto;
}

/* ======= ORDER TRACKING PROGRESS STEPPER ======= */
.track-stepper {
  display: flex;
  justify-content: space-between;
  margin: 2.5rem 0 1.5rem;
  position: relative;
  padding: 0 10px;
}

.track-stepper::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #f0f0f0;
  z-index: 1;
}

.step-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.step-dot {
  width: 32px;
  height: 32px;
  background: #fff;
  border: 2px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #aaa;
  transition: all 0.4s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-item.active .step-dot {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  box-shadow: 0 0 20px hsla(327, 82%, 50%, 0.4);
  transform: scale(1.15);
}

.step-item.active .step-label {
  color: var(--pink);
}

.step-item.completed .step-dot {
  background: #10B981;
  border-color: #10B981;
  color: #fff;
}

.step-item.completed .step-label {
  color: var(--black);
}

.track-status-header {
  padding: 1.5rem;
  border-radius: 20px;
  background: var(--pink-pale);
  border: 1px solid rgba(232, 23, 138, 0.1);
  margin-bottom: 2rem;
  text-align: center;
  transition: all 0.5s ease;
}


/* ======= CONTACT ======= */
.contact {
  padding: 8rem 5%;
  content-visibility: auto;
  contain-intrinsic-size: 500px;
  background: linear-gradient(135deg, var(--pink) 0%, #b0105d 100%);
  text-align: center;
}

.contact__inner {
  max-width: 600px;
  margin: 0 auto;
}

/* Attractive Text Shimmer for Contact Title */
@keyframes textShimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.contact-title-animated {
  background: linear-gradient(90deg,
      #ffffff 0%,
      #ffffff 40%,
      #ffcce6 50%,
      #ffffff 60%,
      #ffffff 100%);
  background-size: 200% auto;
  color: transparent !important;
  -webkit-background-clip: text;
  background-clip: text;
  animation: textShimmer 4s linear infinite;
  display: inline-block;
}

.contact-title-animated em {
  -webkit-text-fill-color: transparent;
  color: transparent !important;
}

/* Attractive Pulse Animation for CTA */
@keyframes pulseContactBtn {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6), 0 8px 32px rgba(0, 0, 0, 0.18);
    transform: scale(1);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0), 0 8px 32px rgba(0, 0, 0, 0.18);
    transform: scale(1.03);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 8px 32px rgba(0, 0, 0, 0.18);
    transform: scale(1);
  }
}

#contact-whatsapp-btn {
  animation: pulseContactBtn 2s infinite cubic-bezier(0.66, 0, 0, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#contact-whatsapp-btn:hover {
  animation: none;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.35);
}

/* ======= FOOTER ======= */
.footer {
  background: var(--black);
  padding: 2rem 2.5rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer__brand {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ======= CUSTOM ORDER MODAL ======= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 10, 20, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--white);
  width: 90%;
  max-width: 500px;
  border-radius: 32px;
  padding: 2.5rem;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--grey);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
}

.modal-close:hover {
  background: var(--black);
  color: var(--white);
}

.modal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.modal-desc {
  color: rgba(26, 10, 20, 0.6);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}

.product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--grey);
  border-radius: 16px;
  margin-bottom: 0.75rem;
  border: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.product-item.selected {
  border-color: var(--pink);
  background: var(--pink-pale);
}

.product-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 500;
  color: var(--black);
  flex: 1;
  width: 100%;
}

.prod-name {
  flex: 1;
}

.prod-price {
  font-weight: 700;
  color: var(--pink);
  font-size: 0.95rem;
  white-space: nowrap;
}

.product-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  height: 24px;
  width: 24px;
  background-color: var(--white);
  border: 2px solid rgba(26, 10, 20, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.product-checkbox:hover input~.checkmark {
  border-color: var(--pink);
}

.product-checkbox input:checked~.checkmark {
  background-color: var(--pink);
  border-color: var(--pink);
}

.checkmark:after {
  content: "";
  display: none;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.product-checkbox input:checked~.checkmark:after {
  display: block;
}

.prod-qty {
  width: 60px;
  padding: 8px;
  border: 2px solid rgba(26, 10, 20, 0.1);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  background: var(--white);
  transition: border-color 0.3s;
  outline: none;
}

.prod-qty:focus {
  border-color: var(--pink);
}

.prod-qty:disabled {
  opacity: 0.5;
  background: rgba(26, 10, 20, 0.05);
  cursor: not-allowed;
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(26, 10, 20, 0.1);
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--black);
  background: var(--grey);
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}

.form-input:focus {
  border-color: var(--pink);
  background: var(--white);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-error {
  color: #ef4444;
  /* red-500 */
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
  display: none;
}

/* Scrollbar for modal */
.modal-box::-webkit-scrollbar {
  width: 8px;
}

.modal-box::-webkit-scrollbar-track {
  background: transparent;
}

.modal-box::-webkit-scrollbar-thumb {
  background: rgba(26, 10, 20, 0.2);
  border-radius: 4px;
}

.modal-box::-webkit-scrollbar-thumb:hover {
  background: rgba(26, 10, 20, 0.4);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 900px) {
  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: block;
  }

  .hero {
    flex-direction: column;
    padding: 6.5rem 1.5rem 3rem;
    text-align: center;
    gap: 3rem;
  }

  .hero__visual {
    width: 100%;
  }

  .hero__img {
    width: min(300px, 80vw);
  }

  .hero__ring--1 {
    width: 280px;
    height: 280px;
  }

  .hero__ring--2 {
    width: 380px;
    height: 380px;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__tag {
    left: 50%;
    transform: translateX(-50%);
    bottom: -1rem;
    white-space: nowrap;
  }

  .produits__card--main {
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
    text-align: center;
  }

  .produits__feat {
    justify-content: center;
  }

  .saveurs__split {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }

  .saveurs__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .saveurs__dot {
    width: 12px;
    height: 12px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .stats__num {
    font-size: 2.5rem;
  }
}

/* Custom Toast Notification */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--black);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10001;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.active {
  transform: translateX(-50%) translateY(0);
}

.toast--error {
  border-left: 4px solid #ef4444;
}

.toast--success {
  border-left: 4px solid #10b981;
}