/* ===========================
   DOUCE BOUILLOTTE — main.css
   =========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

:root {
  --pink: #D81882;
  --pink-d: #B5146D;
  --pink-light: #FCE4F3;
  --pink-pale: #FEF4FB;
  --pink-mid: #F2ABDA;
  --black: #181018;
  --gray1: #3D2E3A;
  --gray2: #7A6575;
  --gray3: #B8A8B3;
  --gray4: #E8DDE5;
  --gray5: #F5F0F4;
  --white: #fff;
  --gold: #F0C040;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--pink);
  color: rgba(255, 255, 255, .9);
  text-align: center;
  padding: 10px 20px;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar strong {
  color: #fff;
  font-weight: 700;
}

.topbar .sep {
  opacity: .35;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray4);
  transition: box-shadow .3s;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(216, 24, 130, .08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}

.logo-main {
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.logo-main strong {
  color: var(--pink);
}

.logo-main em {
  font-style: normal;
  color: var(--gray2);
}

.logo-sub {
  font-size: 9.5px;
  font-weight: 500;
  color: var(--gray3);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray1);
  padding: 7px 13px;
  border-radius: 8px;
  transition: color .18s, background .18s;
}

.nav-menu a:hover {
  color: var(--pink);
  background: var(--pink-light);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.nav-shop-btn {
  font-size: 13.5px;
}

/* ── HERO ── */
.hero {
  background: var(--pink-pale);
  padding: 60px 0 0;
  padding-top: 2%;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(216, 24, 130, .07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
}

.hero-text {
  padding-bottom: 80px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: #fff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.pulse {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, .65);
  border-radius: 50%;
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.07;
  color: var(--black);
  margin-bottom: 20px;
}

.hero h1 em {
  color: var(--pink);
  font-style: italic;
  font-weight: 400;
}

.hero-text p {
  font-size: 16px;
  color: var(--gray1);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-main {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  padding: 13px 28px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s, transform .2s;
}

.btn-main:hover {
  background: var(--pink-d);
  transform: translateY(-2px);
}

.btn-soft {
  display: inline-block;
  background: transparent;
  color: var(--black);
  padding: 12px 24px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid var(--gray4);
  transition: border-color .2s, color .2s;
}

.btn-soft:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--pink-mid);
}

.trust-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}

.trust-item span {
  font-size: 11px;
  color: var(--gray2);
  margin-top: 3px;
  display: block;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--pink-mid);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  height: 540px;
}

.hero-card {
  position: absolute;
  top: 52px;
  left: 0;
  z-index: 3;
  background: var(--white);
  border-radius: 20px;
  padding: 16px 20px;
  width: 185px;
  box-shadow: 0 6px 28px rgba(24, 16, 24, .10);
  border: 1px solid rgba(216, 24, 130, .08);
}

.hero-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray2);
  margin-bottom: 4px;
}

.hero-card-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 4px;
}

.hero-card-stars {
  font-size: 12px;
  color: var(--pink);
  font-weight: 600;
}

.hero-card-stars span {
  color: var(--gray2);
  font-weight: 400;
}

.hero-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90%;
  height: 490px;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
}

.hero-img-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(216, 24, 130, .35) 0%, transparent 55%);
}

.hero-origin {
  position: absolute;
  bottom: 24px;
  left: 48px;
  z-index: 4;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  box-shadow: 0 4px 18px rgba(216, 24, 130, .12);
  border: 1px solid rgba(216, 24, 130, .1);
  white-space: nowrap;
}

.hero-origin strong {
  color: var(--pink);
}

/* ── USP ── */
.usp-bar {
  background: var(--white);
  border-top: 1px solid var(--gray4);
  border-bottom: 1px solid var(--gray4);
}

.usp-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.usp-box {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  border-right: 1px solid var(--gray4);
  transition: background .2s;
}

.usp-box:last-child {
  border-right: none;
}

.usp-box:hover {
  background: var(--pink-pale);
}

.usp-box > span {
  width: 52px;
  height: 52px;
  background: var(--pink-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.usp-box strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.usp-box p {
  font-size: 12px;
  color: var(--gray2);
  line-height: 1.5;
}

/* ── SECTION HEADER ── */
.section-head {
  margin-bottom: 48px;
  padding-top: 0%;
}

.section-head.center {
  text-align: center;
}

.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--black);
  line-height: 1.1;
}

.section-head h2 em {
  color: var(--pink);
  font-style: italic;
  font-weight: 400;
}

.section-sub {
  font-size: 15px;
  color: var(--gray2);
  line-height: 1.7;
  margin-top: 12px;
}

.section-head.center .section-sub {
  max-width: 480px;
  margin: 12px auto 0;
}

/* ── PRODUCTS ── */
.products {
  padding: 60px 0;
  background: var(--white);
  padding-top: 2%;
  padding-bottom: 2%;
}

.products-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.see-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--pink);
  border-bottom: 1.5px solid var(--pink-mid);
  padding-bottom: 2px;
  white-space: nowrap;
}

.see-all:hover {
  border-color: var(--pink);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.prod-card {
  border: 1px solid var(--gray4);
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  transition: transform .28s var(--ease), box-shadow .28s, border-color .28s;
}

.prod-card:hover {
  box-shadow: 0 16px 48px rgba(216, 24, 130, .1);
  border-color: var(--pink-mid);
}

.prod-card:hover .prod-name {
  color: var(--pink);
}

.prod-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  isolation: isolate;
}

.prod-img-1 { background: var(--pink-light); }
.prod-img-2 { background: #FDE8F5; }
.prod-img-3 { background: var(--pink-light); }

.prod-img-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform .45s var(--ease);
}

.prod-img-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  transition: transform .45s var(--ease);
}

.prod-card:hover .prod-img-content img {
  filter: brightness(1.04) saturate(1.08);
  transition: filter .35s ease;
}

.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
}

.badge-pink { background: #e8187a; }
.badge-green { background: #3aaa50; }

.prod-body {
  padding: 18px;
}

.prod-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray2);
  margin-bottom: 6px;
}

.prod-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 6px;
  transition: color .2s;
}

.prod-desc {
  font-size: 13px;
  color: var(--gray2);
  line-height: 1.55;
  margin-bottom: 12px;
}

.prod-stars {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.prod-stars em {
  font-style: normal;
  font-size: 12px;
  color: var(--gray2);
}

.prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--gray4);
}

.prod-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-old {
  font-size: 13px;
  color: var(--gray3);
  text-decoration: line-through;
}

.price {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.add-btn {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}

.add-btn:hover {
  background: var(--pink-d);
  transform: translateY(-1px);
}

/* ── STORY ── */
.story {
  padding: 70px 0;
  background: var(--pink-pale);
  border-top: 1px solid var(--pink-mid);
  border-bottom: 1px solid var(--pink-mid);
  overflow: hidden;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-img {
  width: 100%;
  height: 500px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.story-img-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(216, 24, 130, .28) 100%);
  pointer-events: none;
}

.story-year {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 2px 10px rgba(24, 16, 24, .07);
}

.story-year strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}

.story-year span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray2);
  margin-top: 2px;
  display: block;
}

.story-deco {
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink-mid) 100%);
  border-radius: 20px;
  border: 5px solid var(--pink-pale);
  z-index: 1;
}

.story-text h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: var(--black);
  line-height: 1.12;
  margin-bottom: 18px;
}

.story-text h2 em {
  color: var(--pink);
  font-style: italic;
  font-weight: 400;
}

.story-text p {
  font-size: 15.5px;
  color: var(--gray1);
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
}

.feat {
  background: var(--white);
  border: 1px solid var(--pink-light);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: border-color .2s, box-shadow .2s;
}

.feat:hover {
  border-color: var(--pink-mid);
  box-shadow: 0 2px 10px rgba(24, 16, 24, .07);
}

.feat-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.feat strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 3px;
}

.feat span {
  font-size: 12px;
  color: var(--gray2);
  line-height: 1.4;
}

/* ── REVIEWS ── */
.reviews {
  padding: 60px 0;
  background: var(--white);
}

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.rev-card {
  background: var(--gray5);
  border: 1px solid var(--gray4);
  border-radius: 20px;
  padding: 26px;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}

.rev-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(216, 24, 130, .07);
  border-color: var(--pink-mid);
}

.rev-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.rev-card > p {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--black);
  line-height: 1.65;
  margin-bottom: 18px;
}

.rev-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--gray4);
}

.rev-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.av1 { background: var(--pink-light); color: var(--pink); }
.av2 { background: #FDE8F5; color: var(--pink-d); }
.av3 { background: #F3EEF9; color: #9050C0; }

.rev-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}

.rev-product {
  font-size: 11.5px;
  color: var(--gray2);
  margin-top: 1px;
}

.verified {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 600;
  color: #3aaa50;
  background: #e8f8eb;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── FAQ ── */
.faq {
  padding: 60px 0;
  background: var(--gray5);
  border-top: 1px solid var(--gray4);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  border-top: 1px solid var(--gray4);
}

.faq-item {
  border-bottom: 1px solid var(--gray4);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  transition: color .18s;
}

.faq-q:hover {
  color: var(--pink);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gray4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--pink);
  flex-shrink: 0;
  transition: transform .3s var(--ease), background .2s, border-color .2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.faq-a {
  font-size: 14.5px;
  color: var(--gray2);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  padding-right: 48px;
  transition: max-height .4s var(--ease), padding .3s;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}



/* ── FOOTER ── */
.footer {
  background: #140C12;
  border-top: 3px solid var(--pink);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-main {
  font-size: 18px;
  color: rgba(255, 255, 255, .88);
}

.footer-brand .logo-main strong { color: var(--pink); }
.footer-brand .logo-main em { color: rgba(255, 255, 255, .35); }
.footer-brand .logo-sub { color: rgba(255, 255, 255, .22); }

.footer-brand > p {
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 240px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }

.footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  transition: color .18s;
}

.footer-col a:hover { color: rgba(255, 255, 255, .82); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom > p {
  font-size: 12px;
  color: rgba(255, 255, 255, .22);
}

.footer-badges {
  display: flex;
  gap: 8px;
}

.footer-badges span {
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .3);
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, .07);
}

.footer-badges span:hover { color: rgba(255, 255, 255, .6); }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.on {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .nav-menu { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 36px; }
  .hero-text { padding-bottom: 52px; }
  .usp-modern { grid-template-columns: 1fr 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-img { height: 280px; }
  .story-deco { display: none; }
  .story-feats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .nl-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .products-top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-trust { flex-wrap: wrap; gap: 12px; }
  .trust-divider { display: none; }
  .usp-modern { grid-template-columns: 1fr; }
  .add-btn { width: 100%; text-align: center; }
}

/* ── MODALE PRODUIT ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 16, 24, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  box-shadow: 0 32px 80px rgba(24, 16, 24, .25);
  transform: translateY(24px) scale(.97);
  transition: transform .35s var(--ease);
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-img {
  border-radius: 24px 0 0 24px;
  min-height: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.modal-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  background: var(--pink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 6px;
  letter-spacing: .04em;
}

.modal-badge:empty { display: none; }

.modal-info {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: var(--gray5);
  border: none;
  border-radius: 50%;
  font-size: 15px;
  color: var(--gray2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .18s, color .18s, transform .18s;
}

.modal-close:hover {
  background: var(--pink-light);
  color: var(--pink);
  transform: rotate(90deg);
}

.modal-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray2);
}

.modal-name {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}

.modal-stars {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 1px;
}

.modal-stars em {
  font-style: normal;
  font-size: 12px;
  color: var(--gray2);
}

.modal-desc {
  font-size: 14.5px;
  color: var(--gray1);
  line-height: 1.75;
}

.modal-details {
  font-size: 12.5px;
  color: var(--gray2);
  background: var(--gray5);
  padding: 10px 14px;
  border-radius: 10px;
  line-height: 1.6;
}

.modal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--gray4);
  flex-wrap: wrap;
}

.modal-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.modal-pricing .price {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.modal-pricing .price-old {
  font-size: 14px;
  color: var(--gray3);
  text-decoration: line-through;
}

.modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-add {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  text-decoration: none;
}

.modal-add:hover {
  background: var(--pink-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(216, 24, 130, .28);
}

.modal-reassurance {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.modal-reassurance span {
  font-size: 11.5px;
  color: var(--gray2);
  font-weight: 500;
}

/* Modal Gallery */
.modal-gallery {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-main {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  padding: 20px;
  transition: opacity .22s ease;
}

.gallery-main.fade img { opacity: 0; }

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .9);
  border: none;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(24, 16, 24, .12);
  transition: background .18s, transform .18s;
}

.gallery-arrow:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }
.gallery-arrow.hidden { display: none; }

.gallery-thumbs {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  justify-content: center;
  background: rgba(255, 255, 255, .5);
  flex-shrink: 0;
  flex-wrap: wrap;
  min-height: 0;
}

.gallery-thumbs:empty { display: none; }

.gallery-thumb {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .18s, transform .18s;
  background: var(--white);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.gallery-thumb:hover { transform: scale(1.06); }
.gallery-thumb.active { border-color: var(--pink); }

.modal-emoji {
  font-size: 110px;
  opacity: .22;
  user-select: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-emoji img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 1;
}

/* Responsive modale */
@media (max-width: 640px) {
  .modal-box { grid-template-columns: 1fr; max-height: 95vh; }
  .modal-img { border-radius: 24px 24px 0 0; min-height: 220px; }
  .modal-info { padding: 24px 20px; }
  .modal-foot { flex-direction: column; align-items: flex-start; }
  .modal-actions { width: 100%; }
  .modal-add { flex: 1; text-align: center; }
  .gallery-thumbs { padding: 8px; }
  .gallery-thumb { width: 40px; height: 40px; }
}

/* ── CONTACT ── */
.contact {
  padding: 70px 0;
  background: var(--white);
  border-top: 1px solid var(--gray4);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  display: contents;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--gray5);
  border: 1px solid var(--gray4);
  border-radius: 16px;
  transition: border-color .2s, box-shadow .2s;
}

.contact-info-item:hover {
  border-color: var(--pink-mid);
  box-shadow: 0 2px 12px rgba(216, 24, 130, .07);
}

.contact-info-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-info-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info-item strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--black);
}

.contact-info-item a {
  font-size: 13.5px;
  color: var(--pink);
  font-weight: 500;
}

.contact-info-item a:hover { text-decoration: underline; }

.contact-info-item span {
  font-size: 12px;
  color: var(--gray2);
}

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; gap: 14px; }
}

/* ── SOCIALS FOOTER ── */
.social-links {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-links li a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  transition: .3s;
}

.social-links li:nth-child(1) a { background: #e6002e; }
.social-links li:nth-child(2) a { background: #1877f2; }
.social-links li:nth-child(3) a { background: #c13584; }

.social-links li a:hover { transform: translateY(-3px); }