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

:root {
  --rose: #c94b7c;
  --rose-deep: #a83a66;
  --rose-light: #e88aab;
  --rose-pale: #fdf0f5;
  --rose-glow: rgba(201, 75, 124, 0.18);
  --mauve: #d4b8c8;
  --mauve-deep: #8b6a7d;
  --champagne: #faf4ef;
  --ivory: #fffcfa;
  --blush: #f8e8ee;
  --sage: #7a9e82;
  --sage-light: #e8f0ea;
  --plum: #3d2a35;
  --ink: #2e2429;
  --ink-soft: #7a6b72;
  --white: #ffffff;
  --glass: rgba(255, 252, 250, 0.72);
  --glass-border: rgba(255, 255, 255, 0.55);
  --shadow-soft: 0 20px 60px rgba(61, 42, 53, 0.08);
  --shadow-rose: 0 24px 64px rgba(201, 75, 124, 0.2);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --inner: min(1480px, 100% - clamp(2rem, 6vw, 5rem));
  --header-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--champagne);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.rtl { direction: rtl; }

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ── Site shell ── */
.site {
  position: relative;
  min-height: 100vh;
}

.site__glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.site__glow--1 {
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  top: -10%;
  right: -8%;
  background: radial-gradient(circle, var(--rose-glow) 0%, transparent 70%);
}

.site__glow--2 {
  width: 45vw;
  height: 45vw;
  max-width: 560px;
  max-height: 560px;
  bottom: 20%;
  left: -10%;
  background: radial-gradient(circle, rgba(212, 184, 200, 0.35) 0%, transparent 70%);
}

/* ── Typography ── */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

.eyebrow--dark { color: var(--mauve-deep); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--plum);
  margin-bottom: 1.25rem;
}

.section-title--light { color: var(--ivory); }

.section-lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 34rem;
}

.section-lead--light {
  color: rgba(255, 252, 250, 0.82);
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 252, 250, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 75, 124, 0.1);
  box-shadow: 0 4px 24px rgba(61, 42, 53, 0.06);
  transition: var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 252, 250, 0.98);
  box-shadow: 0 8px 32px rgba(61, 42, 53, 0.1);
}

.site-header__inner {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 0.7rem clamp(1rem, 3vw, 2.5rem);
}

.site-header__logo {
  flex-shrink: 0;
}

.site-header__logo img { height: 40px; width: auto; }

.site-header__nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  .site-header__nav { display: flex; }
}

.site-header__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--plum);
  border-radius: var(--radius-pill);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.site-header__link:hover,
.site-header__link:focus-visible {
  color: var(--rose);
  background: var(--rose-pale);
}

/* Products dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  cursor: pointer;
}

.nav-dropdown__icon {
  transition: transform var(--transition);
  opacity: 0.7;
}

.nav-dropdown.is-open .nav-dropdown__icon {
  transform: rotate(180deg);
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  display: none;
  min-width: 210px;
  padding: 0.5rem;
  background: var(--ivory);
  border: 1px solid rgba(201, 75, 124, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  z-index: 220;
}

body.rtl .nav-dropdown__panel {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}

@media (min-width: 900px) {
  .nav-dropdown:hover .nav-dropdown__panel,
  .nav-dropdown.is-open .nav-dropdown__panel {
    display: block;
  }

  .nav-dropdown:hover .nav-dropdown__icon,
  .nav-dropdown.is-open .nav-dropdown__icon {
    transform: rotate(180deg);
  }
}

.nav-dropdown.is-open .nav-dropdown__panel {
  display: block;
}

.nav-dropdown__item {
  display: block;
  width: 100%;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-align: left;
  border-radius: calc(var(--radius-md) - 4px);
  transition: background var(--transition), color var(--transition);
}

body.rtl .nav-dropdown__item { text-align: right; }

.nav-dropdown__item:hover {
  background: var(--rose-pale);
  color: var(--rose);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

.site-header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 50%;
  background: var(--rose-pale);
}

@media (min-width: 900px) {
  .site-header__burger { display: none; }
}

.site-header__burger span {
  display: block;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: var(--transition);
}

.site-header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: calc(var(--header-h) + 0.5rem);
  left: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  z-index: 190;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--glass-border);
}

.mobile-nav[hidden] { display: none; }

@media (min-width: 900px) {
  .mobile-nav { display: none !important; }
}

.mobile-nav__link {
  padding: 0.9rem 1.1rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--radius-md);
  text-align: left;
}

body.rtl .mobile-nav__link { text-align: right; }

.mobile-nav__link:hover {
  background: var(--rose-pale);
  color: var(--rose);
}

.mobile-nav__label {
  padding: 0.85rem 1rem 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
}

.mobile-nav__link--sub {
  padding-left: 1.75rem;
  font-size: 0.9rem;
}

body.rtl .mobile-nav__link--sub {
  padding-left: 1rem;
  padding-right: 1.75rem;
}

/* ── Language ── */
.lang-switcher { position: relative; }

.lang-switcher__toggle {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--ivory);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 75, 124, 0.12);
}

.lang-switcher__label { display: none; }

@media (min-width: 520px) {
  .lang-switcher__label { display: inline; }
}

.lang-switcher__chevron { transition: transform var(--transition); }

.lang-switcher__toggle[aria-expanded="true"] .lang-switcher__chevron {
  transform: rotate(180deg);
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  max-height: 360px;
  overflow-y: auto;
  background: var(--plum);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-rose);
  list-style: none;
  z-index: 300;
  padding: 0.5rem 0;
}

body.rtl .lang-switcher__menu { right: auto; left: 0; }

.lang-switcher__menu[hidden] { display: none; }

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
  color: rgba(255, 252, 250, 0.9);
  text-align: left;
}

body.rtl .lang-option { text-align: right; }

.lang-option:hover { background: rgba(255, 255, 255, 0.08); }
.lang-option.is-active { background: rgba(255, 255, 255, 0.12); }

.lang-option__check {
  width: 14px;
  font-size: 0.7rem;
  opacity: 0;
}

.lang-option.is-active .lang-option__check { opacity: 1; }

/* ── Float contacts ── */
.float-contacts {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: 2rem;
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

body.rtl .float-contacts { right: auto; left: clamp(1rem, 2.5vw, 2rem); }

.float-contacts__btn {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  color: var(--rose);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--glass-border);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.float-contacts__btn:hover {
  transform: translateY(-3px) scale(1.05);
  background: var(--rose);
  color: var(--ivory);
}

.float-contacts__btn--wa {
  color: #25d366;
}

.float-contacts__btn--wa:hover {
  background: #25d366;
  color: #fff;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.btn--rose {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: var(--ivory);
  box-shadow: var(--shadow-rose);
}

.btn--rose:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 56px rgba(201, 75, 124, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--plum);
  border: 1.5px solid rgba(201, 75, 124, 0.35);
  box-shadow: none;
}

.btn--outline:hover {
  background: var(--rose-pale);
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
}

.btn--icon-only {
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  flex-shrink: 0;
}

.chip {
  display: inline-flex;
  padding: 0.55rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--plum);
  background: var(--ivory);
  border: 1px solid rgba(201, 75, 124, 0.15);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(61, 42, 53, 0.06);
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) clamp(1rem, 3vw, 2rem) 4rem;
}

.hero__inner {
  width: var(--inner);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    min-height: calc(100vh - var(--header-h) - 4rem);
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--plum);
  margin-bottom: 1.5rem;
}

.hero__title-line { display: block; }

.hero__title-accent {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
  margin-top: 0.15em;
}

.hero__text {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.85;
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero__visual {
  position: relative;
}

.hero__frame {
  position: relative;
  border-radius: clamp(2rem, 5vw, var(--radius-xl));
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 78vh;
  box-shadow: var(--shadow-rose);
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__frame-ring {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(201, 75, 124, 0.25);
  border-radius: calc(var(--radius-xl) + 12px);
  pointer-events: none;
}

.hero__float {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--ivory);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-display);
  color: var(--rose);
  animation: float 6s ease-in-out infinite;
}

.hero__float span { font-size: 1.4rem; line-height: 1; }

.hero__float small {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}

.hero__float--1 { top: 8%; right: -4%; animation-delay: 0s; }
.hero__float--2 { bottom: 12%; left: -6%; animation-delay: 2s; }

body.rtl .hero__float--1 { right: auto; left: -4%; }
body.rtl .hero__float--2 { left: auto; right: -6%; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── Marquee ── */
.marquee {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, var(--plum) 0%, #5c3d4d 50%, var(--plum) 100%);
  padding: 1.1rem 0;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: rgba(255, 252, 250, 0.9);
  white-space: nowrap;
}

.marquee__content span:nth-child(odd) {
  font-style: normal;
  font-weight: 600;
  color: var(--rose-light);
}

.marquee__dot {
  color: var(--mauve);
  font-size: 0.85rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Stats (visible on desktop) ── */
.stats {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  padding: 0 clamp(1rem, 3vw, 2rem) 3rem;
  display: none;
}

@media (min-width: 768px) {
  .stats { display: block; }
}

.stats__inner {
  width: var(--inner);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: -3rem;
}

.stat-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 75, 124, 0.1);
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card span {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ── About ── */
.about {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 10vw, 8rem) clamp(1rem, 3vw, 2rem);
}

.about__inner {
  width: var(--inner);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(3rem, 6vw, 6rem);
  }
}

.about__img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-soft);
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about__visual { position: relative; }

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

body.rtl .about__badge { right: auto; left: 2rem; }

.about__badge span {
  padding: 0.65rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--plum);
  background: var(--ivory);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 75, 124, 0.12);
}

.about__copy { position: relative; padding: 1rem 0; }

.about__ornament {
  position: absolute;
  top: -1rem;
  right: 0;
  font-size: 3rem;
  opacity: 0.15;
  color: var(--rose);
}

body.rtl .about__ornament { right: auto; left: 0; }

/* ── Products ── */
.products {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(5rem, 12vw, 8rem);
  background: linear-gradient(165deg, var(--plum) 0%, #4a3040 40%, var(--rose-deep) 100%);
  overflow: hidden;
}

.products::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 90% 10%, rgba(232, 138, 171, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 90%, rgba(212, 184, 200, 0.15) 0%, transparent 55%);
  pointer-events: none;
}

.products__header {
  width: var(--inner);
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .products__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.products__header-copy { max-width: 36rem; }

.products__body {
  width: var(--inner);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.4rem;
  background: rgba(255, 252, 250, 0.1);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

@media (min-width: 1024px) {
  .product-tabs {
    flex-shrink: 0;
    max-width: 520px;
  }
}

.product-tab {
  flex: 1 1 auto;
  min-width: fit-content;
  padding: 0.75rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: rgba(255, 252, 250, 0.75);
  border-radius: var(--radius-pill);
  transition: var(--transition);
  text-align: center;
}

.product-tab:hover,
.product-tab:focus-visible {
  background: rgba(255, 252, 250, 0.15);
  color: var(--ivory);
}

.product-tab.is-active {
  background: var(--ivory);
  color: var(--plum);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Showcase */
.products-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .products-showcase { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

.showcase-card {
  position: relative;
  background: var(--ivory);
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

body.rtl .showcase-card { text-align: right; }

.showcase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.25);
}

.showcase-card__index {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 252, 250, 0.9);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

body.rtl .showcase-card__index { left: auto; right: 1.25rem; }

.showcase-card__media {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.showcase-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-card:hover .showcase-card__media img {
  transform: scale(1.08);
}

.showcase-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.showcase-card__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--rose-pale);
  color: var(--rose);
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.showcase-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--plum);
  margin-bottom: 0.65rem;
}

.showcase-card__desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.showcase-card__cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--rose);
}

.theme-sky .showcase-card__media { background: #dceef5; }
.theme-blush .showcase-card__media { background: var(--blush); }
.theme-sage .showcase-card__media { background: var(--sage-light); }

/* Product details */
.products-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--ivory);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

@media (min-width: 1024px) {
  .product-detail {
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 580px;
  }

  .product-detail--reverse .product-detail__visual { order: 2; }
  .product-detail--reverse .product-detail__content { order: 1; }
}

.product-detail__visual {
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.product-detail__visual.theme-sky { background: linear-gradient(160deg, #dceef5 0%, var(--ivory) 100%); }
.product-detail__visual.theme-blush { background: linear-gradient(160deg, var(--blush) 0%, var(--ivory) 100%); }
.product-detail__visual.theme-sage { background: linear-gradient(160deg, var(--sage-light) 0%, var(--ivory) 100%); }

.product-detail__hero-img {
  flex: 1;
  min-height: 300px;
  cursor: pointer;
  overflow: hidden;
}

.product-detail__hero-img img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.product-detail__hero-img:hover img { transform: scale(1.04); }

.product-detail__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  padding: 1rem 1.25rem 1.25rem;
  background: rgba(255, 252, 250, 0.7);
}

.gallery-item {
  aspect-ratio: 1;
  border: none;
  padding: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--ivory);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(61, 42, 53, 0.08);
}

.gallery-item:hover {
  transform: scale(1.06);
  box-shadow: var(--shadow-soft);
}

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

.product-detail__content {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-detail__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--blush);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.product-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-detail__name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--plum);
  margin-bottom: 1rem;
}

.product-detail__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.product-detail__highlight {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--rose-deep);
  background: var(--rose-pale);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 75, 124, 0.15);
}

.product-detail__desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.product-detail__features-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

.product-detail__features {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 560px) {
  .product-detail__features { grid-template-columns: 1fr 1fr; }
}

.product-detail__features li {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink-soft);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.55;
}

body.rtl .product-detail__features li {
  padding-left: 0;
  padding-right: 1.5rem;
}

.product-detail__features li::before {
  content: '♡';
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 0.75rem;
}

body.rtl .product-detail__features li::before {
  left: auto;
  right: 0;
}

.tag {
  padding: 0.4rem 0.9rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--ivory);
  color: var(--plum);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 75, 124, 0.12);
}

.tag--fill {
  background: var(--rose-pale);
  color: var(--rose);
  border-color: transparent;
}

/* ── Values ── */
.values {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 10vw, 7rem) clamp(1rem, 3vw, 2rem);
  background: var(--ivory);
}

.values__inner {
  width: var(--inner);
  margin: 0 auto;
}

.values__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .values__grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

.value-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  transition: transform var(--transition);
  border: 1px solid transparent;
}

.value-card:hover { transform: translateY(-8px); }

.value-card--rose {
  background: linear-gradient(160deg, var(--rose-pale) 0%, var(--ivory) 100%);
  border-color: rgba(201, 75, 124, 0.12);
}

.value-card--mauve {
  background: linear-gradient(160deg, #f3eaf0 0%, var(--ivory) 100%);
  border-color: rgba(139, 106, 125, 0.12);
}

.value-card--sage {
  background: linear-gradient(160deg, var(--sage-light) 0%, var(--ivory) 100%);
  border-color: rgba(122, 158, 130, 0.12);
}

.value-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 0.65rem;
}

.value-card__text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ── Contact form ── */
.contact {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 10vw, 6rem) clamp(1rem, 3vw, 2rem);
  background: linear-gradient(165deg, var(--rose-deep) 0%, var(--plum) 55%, #2e1f28 100%);
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 0%, rgba(232, 138, 171, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  z-index: 1;
  width: var(--inner);
  margin: 0 auto;
}

.contact__head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.contact__form {
  background: rgba(255, 252, 250, 0.97);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
  }

  .field--full { grid-column: 1 / -1; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mauve-deep);
}

.field__input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid rgba(201, 75, 124, 0.15);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field__input:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201, 75, 124, 0.12);
}

.field__textarea {
  resize: vertical;
  min-height: 120px;
}

.field__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%237a6b72' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

body.rtl .field__select {
  background-position: left 1rem center;
  padding-right: 1.1rem;
  padding-left: 2.5rem;
}

.contact__note {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.6;
}

.contact__error {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #c0392b;
}

.contact__error[hidden] { display: none; }

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.contact__actions .btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

/* ── Footer ── */
.footer {
  position: relative;
  background: var(--plum);
  color: var(--ivory);
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 3vw, 2rem) 2.5rem;
  overflow: hidden;
}

.footer__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(201, 75, 124, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.footer__inner {
  position: relative;
  z-index: 1;
  width: var(--inner);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 900px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer__tagline,
.footer__copy {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 252, 250, 0.7);
  max-width: 24rem;
  margin-top: 0.5rem;
  line-height: 1.7;
}

.footer__grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .footer__grid { text-align: right; }
  body.rtl .footer__grid { text-align: left; }
}

.footer__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 0.4rem;
}

.footer__value {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 252, 250, 0.9);
  line-height: 1.6;
}

.footer__link {
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--rose-light);
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 42, 53, 0.88);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.lightbox[hidden] { display: none; }

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--ivory);
  background: rgba(255, 252, 250, 0.12);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background var(--transition);
}

.lightbox__close:hover { background: rgba(255, 252, 250, 0.2); }

body.rtl .lightbox__close { right: auto; left: 1.5rem; }

.lightbox__img {
  max-height: 88vh;
  max-width: 92vw;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-rose);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  .hero__float { animation: none; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
