/* VROU — static stylesheet */
@font-face {
  font-family: "Ford Antenna";
  src: url("assets/fonts/ford-antenna-medium-58955836e60d2.woff2") format("woff2"),
       url("assets/fonts/ford-antenna-medium-58955836e60d2.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #fdf5ea;
  --blush: #f0acdf;
  --rose: #ee78c4;
  --indigo: #4e6cfe;
  --butter: #f5ec6b;
  --crimson: #df3c34;
  --sand: #e7dad6;

  --background: #ffffff;
  --foreground: #2a1a26;
  --muted-foreground: #6a5a66;
  --border: #ecdfe8;

  --primary: var(--rose);
  --primary-foreground: #ffffff;
  --secondary: var(--indigo);
  --accent: var(--blush);

  --font-primary: "Ivy Presto Display", "Playfair Display", "Times New Roman", Georgia, serif;
  --font-secondary: "Ford Antenna", "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Raleway", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html {
  height: 100%;
  background: var(--background);
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1 0 auto;
}

/* Instant loader while dynamic page roots are still empty (before JS runs) */
#shop-root:empty,
#product-root:empty,
#cart-root:empty,
#service-root:empty,
#payment-result-root:empty,
[data-featured-products]:empty {
  position: relative;
  min-height: 280px;
}

#shop-root:empty::before,
#product-root:empty::before,
#cart-root:empty::before,
#service-root:empty::before,
#payment-result-root:empty::before,
[data-featured-products]:empty::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 50%;
  border: 3px solid rgba(238, 120, 196, 0.2);
  border-top-color: var(--primary);
  animation: vrou-loader-spin 0.9s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

/* Shared page loader */
.vrou-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 0;
  text-align: center;
}

.vrou-loader__spinner {
  position: relative;
  width: 52px;
  height: 52px;
}

.vrou-loader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(238, 120, 196, 0.2);
  border-top-color: var(--primary);
  animation: vrou-loader-spin 0.9s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.vrou-loader__ring--delay {
  inset: 8px;
  border-width: 2px;
  border-top-color: var(--secondary);
  animation-duration: 0.9s;
  animation-direction: reverse;
}

@keyframes vrou-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.vrou-loader__title {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--foreground);
}

.vrou-loader__copy {
  margin: 0;
  max-width: 28rem;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.55;
}

.vrou-loader--compact {
  gap: 14px;
}

.vrou-loader--compact .vrou-loader__spinner {
  width: 40px;
  height: 40px;
}

.vrou-loader--compact .vrou-loader__ring--delay {
  inset: 6px;
}

.select-control {
  position: relative;
  display: block;
  height: 44px;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 24px -24px rgba(42, 26, 38, 0.18);
}

.select-control::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 14px;
  z-index: 1;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--muted-foreground);
  border-bottom: 2px solid var(--muted-foreground);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.select-control:focus-within {
  border-color: rgba(238, 120, 196, 0.45);
  box-shadow: 0 0 0 3px rgba(238, 120, 196, 0.12);
}

.select-control select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 36px 0 11px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--foreground);
  font: inherit;
  font-family: var(--font-body);
  line-height: normal;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, .display, .heading, .heading-xl {
  font-family: var(--font-secondary);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
}

h2 {
  line-height: 1.1;
}

h3 {
  line-height: 1.3;
}

.nav-links,
.btn,
.eyebrow {
  font-family: var(--font-secondary);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Header / Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 24px;
  transition: padding .2s;
  position: relative;
  z-index: 2;
}

/* Keep bar + burger above the fullscreen menu overlay so close control stays visible */
.site-header.is-menu-visible .nav {
  z-index: 11;
}
.hero-spacer {
  height: 70px;
}
@media (min-width: 768px) {
  .hero-spacer { height: 100px; }
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo {
  height: 44px;
  width: auto;
  transition: height .2s;
  margin-top: 3px;
}
@media (min-width: 768px) {
  .nav { padding: 12px 24px; }
  .logo { height: 64px; margin-top: 6px; }
}
.site-header.is-scrolled {
  box-shadow: 0 8px 20px -20px rgba(0,0,0,.35);
}
.site-header.is-scrolled .nav {
  padding-top: 8px;
  padding-bottom: 8px;
}
.site-header.is-scrolled .logo { height: 38px; }
@media (min-width: 768px) {
  .site-header.is-scrolled .logo { height: 48px; }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 40px;
  flex: 1;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
}

.nav-mobile-triggers {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .nav-mobile-triggers { display: none; }
}

.nav-burger {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--background);
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: border-color .2s, background-color .2s;
}
.nav-burger:hover {
  border-color: rgba(78,108,254,.35);
  background: rgba(78,108,254,.06);
}
.nav-burger-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: var(--foreground);
  transition: transform .25s, opacity .2s;
}
.site-header.is-menu-open .nav-burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.is-menu-open .nav-burger-line:nth-child(2) {
  opacity: 0;
}
.site-header.is-menu-open .nav-burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0; padding: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  align-items: center;
  text-transform: uppercase;
}
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--primary); }

.nav-links li {
  line-height: 1;
}

.nav-item-services {
  position: relative;
}

.nav-services-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  transition: color .2s;
}

.nav-services-toggle:hover {
  color: var(--primary);
}

.nav-services-caret,
.mobile-services-caret {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform .2s;
}

.nav-services-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  min-width: 240px;
  padding: 12px 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--background);
  box-shadow: 0 24px 45px -28px rgba(42, 26, 38, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}

.nav-services-menu a {
  display: block;
  padding: 10px 18px;
  color: var(--foreground);
  white-space: nowrap;
  transition: color .2s, background-color .2s;
}

.nav-services-menu a:hover {
  color: var(--primary);
  background: rgba(238, 120, 196, 0.08);
}

.nav-services-menu__list {
  display: flex;
  flex-direction: column;
}

.nav-item-services.is-open .nav-services-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-item-services.is-open .nav-services-toggle {
  color: var(--primary);
}

.nav-item-services.is-open .nav-services-caret,
.mobile-menu-item-services.is-open .mobile-services-caret {
  transform: rotate(-135deg) translateY(-1px);
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 2px;
}

.header-socials a {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--muted-foreground);
  transition: color .2s, border-color .2s, background-color .2s;
}

.header-socials a:hover {
  color: var(--primary);
  border-color: rgba(238,120,196,.45);
  background: rgba(238,120,196,.08);
}

.header-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.header-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--foreground);
  transition: color .2s, border-color .2s, background-color .2s;
}

.header-cart-link:hover {
  color: var(--primary);
  border-color: rgba(238, 120, 196, 0.45);
  background: rgba(238, 120, 196, 0.08);
}

.header-cart-link__icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.header-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}

.header-cart-count[hidden] {
  display: none;
}

.header-cart-link--mobile {
  width: 100%;
  height: auto;
  min-height: 48px;
  margin-top: 8px;
  padding: 12px 16px;
  border-radius: 16px;
  gap: 10px;
  justify-content: center;
}

.header-cart-link--mobile .header-cart-link__icon {
  width: 22px;
  height: 22px;
}

.header-cart-link__label {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.header-cart-link--mobile .header-cart-count {
  position: static;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  line-height: 22px;
  font-size: 11px;
}

/* Mobile slide-out menu — backdrop fades; panel uses its own layer (no parent opacity over transform) */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  visibility: hidden;
}

.site-header.is-menu-visible .mobile-menu {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 26, 38, 0.32);
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.site-header.is-menu-open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 90vw);
  background: var(--background);
  box-shadow: -12px 0 40px -12px rgba(0, 0, 0, 0.18);
  padding: calc(88px + env(safe-area-inset-top, 0px)) 28px 32px;
  transform: translate3d(100%, 0, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: -webkit-transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (max-width: 499px) {
  .mobile-menu-panel {
    width: 100vw;
  }
}

.site-header.is-menu-open .mobile-menu-panel {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.site-header.is-menu-visible.is-menu-closing .mobile-menu-backdrop,
.site-header.is-menu-visible.is-menu-closing .mobile-menu-panel {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu-backdrop {
    transition: none;
  }

  .mobile-menu-panel {
    transition: none;
    -webkit-transition: none;
  }
}
.mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mobile-menu-links li {
  border-bottom: 1px solid var(--border);
}
.mobile-menu-links a {
  display: block;
  padding: 18px 0;
  color: var(--foreground);
  transition: color .2s;
  text-transform: uppercase;
}
.mobile-menu-links a:hover {
  color: var(--primary);
}

.mobile-services-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--foreground);
  font: inherit;
  font-family: var(--font-secondary);
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s;
}

.mobile-services-toggle:hover {
  color: var(--primary);
}

.mobile-services-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, padding-bottom .25s ease;
}

.mobile-menu-item-services.is-open .mobile-services-menu {
  max-height: 480px;
  padding-bottom: 14px;
}

.mobile-menu-links .mobile-services-link,
.mobile-menu-links .mobile-services-menu__list a {
  display: block;
  padding: 10px 0 10px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.mobile-menu-book {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}
.mobile-menu-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.mobile-menu-socials a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--muted-foreground);
  transition: color .2s, border-color .2s, background-color .2s;
}
.mobile-menu-socials a:hover {
  color: var(--primary);
  border-color: rgba(238, 120, 196, 0.45);
  background: rgba(238, 120, 196, 0.08);
}
.mobile-menu-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  transition: opacity .2s, background-color .2s, color .2s;
  border: 1px solid transparent;
}
.btn-sm { padding: 10px 20px; }
.btn-lg { padding: 16px 32px; }
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.btn-primary:hover { opacity: .9; }
.btn-outline {
  background: var(--background);
  color: var(--secondary);
  border-color: rgba(78,108,254,.4);
}
.btn-outline:hover { background: rgba(78,108,254,.05); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: rgba(240, 172, 223, 0.25);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 64px; padding-bottom: 96px;
}
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1fr; padding-top: 96px; padding-bottom: 128px; }
}

.eyebrow {
  display: inline-block;
  border-radius: 999px;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: rgba(255,255,255,.7);
}
.eyebrow-secondary { color: var(--secondary); border: 1px solid rgba(78,108,254,.3); }
.eyebrow-primary {
  color: var(--primary);
  background: transparent;
  padding: 0;
  letter-spacing: .25em;
}

.display {
  margin-top: 24px;
  font-size: clamp(40px, 4vw, 70px);
  line-height: 1.05;
}
.text-secondary { color: var(--secondary); }
.text-primary { color: var(--primary); }

.lead {
  margin-top: 24px;
  max-width: 32rem;
  font-size: 18px;
  color: rgba(42,26,38,.7);
}
.cta-row { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.cta-center { justify-content: center; }

.hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.hero-actions__primary {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  white-space: nowrap;
  min-height: 52px;
  padding-inline: 32px;
  box-shadow: 0 16px 32px -18px rgba(238, 120, 196, 0.65);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.hero-actions__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  white-space: nowrap;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid rgba(78, 108, 254, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--secondary);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 12px 24px -22px rgba(42, 26, 38, 0.18);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-actions__secondary:hover {
  background: #fff;
  border-color: rgba(78, 108, 254, 0.38);
  box-shadow: 0 16px 28px -20px rgba(78, 108, 254, 0.22);
}

.hero-image-wrap { position: relative; }
.hero-image-glow {
  position: absolute;
  inset: 5px;
  background: rgba(78,108,254,.15);
  filter: blur(60px);
  border-radius: 32px;
  z-index: -1;
}
.hero-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.18);
}

/* Sections */
.section { padding: 96px 0; }
.section-blush { background: rgba(240,172,223,.25); }

.section-head {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.heading { margin-top: 12px; font-size: clamp(32px, 4vw, 48px); }
.heading-xl { font-size: clamp(40px, 6vw, 64px); }
.muted { color: var(--muted-foreground); margin-top: 20px; }
.body-text { margin-top: 16px; color: rgba(42,26,38,.7); }

.no-top-margin { margin-top: 0; }

/* Services — intro band */
.services-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .services-intro__content {
    order: 1;
  }

  .services-intro__media {
    order: 2;
  }
}

@media (min-width: 768px) {
  .services-intro {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .services-intro__content,
  .services-intro__media {
    order: 0;
  }
}

.services-intro__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
}

.services-intro__content {
  text-align: left;
}

.services-intro__heading {
  margin-top: 12px;
}

.services-intro__lead {
  margin-top: 16px;
  max-width: 32rem;
}

.services-intro__cta {
  margin-top: 12px;
}

/* Story */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 768px) { .story-grid { grid-template-columns: 1fr 1fr; } }

@media (max-width: 767px) {
  .hero-grid {
    gap: 32px;
  }

  .hero-grid > div:first-child {
    min-width: 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-intro {
    gap: 28px;
  }

  .story-grid {
    gap: 32px;
  }

  .story-grid__cta {
    margin-top: 12px;
  }

  .home-featured__actions {
    margin-top: 24px;
  }
}

.story-image {
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,.15);
}

/* Featured shop (home) */
.section-featured {
  background: #fff;
  padding: 72px 0;
}

.home-featured__intro {
  max-width: 42rem;
  margin: 0 auto 36px;
  text-align: center;
}

.home-featured__lead {
  margin: 14px 0 0;
}

.home-featured {
  min-height: 120px;
}

.home-featured .shop-products-grid {
  margin-top: 0;
}

.home-featured__actions {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.home-featured__empty,
.home-featured__error {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
  color: var(--muted-foreground);
}

.home-featured__error {
  color: var(--crimson);
}

/* Footer */
.site-footer {
  margin-top: auto;
  flex-shrink: 0;
  border-top: 1px solid var(--border);
  background: rgba(240, 172, 223, 0.22);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-top: 48px;
  padding-bottom: 32px;
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: minmax(200px, 1fr) 1fr;
    align-items: start;
    gap: 40px 32px;
  }
}
@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: minmax(260px, 1.05fr) minmax(280px, 1fr);
    gap: 48px 40px;
  }
}
.footer-col-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.footer-col-brand .footer-logo {
  height: 44px;
  width: auto;
}
@media (min-width: 768px) {
  .footer-col-brand .footer-logo { height: 48px; }
}
.footer-brand-address {
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted-foreground);
  max-width: 18rem;
  transition: color .2s;
}
.footer-brand-address:hover {
  color: var(--primary);
}
.footer-heading {
  margin: 0 0 14px;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
}
.footer-contact-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.footer-contact-list li:last-child {
  border-bottom: 0;
}
.footer-label {
  min-width: 5.5rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--foreground);
}
.footer-contact-list a {
  color: var(--muted-foreground);
  transition: color .2s;
}
.footer-contact-list a:hover {
  color: var(--primary);
}
.footer-socials.mobile-menu-socials {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.footer-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  padding-bottom: 32px;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) {
  .footer-bar {
    flex-direction: row;
    justify-content: space-between;
  }
}
.copyright {
  font-size: 12px;
  color: var(--muted-foreground);
  margin: 0;
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: var(--muted-foreground);
}
.footer-links a:hover { color: var(--primary); }

/* 404 page */
.error-page {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 100dvh;
  padding: 48px 24px;
  text-align: center;
}

.error-page__logo-link {
  display: inline-block;
  margin-bottom: 8px;
}

.error-page__logo {
  width: min(180px, 56vw);
  height: auto;
}

.error-page__code {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.error-page__title {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--foreground);
}

.error-page__copy {
  max-width: 28rem;
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.55;
}

/* Floating WhatsApp */
.whatsapp-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
}

.whatsapp-fab {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border: 0;
  cursor: pointer;
  box-shadow: 0 14px 24px -16px rgba(0, 0, 0, 0.6);
  transition: transform .2s, box-shadow .2s, opacity .2s;
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px -18px rgba(0, 0, 0, 0.65);
}

.whatsapp-widget.is-fab-hidden .whatsapp-fab {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
}

.whatsapp-widget.is-fab-hidden .whatsapp-fab:hover {
  transform: translateY(12px) scale(0.92);
  box-shadow: 0 14px 24px -16px rgba(0, 0, 0, 0.6);
}

.whatsapp-fab svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s, transform .2s;
}

.whatsapp-icon-close {
  position: absolute;
  font-size: 36px;
  line-height: 1;
  opacity: 0;
  transform: scale(.75);
}

.whatsapp-widget.is-open .whatsapp-icon-chat {
  opacity: 0;
  transform: scale(.75);
}

.whatsapp-widget.is-open .whatsapp-icon-close {
  opacity: 1;
  transform: scale(1);
}

.whatsapp-modal {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(300px, calc(100vw - 40px));
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 35px -18px rgba(0, 0, 0, 0.4);
  padding: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(.98);
  transition: opacity .2s, transform .2s;
}

.whatsapp-widget.is-open .whatsapp-modal {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.whatsapp-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #25d366;
  color: #fff;
}

.whatsapp-modal-header-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.whatsapp-modal-header-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.whatsapp-modal-title {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #fff;
}

.whatsapp-modal-body {
  background: #fff;
  padding: 16px;
}

.whatsapp-modal-copy {
  margin: 0 0 14px;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.45;
}

.whatsapp-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 999px;
  padding: 12px 16px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-secondary);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: opacity .2s;
}

.whatsapp-modal-btn:hover {
  opacity: .9;
}
