:root {
  --color-blush: #f9b6c8;
  --color-rose-quartz: #f4a5b5;
  --color-cream: #fff6f8;
  --color-gold: #f3d6b0;
  --color-text: #4e3942;
  --color-muted: #7a5d65;
  --shadow-soft: 0 24px 60px -28px rgba(237, 162, 190, 0.65);
  --shadow-card: 0 18px 36px -24px rgba(150, 109, 126, 0.35);
  --shadow-strong: 0 30px 70px -40px rgba(140, 77, 99, 0.45);
  --gradient-hero: linear-gradient(135deg, #fde6ec 0%, #fff5f8 55%, #ffe8f1 100%);
  --gradient-blush: linear-gradient(130deg, #f9b6c8 0%, #f4a5b5 50%, #fbd5e4 100%);
  --gradient-gold: linear-gradient(125deg, #f7e7c9, #f3d6b0);
  --nav-bg: linear-gradient(120deg, rgba(255, 245, 247, 0.8), rgba(254, 231, 239, 0.75));
  --border-soft: rgba(244, 165, 181, 0.35);
  --petal: linear-gradient(160deg, rgba(249, 182, 200, 0.9), rgba(244, 165, 181, 0.4));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--color-text);
  background: var(--gradient-hero);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

.cursor-glow {
  position: fixed;
  width: 70px;
  height: 70px;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(249, 182, 200, 0.7), rgba(249, 182, 200, 0));
  mix-blend-mode: screen;
  transition: transform 0.2s ease;
  transform: translate3d(-50%, -50%, 0);
  z-index: 1000;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 18px 40px -32px rgba(150, 85, 107, 0.55);
  border-color: var(--border-soft);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(244, 165, 181, 0.4);
  border-radius: 14px;
  width: 48px;
  height: 48px;
  padding: 12px 10px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(120deg, #d79ba9, #f4a5b5);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 26px -18px rgba(140, 77, 99, 0.5);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-open {
  overflow: hidden;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(252, 228, 235, 0.85);
  backdrop-filter: blur(18px);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__inner {
  width: min(480px, 90%);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  border: 1px solid rgba(244, 165, 181, 0.32);
  box-shadow: var(--shadow-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateY(-20px);
  transition: transform 0.4s ease;
}

.mobile-menu.open .mobile-menu__inner {
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-muted);
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.mobile-icons {
  display: flex;
  gap: 16px;
}

.mobile-icons a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 165, 181, 0.35);
  background: rgba(255, 255, 255, 0.75);
}

.mobile-icons svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--color-rose-quartz);
  stroke-width: 1.5;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 600;
  color: transparent;
  background: linear-gradient(130deg, #d79ba9, #f4a5b5, #f3d6b0);
  background-clip: text;
  text-transform: none;
  letter-spacing: 0.12em;
  position: relative;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 2vw, 32px);
  font-weight: 500;
  color: var(--color-muted);
}

.nav-links a {
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--gradient-blush);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(249, 182, 200, 0.45);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--color-rose-quartz);
  stroke-width: 1.5;
}

.icon-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 24px -12px rgba(237, 162, 190, 0.65);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease,
    color 0.3s ease;
}

.btn-gradient {
  background: var(--gradient-blush);
  color: var(--color-text);
  box-shadow: 0 16px 30px -18px rgba(244, 165, 181, 0.9);
}

.btn-gradient:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 40px -18px rgba(244, 165, 181, 0.75);
}

.btn-outline {
  border: 1px solid rgba(244, 165, 181, 0.35);
  background: rgba(255, 255, 255, 0.4);
  color: var(--color-muted);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-text);
}

main {
  position: relative;
  isolation: isolate;
}

section {
  padding: clamp(80px, 10vw, 120px) 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(110px, 12vw, 140px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(249, 182, 200, 0.15), transparent 55%),
    radial-gradient(circle at 90% 20%, rgba(244, 165, 181, 0.18), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(255, 246, 248, 0.5), transparent 60%);
  z-index: -2;
}

.hero .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 4.8vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text p {
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 36px;
}

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

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.hero-figure {
  position: relative;
  width: min(480px, 100%);
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-fan {
  position: absolute;
  inset: auto 0 -50px;
  margin-inline: auto;
  display: inline-flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.82);
  padding: 14px 22px;
  border-radius: 999px;
  color: var(--color-muted);
  font-weight: 500;
  box-shadow: 0 18px 40px -28px rgba(140, 77, 99, 0.45);
}

.product-fan span::before {
  content: "•";
  margin-right: 6px;
  color: var(--color-rose-quartz);
}

.petal {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--petal);
  border-radius: 62% 38% 60% 40%;
  filter: blur(0.5px);
  animation: drift 12s ease-in-out infinite;
  opacity: 0.6;
}

.petal-1 {
  top: -20px;
  right: 10%;
  animation-delay: 0s;
}

.petal-2 {
  top: 20%;
  left: -30px;
  animation-delay: 2s;
  transform: rotate(20deg);
}

.petal-3 {
  bottom: -50px;
  right: 0;
  animation-delay: 4s;
  transform: rotate(-40deg);
}

.petal-4 {
  bottom: 15%;
  left: 15%;
  animation-delay: 6s;
  transform: rotate(50deg);
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.45;
  }
  50% {
    transform: translateY(30px) rotate(20deg) scale(1.08);
    opacity: 0.8;
  }
}

.section-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3.8vw, 2.8rem);
  margin-bottom: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(122, 93, 101, 0.65);
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: rgba(244, 165, 181, 0.4);
}

.collections {
  background: rgba(255, 255, 255, 0.8);
}

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

.lux-card {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  border: 1px solid rgba(243, 214, 176, 0.45);
  box-shadow: var(--shadow-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.lux-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 52px -34px rgba(140, 77, 99, 0.55);
}

.lux-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(249, 182, 200, 0.22), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.lux-card:hover::after {
  opacity: 1;
}

.card-top {
  height: 300px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.card-top[data-modal-trigger] {
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.card-top[data-modal-trigger]:hover {
  transform: scale(1.05);
}

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

.card-top[data-hover-gallery] {
  position: relative;
}

.card-top[data-hover-gallery] .gallery-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2.5ms ease-in-out;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.card-top[data-hover-gallery] .gallery-img:first-child {
  position: relative;
  opacity: 1;
}

.card-top[data-hover-gallery] .gallery-img.active {
  opacity: 1;
  z-index: 2;
  position: absolute;
}

.card-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.4), transparent 60%);
}

.card-top.bloom {
  background-image: url("https://images.unsplash.com/photo-1522338242992-e1a54906a8da?auto=format&fit=crop&w=900&q=80");
}

.card-top.velvet {
  background-image: url("https://images.unsplash.com/photo-1514996937319-344454492b37?auto=format&fit=crop&w=900&q=80");
}

.card-top.botanics {
  background-image: url("https://images.unsplash.com/photo-1583241800694-8c25c8324233?auto=format&fit=crop&w=900&q=80");
}

.card-top.glow {
  background-image: url("https://images.unsplash.com/photo-1542831371-29b0f74f9713?auto=format&fit=crop&w=900&q=80");
}

.lux-card h3 {
  font-family: "Playfair Display", serif;
  margin: 0;
  font-size: 1.4rem;
}

.lux-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.card-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.price-original {
  color: var(--color-muted);
  text-decoration: line-through;
  font-size: 0.95rem;
}

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

.features {
  background: linear-gradient(180deg, rgba(249, 182, 200, 0.28), rgba(255, 246, 248, 0.7));
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/soft-wallpaper.png");
  opacity: 0.35;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 26px);
  position: relative;
  z-index: 1;
}

.feature-card {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  border: 1px solid rgba(244, 165, 181, 0.32);
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -30px rgba(140, 77, 99, 0.48);
}

.feature-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.showcase {
  background: rgba(255, 255, 255, 0.94);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 26px);
}

.product-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(244, 165, 181, 0.22);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 26px 52px -32px rgba(140, 77, 99, 0.48);
}

.product-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(249, 182, 200, 0.2), transparent 55%);
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

.product-info p {
  margin: 0;
  color: var(--color-muted);
}

.product-roseglow {
  background-image: url("https://images.unsplash.com/photo-1585675100414-9895e24350c8?auto=format&fit=crop&w=900&q=80");
}

.product-liptint {
  background-image: url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?auto=format&fit=crop&w=900&q=80");
}

.product-mask {
  background-image: url("https://images.unsplash.com/photo-1589367927213-3ae1181c9684?auto=format&fit=crop&w=900&q=80");
}

.product-mist {
  background-image: url("https://images.unsplash.com/photo-1505576399279-565b52d4ac71?auto=format&fit=crop&w=900&q=80");
}

.about {
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
}

.about h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3.4vw, 2.8rem);
  margin-bottom: 16px;
}

.about p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.newsletter {
  background: linear-gradient(180deg, rgba(244, 165, 181, 0.18), rgba(255, 246, 248, 0.65));
}

.newsletter-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  border: 1px solid rgba(244, 165, 181, 0.28);
  box-shadow: var(--shadow-card);
  padding: clamp(32px, 8vw, 48px);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.newsletter-card header {
  margin-bottom: 16px;
}

.newsletter-card h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin-bottom: 8px;
}

.newsletter-card p {
  color: var(--color-muted);
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.newsletter-form input {
  flex: 1 1 260px;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(244, 165, 181, 0.35);
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(249, 182, 200, 0.75);
  box-shadow: 0 0 0 4px rgba(249, 182, 200, 0.15);
}

.footer {
  background: #f9cfdc;
  padding: clamp(48px, 6vw, 70px) 0 32px;
}

.footer .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 40px);
  color: var(--color-muted);
}

.footer-column h4 {
  font-family: "Playfair Display", serif;
  margin-bottom: 12px;
  color: var(--color-text);
}

.footer-column p {
  margin: 0;
  line-height: 1.7;
}

.footer-column a {
  display: block;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--color-text);
}

.footer-note {
  grid-column: 1 / -1;
  text-align: center;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
  }

  .card-grid,
  .feature-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lux-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 900px) {
  .hero-figure {
    max-width: 420px;
    margin: 0 auto;
  }

  .product-fan {
    position: relative;
    inset: auto;
    margin: 24px auto 0;
  }
}

@media (max-width: 780px) {
  .navbar .container {
    gap: 20px;
  }

  .nav-actions {
    display: none;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .hero-text p {
    margin: 0 auto 36px;
  }
}

@media (max-width: 640px) {
  section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 120px;
  }

  .hero .container {
    gap: 32px;
  }

  .hero-text h1 {
    font-size: clamp(2.3rem, 9vw, 2.8rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .product-fan {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .product-fan span::before {
    display: none;
  }

  .card-grid,
  .feature-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

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

  .footer-column a {
    margin-bottom: 4px;
  }

  .mobile-menu {
    padding-top: 90px;
  }

  .mobile-menu__inner {
    padding: 28px 22px;
  }
}

/* Image Modal Styles */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.image-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(78, 57, 66, 0.85);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 32px;
  max-width: min(1000px, 95vw);
  max-height: 85vh;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(78, 57, 66, 0.6);
  z-index: 1;
  padding: 0;
  margin: 20px;
  transform: scale(0.9);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
}

.image-modal[aria-hidden="false"] .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(244, 165, 181, 0.35);
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 8px 20px -8px rgba(244, 165, 181, 0.5);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-text);
}

.modal-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  margin: 0;
  padding: 24px 32px 20px;
  text-align: center;
  color: var(--color-text);
  border-bottom: 1px solid rgba(244, 165, 181, 0.2);
}

.modal-body {
  display: flex;
  flex: 1;
  overflow: hidden;
  gap: 0;
}

.modal-gallery {
  display: flex;
  flex-direction: row;
  gap: 16px;
  overflow-y: hidden;
  overflow-x: auto;
  padding: 24px;
  width: 50%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-right: 1px solid rgba(244, 165, 181, 0.2);
}

.modal-gallery::-webkit-scrollbar {
  height: 8px;
}

.modal-gallery::-webkit-scrollbar-track {
  background: rgba(244, 165, 181, 0.1);
  border-radius: 10px;
}

.modal-gallery::-webkit-scrollbar-thumb {
  background: rgba(244, 165, 181, 0.5);
  border-radius: 10px;
}

.modal-gallery::-webkit-scrollbar-thumb:hover {
  background: rgba(244, 165, 181, 0.7);
}

.modal-gallery img {
  min-width: 280px;
  width: 280px;
  height: 280px;
  border-radius: 20px;
  box-shadow: 0 12px 32px -16px rgba(78, 57, 66, 0.3);
  object-fit: cover;
  flex-shrink: 0;
}

.modal-description {
  background: rgba(249, 182, 200, 0.1);
  padding: 24px;
  width: 50%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.modal-description h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin: 0 0 14px;
  color: var(--color-text);
}

.modal-description ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-description li {
  padding-left: 24px;
  position: relative;
  color: var(--color-muted);
  line-height: 1.7;
}

.modal-description li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-rose-quartz);
  font-size: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 640px) {
  .modal-content {
    margin: 10px;
    max-height: 90vh;
    max-width: 95vw;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }

  .modal-close svg {
    width: 16px;
    height: 16px;
  }

  .modal-title {
    font-size: 1.4rem;
    padding: 20px 16px 16px;
  }

  .modal-body {
    flex-direction: column;
  }

  .modal-gallery {
    width: 100%;
    padding: 16px;
    gap: 12px;
    border-right: none;
    border-bottom: 1px solid rgba(244, 165, 181, 0.2);
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .modal-gallery img {
    min-width: 220px;
    width: 220px;
    height: 220px;
  }

  .modal-description {
    width: 100%;
    padding: 20px;
    max-height: 50vh;
  }

  .modal-description h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
}

@media (max-width: 640px) {
  .card-top {
    height: 250px;
  }

  .lux-card {
    padding: 24px;
  }

  .lux-card h3 {
    font-size: 1.2rem;
  }

  .lux-card p {
    font-size: 0.85rem;
  }

  .card-price {
    gap: 10px;
    margin-top: 6px;
  }

  .price-original {
    font-size: 0.9rem;
  }

  .price-discount {
    font-size: 1rem;
  }
}

@media (max-width: 420px) {
  .card-top {
    height: 220px;
  }

  .lux-card {
    padding: 20px;
  }

  .lux-card h3 {
    font-size: 1.1rem;
  }

  .lux-card p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .card-price {
    gap: 8px;
    margin-top: 6px;
    flex-wrap: wrap;
  }

  .price-original {
    font-size: 0.85rem;
  }

  .price-discount {
    font-size: 0.95rem;
  }

  .product-image {
    height: 200px;
  }

  .newsletter-card {
    padding: 32px 22px;
  }
}

