:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --soft: #fff3f7;
  --soft-2: #ffe5ee;
  --line: rgba(15, 23, 42, 0.10);
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
  --radius: 18px;
  --container: 1100px;

  --primary: #ff85b3;
  --primary-2: #ff66a4;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}


body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus,
label:focus,
button:focus {
  outline-offset: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--text);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
}

.skip-link:focus {
  left: 12px;
}

.container{
  width: min(1100px, 92%);
  margin: 0 auto;
}


.section {
  padding: 56px 0;
}

.section-soft {
  background: var(--soft);
}



.section-head {
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  font-size: clamp(22px, 3.5vw, 32px);
  letter-spacing: -0.02em;
}

.section-head {
  margin-bottom: 32px;
  text-align: center;
  /* 🔥 center title + description */
}

.section-title {
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.03em;
}

.section-desc {
  margin: 10px auto 0;
  /* 🔥 centers the text block */
  font-size: 15px;
  max-width: 50ch;
  /* keeps it elegant, not too wide */
}


.center {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

/* Space between product grid and CTA button */
.section .center {
  margin-top: 40px;
  /* was 18px */
}


/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 98px;
  /* balanced for bigger logo */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-logo {
  height: 105px;
  /* desktop logo size */
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-size: 15px;
}

/* Desktop nav */
.nav-desktop {
  display: none;
  gap: 18px;
  align-items: center;
}

.nav-link {
  font-size: 14px;
  color: var(--muted);
}

.nav-link:hover {
  color: var(--text);
}

.nav-link.active {
  color: var(--text);
  font-weight: 600;
}

/* Mobile menu (no JS) */
.nav-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
}

.nav-toggle-bars {
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 60;
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: -420px;
  height: 100%;
  width: min(88vw, 360px);
  background: #fff;
  border-left: 1px solid var(--line);
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 70;
  transition: right 0.2s ease;
}

.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 2px 10px;
  border-bottom: 1px solid var(--line);
}

.mobile-title {
  font-weight: 700;
}

.mobile-close {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
}

.mobile-link {
  padding: 12px 10px;
  border-radius: 14px;
  color: var(--text);
}

.mobile-link:hover {
  background: var(--soft);
}

.mobile-link.active {
  background: var(--soft);
  font-weight: 600;
}

.mobile-cta {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.w-full {
  width: 100%;
  text-align: center;
}

/* Open states */
.nav-check:checked~.mobile-backdrop {
  display: block;
}

.nav-check:checked~.mobile-panel {
  right: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-2);
}

.btn-secondary {
  background: var(--text);
  color: #fff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn-secondary:hover {
  background: #0b1225;
  transform: translateY(-3px);
}




.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--text);
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.92);
}

.btn-small {
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
}

.btn-small:hover {
  background: var(--soft);
}

.btn-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--primary-2);
  font-weight: 600;
}

.btn-link:hover {
  text-decoration: underline;
}

/* HERO (Static background image) */
.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.55),
      rgba(255, 255, 255, 0.85));
}



.hero-content {
  position: relative;
  z-index: 1;
  padding: 56px 0;
  text-align: center;
  max-width: 780px;
}

.hero-title {
  transform: translateX(-0.5px);
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  /* slightly reduced to fit */
  line-height: 1.1;
  letter-spacing: -0.03em;

}


.hero-subtitle {
  margin: 12px auto 0;
  font-weight: 550;
  font-size: 15px;
  color: var(--muted);


  white-space: nowrap;
  /* 🔥 single line */
}


.hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}



/* Grid / Cards */
.grid {
  display: grid;
  gap: 14px;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: 1fr;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
  border-color: rgba(15, 23, 42, 0.16);
}

.product-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
  transition: transform 0.25s ease;
}

.card:hover .product-img {
  transform: scale(1.04);
}


.product-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.card-body {
  padding: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  min-height: 120px;
  /* keeps cards consistent */
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-btn {
  flex-shrink: 0;
}

.card-title {
  margin: 0;
  font-size: 16px;
}

.card-text {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.card-row {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* Reviews */
.review-card {
  padding: 16px;
}

.stars {
  margin: 0 0 8px;
  letter-spacing: 1px;
}

.reviewer {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 600;
}

/* Reviews Carousel (mechanics only — no card styling changes) */
.reviews-carousel {
  position: relative;
}

.reviews-carousel__viewport {
  overflow: hidden;
  padding: 0 16px; /* side space – mobile first */
}

.reviews-carousel__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px; /* space between cards */
  transition: transform 280ms cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

.reviews-carousel__slide {
  min-width: 100%;
}

/* Arrows (outside the slider) */
.reviews-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  padding: 6px 10px;
  line-height: 1;
  z-index: 2;
}

.reviews-carousel__btn--prev {
  left: -12px;
}

.reviews-carousel__btn--next {
  right: -12px;
}

/* Dots */
.reviews-carousel__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.reviews-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: currentColor;
  opacity: .3;
  cursor: pointer;
}

.reviews-carousel__dot.is-active {
  opacity: .9;
  width: 22px;
}

/* Tablet */
@media (min-width: 640px) {
  .reviews-carousel__viewport {
    padding: 0 24px;
  }

  .reviews-carousel__slide {
    min-width: calc(50% - 8px);
  }

  .reviews-carousel__btn--prev {
    left: -20px;
  }

  .reviews-carousel__btn--next {
    right: -20px;
  }
}

/* Desktop */
@media (min-width: 900px) {
  .reviews-carousel__viewport {
    padding: 0 48px;
  }

  .reviews-carousel__slide {
    min-width: calc(33.333% - 10.7px);
  }

  .reviews-carousel__btn--prev {
    left: -36px;
  }

  .reviews-carousel__btn--next {
    right: -36px;
  }
}



.cta-inner {
  text-align: center;
  padding: 12px 0;
}

.cta-title {
  margin: 0;
  font-size: clamp(22px, 3.5vw, 34px);
  letter-spacing: -0.02em;
}

.cta-text {
  margin: 10px auto 18px;
  max-width: 60ch;
  color: var(--muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 18px;
  background: #fff;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* 🔥 force left alignment */
  text-align: left;
}


.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.footer-text {
  color: var(--muted);
  font-size: 14px;
  max-width: 34ch;
  line-height: 1.5;
}

.footer-inner {
  display: grid;
  gap: 18px;
}

.footer-title {
  margin: 0 0 10px;
  font-weight: 700;
}

.footer-link {
  display: block;
  color: var(--muted);
  padding: 6px 0;
}

.footer-link:hover {
  color: var(--text);
}

.footer-text {
  color: var(--muted);
  margin: 10px 0 0;
  max-width: 40ch;
}

/* 🔥 Social media icons under email */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 16px;
  transition: background .2s ease, transform .2s ease, color .2s ease;
}

.footer-socials a:hover {
  background: var(--soft);
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.footer-legal a {
  color: var(--muted);
  transition: color .2s ease;
}

.footer-legal a:hover {
  color: var(--text);
}

/* Mobile: stack nicely */
@media (max-width: 768px) {
  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.footer-meta a {
  color: var(--muted);
}

.footer-meta a:hover {
  color: var(--text);
}

.powered-by {
  white-space: nowrap;
}

.powered-by a {
  font-weight: 600;
}

/* Desktop */
@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle,
  .nav-check {
    display: none;
  }

  .mobile-panel,
  .mobile-backdrop {
    display: none !important;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1.6fr 1fr 1fr;
    align-items: start;
  }
}

/* Tablet logo sizing */
@media (max-width: 1024px) {
  .header-inner {
    height: 98px;
  }

  .brand-logo {
    height: 62px;
  }
}

/* Mobile logo sizing */
@media (max-width: 768px) {
  .header-inner {
    height: 90px;
  }

  .brand-logo {
    height: 90px;
  }

  .brand-text {
    font-size: 14px;
  }

  /* Center social icons on mobile */
  .footer-socials {
    justify-content: center;
  }
}

/* FORCE SOLID WHITE NAV ON MOBILE */
@media (max-width: 900px) {
  .site-header {
    background: #ffffff !important;
    backdrop-filter: none !important;
  }
}

/* Hero text wrap reset on mobile */
@media (max-width: 768px) {

  .hero-title,
  .hero-subtitle {
    white-space: normal;
  }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 100;
}

.back-to-top:hover {
  background: var(--soft);
  transform: translateY(-3px);
}

/* Mobile footer alignment */
@media (max-width: 768px) {

  .footer-inner {
    text-align: center;
    gap: 28px;
    /* more breathing room */
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-text {
    max-width: 32ch;
    margin: 8px auto 0;
  }

  .footer-link {
    padding: 8px 0;
  }

  .footer-socials {
    justify-content: center;
    margin-top: 14px;
  }

  .footer-bottom-row {
    text-align: center;
    gap: 12px;
  }

  .footer-meta {
    flex-wrap: wrap;
    justify-content: center;
  }
}



@media (max-width: 768px) {
  .footer-brand {
    margin-bottom: 6px;
  }

  .footer-title {
    margin-bottom: 6px;
  }
}

@media (max-width: 768px) {
  .footer-logo {
    height: 72px;
    /* 🔥 bigger on phone */
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }
}




/* =========================
   MOBILE-FIRST PRODUCT MODAL
   (Phones first, desktop later)
========================= */

/* Make whole product card clickable */
.product-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-link .btn {
  pointer-events: none;
}

/* ===== Modal base (MOBILE) ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  padding: 0;
}

/* Open modal */
.modal:target {
  display: block;
}

/* Dark overlay */
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

/* Modal card – FULL SCREEN on mobile */
.modal-card {
  position: relative;
  height: 100dvh;
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Sticky top bar (safe-area ready) */
.modal-top {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: calc(14px + env(safe-area-inset-top)) 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Title bigger than price */
.modal-title {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* Close button */
.modal-close {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 18px;
  background: #fff;
  text-decoration: none;
  color: inherit;
}


/* Scrollable content area */
.modal-grid {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  padding-bottom: 110px;
  /* space for sticky buttons */
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  /* ✅ MOBILE FIRST = stacked */
}

/* Media section */
.modal-media {
  display: grid;
  gap: 12px;
}

.modal-media img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--soft);
  object-fit: cover;
}

/* Gallery thumbs */
.modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.modal-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--soft);
}

/* Info section */
.modal-info {
  text-align: left;
}

/* Price secondary */
.modal-info .price {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
}

/* Bullets spacing */
.modal-bullets {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}

.modal-bullets li {
  margin: 0;
}

/* ✅ MOBILE: Sticky action bar at bottom */
.modal-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-actions .btn {
  width: 100%;
  justify-content: center;
}

/* Delivery note */
.modal-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--muted);
}

/* ===== Desktop enhancement ===== */
@media (min-width:900px) {
  .modal {
    display: none;
    padding: 16px;
  }

  .modal:target {
    display: grid;
    place-items: center;
  }

  .modal-card {
    width: min(1000px, 100%);
    height: auto;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .modal-top {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 14px 16px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* ✅ FORCE X TO THE RIGHT */
  }


  .modal-title {
    font-size: 28px;
  }



  /* Desktop: two columns */
  .modal-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    padding-bottom: 16px;
    /* no sticky bar space */
  }

  /* Desktop: actions inside card, not fixed */
  .modal-actions {
    position: static;
    border-top: 0;
    padding: 0;
    flex-direction: row;
    align-items: center;
    margin-top: 18px;
  }

  .modal-actions .btn {
    width: auto;
  }
}


/* =========================
   MOBILE-FIRST PRODUCT MODAL
   (Fits perfectly on phones)
========================= */

/* Make whole product card clickable */
.product-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-link .btn {
  pointer-events: none;
}

/* Modal base */
.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  padding: 0;
}

.modal:target {
  display: block;
}

/* Overlay */
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

/* Card: full screen on mobile */
.modal-card {
  position: relative;
  height: 100dvh;
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Top bar */
.modal-top {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: calc(12px + env(safe-area-inset-top)) 14px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Title big */
.modal-title {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* X ALWAYS on the right */
.modal-close {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 18px;
  background: #fff;
  text-decoration: none;
  color: inherit;
}

/* Scroll area */
.modal-grid {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  padding-bottom: calc(160px + env(safe-area-inset-bottom));
  /* room for buttons */
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  /* mobile stacked */
}

/* Media area */
.modal-media {
  display: grid;
  gap: 10px;
  width: 100%;
}

/* ✅ Make image fit nicely on mobile */
.modal-media>img {
  width: 100%;
  max-height: 46vh;
  /* prevents image from taking whole screen */
  object-fit: contain;
  /* shows full cover without cropping */
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--soft);
}

/* Gallery thumbnails */
.modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.modal-gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--soft);
}

/* Info */
.modal-info {
  width: 100%;
  text-align: left;
}

.modal-info .price {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
}

/* Bullets */
.modal-bullets {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}

/* ✅ Mobile action bar (fits and doesn’t cover content) */
.modal-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-actions .btn {
  width: 100%;
  justify-content: center;
}

/* Note */
.modal-note {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--muted);
}

/* ===== Desktop enhancement ===== */
@media (min-width:900px) {
  .modal {
    display: none;
    padding: 16px;
  }

  .modal:target {
    display: grid;
    place-items: center;
  }

  .modal-card {
    width: min(1000px, 100%);
    height: auto;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .modal-title {
    font-size: 28px;
  }

  .modal-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    padding: 16px;
    padding-bottom: 16px;
  }

  .modal-media>img {
    max-height: none;
    object-fit: cover;
  }

  .modal-actions {
    position: static;
    border-top: 0;
    padding: 0;
    flex-direction: row;
    margin-top: 16px;
  }

  .modal-actions .btn {
    width: auto;
  }
}

  
/* =========================================================
   REAL MOMENTS CAROUSEL – FINAL & BULLET-PROOF
   - Fixes black dot (UL / LI bullet)
   - Safari & mobile safe
   - Clean, smooth, production-ready
   ========================================================= */

/* Section */
.real-moments {
  padding: 56px 0;
}

.real-moments .container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* Header */
.real-moments__head {
  text-align: center;
  margin-bottom: 20px;
}

.real-moments__head h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.02em;
}

.real-moments__head p {
  margin: 0 auto;
  max-width: 62ch;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
  opacity: 0.9;
}

/* =========================================================
   Carousel wrapper
   ========================================================= */
.carousel {
  position: relative;
  margin: 18px auto 0;
  max-width: 980px;
}

/* Viewport */
.carousel__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(0,0,0,0.03);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);

  /* Safari / mobile fixes */
  overflow-anchor: none;
  -webkit-overflow-scrolling: auto;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* Kill focus artefacts */
.carousel__viewport *,
.carousel__viewport *:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* =========================================================
   TRACK (UL) — THIS REMOVES THE BLACK DOT
   ========================================================= */
.carousel__track {
  list-style: none;   /* ✅ removes bullet */
  margin: 0;          /* ✅ removes default UL margin */
  padding: 0;         /* ✅ removes default UL padding */

  display: flex;
  transition: transform 520ms cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

/* =========================================================
   SLIDES (LI) — ALSO IMPORTANT
   ========================================================= */
.carousel__slide {
  list-style: none;   /* ✅ removes bullet */
  min-width: 100%;
  position: relative;
}

.carousel__slide img {
  width: 100%;
  height: clamp(285px, 52vw, 640px);
  object-fit: cover;

  display: block;
}

/* Soft gradient overlay */
.carousel__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.18),
    rgba(0,0,0,0.00) 55%
  );
}

/* =========================================================
   Navigation buttons
   ========================================================= */
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.14);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 24px rgba(15,23,42,0.16);
  cursor: pointer;
  font-size: 26px;
  display: grid;
  place-items: center;
  user-select: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.carousel__btn--prev { left: 12px; }
.carousel__btn--next { right: 12px; }

.carousel__btn:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(255,255,255,0.98);
  box-shadow: 0 14px 34px rgba(15,23,42,0.18);
}

.carousel__btn:active {
  transform: translateY(-50%) scale(0.98);
}

.carousel__btn:focus-visible {
  outline: 2px solid rgba(255,77,136,0.45);
  outline-offset: 3px;
}

/* =========================================================
   DOTS (UL SAFE)
   ========================================================= */
.carousel__dots {
  list-style: none;   /* ✅ removes bullet */
  margin: 14px 0 0;
  padding: 0;

  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(15,23,42,0.25);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, width .18s ease;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.carousel__dot:hover {
  transform: scale(1.15);
}

.carousel__dot.is-active {
  width: 22px;
  background: var(--primary);
}

.carousel__dot:focus-visible {
  outline: 2px solid rgba(255,77,136,0.45);
  outline-offset: 3px;
}

/* =========================================================
   Mobile tweaks
   ========================================================= */
@media (max-width: 520px) {
  .real-moments {
    padding: 46px 0;
  }

  .carousel__btn {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .carousel__btn--prev { left: 10px; }
  .carousel__btn--next { right: 10px; }

  .carousel__dots {
    gap: 8px;
  }
}


/* =========================
   ABOUT PAGE
========================= */

.about-split{
  display: grid;
  gap: 18px;
  align-items: center;
}

.about-media img{
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--soft);
  object-fit: cover;
  max-height: 520px;
}

.about-panel{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  padding: 18px;
}

.about-title{
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.about-text{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.about-bullets{
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14.5px;
}

.about-actions{
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.about-stats{
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.stat{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}

.stat-number{
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.stat-label{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.about-card{
  padding: 0;
}

.about-card-body{
  padding: 18px;
}

.about-icon{
  margin: 0 0 10px;
  font-size: 22px;
}

@media (min-width: 900px){
  .about-split{
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
  }

  .about-stats{
    grid-template-columns: repeat(3, 1fr);
  }

  .stat{
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-label{
    text-align: left;
  }
}

/* =========================
   TRUST STRIP (MOBILE FIRST)
========================= */



.trust-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 60px;
}

.trust-item {
  display: flex;
  flex-direction: column; /* 🔥 icon ABOVE text */
  align-items: center;
  justify-content: center;
  gap: 8px;

  text-align: center;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);

  padding: 14px 12px;
  border-radius: 16px;

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.trust-icon {
  font-size: 22px;         /* 🔥 bigger, premium */
  color: var(--primary);
  line-height: 1;
}

/* Premium hover */
.trust-item:hover {
  background: var(--soft);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.10);
}

/* =========================
   DESKTOP ENHANCEMENT
========================= */
@media (min-width: 900px) {
  .trust-strip__inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .trust-item {
    font-size: 15px;
    padding: 18px 14px;
  }

  .trust-icon {
    font-size: 24px;
  }
}


/* Reviews */
.review-card {
  padding: 16px;
}

.stars {
  margin: 0 0 8px;
  letter-spacing: 1px;
}

.reviewer {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 600;
}

/* =========================
   REVIEWS CAROUSEL
   (mobile-first, bulletproof)
========================= */

.reviews-carousel {
  position: relative;
  padding: 0 44px; /* space for arrows */
}

/* IMPORTANT: viewport has NO padding */
.reviews-carousel__viewport {
  overflow: hidden;
  padding: 0; /* ✅ prevents 4th card peeking */
}

.reviews-carousel__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0; /* mobile: no gap */
  transition: transform 280ms cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

/* =========================
   MOBILE (1 CARD, CENTERED)
========================= */
.reviews-carousel__slide {
  min-width: 100%;
  padding: 0 8px; /* space between cards on mobile */
}

/* Arrows */
.reviews-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  padding: 6px 10px;
  line-height: 1;
  z-index: 2;
}

.reviews-carousel__btn--prev { left: 8px; }
.reviews-carousel__btn--next { right: 8px; }

/* Dots */
.reviews-carousel__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.reviews-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: currentColor;
  opacity: .3;
  cursor: pointer;
}

.reviews-carousel__dot.is-active {
  opacity: .9;
  width: 22px;
}

/* =========================
   TABLET (2 CARDS)
========================= */
@media (min-width: 640px) {
  .reviews-carousel {
    padding: 0 56px;
  }

  .reviews-carousel__track {
    gap: 16px;
  }

  .reviews-carousel__slide {
    min-width: calc(50% - 8px);
    padding: 0;
  }
}

/* =========================
   DESKTOP (EXACTLY 3 CARDS)
========================= */
@media (min-width: 900px) {
  .reviews-carousel {
    padding: 0 72px;
  }

  .reviews-carousel__track {
    gap: 16px;
  }

  .reviews-carousel__slide {
    min-width: calc(33.3333% - 10.7px); /* ✅ locked to 3 */
    padding: 0;
  }
}




/* =========================
   DOUBLE MARQUEE REVIEWS
   (top row right, bottom row left)
   - no hover pause
   - all cards same size
========================= */

.reviews-marquee {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

/* A “viewport” row */
.reviews-marquee__row {
  position: relative;
  overflow: hidden;

  /* soft fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

/* Track */
.reviews-marquee__track {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  gap: 16px; /* space between cards */
  width: max-content;
  will-change: transform;
}

/* Each item */
.reviews-marquee__item {
  flex: 0 0 auto;
  width: min(86vw, 340px); /* mobile-first width */
}

/* Force all review cards to be same “bubble size” */
.reviews-marquee__item .review-card {
  height: 260px;            /* ✅ same height for all */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Keep long text neat (no weird stretching) */
.reviews-marquee__item .card-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;     /* ✅ clamp text to match height */
  overflow: hidden;
}

/* Animations */
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Direction */
.reviews-marquee__row--left .reviews-marquee__track {
  animation: marquee-left 28s linear infinite;
}

.reviews-marquee__row--right .reviews-marquee__track {
  animation: marquee-right 30s linear infinite;
}

/* Reduce motion (accessibility) */
@media (prefers-reduced-motion: reduce) {
  .reviews-marquee__track {
    animation: none !important;
    transform: none !important;
  }
}

/* Tablet */
@media (min-width: 640px) {
  .reviews-marquee__item {
    width: 360px;
  }

  .reviews-marquee__item .review-card {
    height: 270px;
  }

  .reviews-marquee__item .card-text {
    -webkit-line-clamp: 7;
  }
}

/* Desktop */
@media (min-width: 900px) {
  .reviews-marquee {
    gap: 18px;
  }

  .reviews-marquee__item {
    width: 380px;
  }

  .reviews-marquee__item .review-card {
    height: 280px;
  }

  .reviews-marquee__item .card-text {
    -webkit-line-clamp: 7;
  }
}
