/* ═══════════════════════════════════════════
   FURBABYSITTER.CA — style.css
   Warm, friendly, trustworthy pet care brand
   Palette: soft cream + teal + blush accent
═══════════════════════════════════════════ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── PALETTE ──
     Cohesive teal-forward palette. Primary is a confident teal,
     darker teal for hover/press, paired with blush + warm cream
     to keep the "warm and friendly" feel the category expects. */
  --cream:       #FDFAF5;
  --cream-dark:  #F4EFE4;

  /* Primary brand — teal family */
  --teal:        #4ac2c1;   /* main brand color */
  --teal-dark:   #2fa3a2;   /* hover / pressed */
  --teal-light:  #d7f2f1;   /* tint / chips / backgrounds */
  --teal-mid:    #90dfde;   /* soft accent */

  /* Secondary accent — warm coral/blush to balance the teal */
  --blush:       #F47C60;   /* accent: badges, price callouts */
  --blush-light: #FDE3DB;   /* accent chip background */
  --gold:        #F5A623;   /* star/fav accent */

  /* Aliases kept for legacy class names (sage/terracotta now map to teal) */
  --sage:             var(--teal);
  --sage-light:       var(--teal-light);
  --sage-mid:         var(--teal-mid);
  --terracotta:       var(--teal);
  --terracotta-light: var(--teal-light);
  --coral:            var(--blush);

  /* Neutrals */
  --text:       #2C2416;
  --text-mid:   #5C4E3A;
  --text-muted: #9C8E7A;
  --white:      #FFFFFF;
  --border:     #E8E0D0;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Nunito', sans-serif;

  /* Shape */
  --nav-h:       72px;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 4px 24px rgba(44,36,22,0.09);
  --shadow-hover:0 8px 40px rgba(44,36,22,0.15);
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

/* ── TYPOGRAPHY ── */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.section-title--left { justify-content: flex-start; text-align: left; }
.section-title img { height: 1.1em; width: auto; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 520px;
}
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74,194,193,0.35);
}

.btn--soft {
  background: var(--teal-light);
  color: var(--teal-dark);
}
.btn--soft:hover { background: var(--teal-mid); color: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--teal-dark);
  border-color: var(--teal);
}
.btn--outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn--full { width: 100%; }
.btn--sm   { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(1rem, 4vw, 3rem);
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled, .nav--solid {
  background: rgba(253,250,245,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(44,36,22,0.08);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-right: auto;
}
.nav__paw { font-size: 1.3rem; }

.nav__links {
  display: flex;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  position: relative;
  transition: color 0.2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--teal-dark); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__cta {
  margin-left: 1.5rem;
  padding: 0.6rem 1.3rem;
  background: var(--teal);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.3s;
}
.nav__cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 1rem;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}
.mobile-menu ul { text-align: center; }
.mobile-menu ul li { padding: 0.5rem 0; }
.mobile-menu ul a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 700;
  color: var(--text-mid);
  transition: color 0.2s;
}
.mobile-menu ul a:hover { color: var(--teal-dark); }
.mobile-menu__cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  background: var(--teal);
  color: var(--white) !important;
  border-radius: 100px;
  font-size: 1.1rem !important;
}

/* ── LOGO ── */
.title-logo {
  height: 20px;
  width: auto;
  flex-shrink: 0;
}
.nav__logo img.title-logo {
  height: 18px;
  max-height: 18px;
}

/* ── HERO ── */
.hero {
  min-height: 75vh;
  padding-top: var(--nav-h);
  padding-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: clamp(1.5rem, 6vw, 6rem);
  padding-right: clamp(1.5rem, 6vw, 6rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero__shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.shape--1 { width: 500px; height: 500px; background: var(--teal-light); top: -100px; right: -100px; }
.shape--2 { width: 400px; height: 400px; background: var(--blush-light); bottom: 0; left: -100px; }
.shape--3 { width: 300px; height: 300px; background: #FFF9C4; top: 40%; left: 30%; }

.hero__content { position: relative; z-index: 2; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.8rem;
  animation: fadeUp 0.8s 0.2s var(--ease) both;
}
.hero__title em {
  font-style: italic;
  color: var(--teal-dark);
}
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 1.2rem;
  animation: fadeUp 0.8s 0.3s var(--ease) both;
}
.hero__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  animation: fadeUp 0.8s 0.4s var(--ease) both;
}
.hero__trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.5s var(--ease) both;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  box-shadow: var(--shadow);
}
.trust-badge__icon { font-size: 1.4rem; }
.trust-badge strong { display: block; font-size: 0.88rem; font-weight: 700; line-height: 1.2; }
.trust-badge span { font-size: 0.75rem; color: var(--text-muted); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SERVICES ── */
.services {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background: var(--white);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--teal-mid);
}
.service-card__icon {
  width: 56px; height: 56px;
  background: var(--ic, #EEE);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.55;
}
.service-card__price {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.service-card__price strong {
  color: var(--teal-dark);
  font-size: 1rem;
  font-weight: 700;
}
.service-card__link {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal-dark);
  transition: color 0.2s;
  display: inline-block;
}
.service-card__link:hover { color: var(--text); text-decoration: underline; }

/* ── WHY ── */
.why {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background: var(--cream-dark);
}
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.why__image {
  position: relative;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.why__photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--blush-light) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.why__photo-placeholder img,
.hero__photo-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.why__blob {
  position: absolute;
  width: 80%;
  height: 80%;
  background: var(--teal-mid);
  border-radius: 50%;
  top: 10%; left: 10%;
  z-index: -1;
  filter: blur(40px);
  opacity: 0.4;
}
.why__stat {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.2rem;
  box-shadow: var(--shadow);
  text-align: center;
  z-index: 2;
}
.why__stat--1 { bottom: 1rem; left: -1.5rem; }
.why__stat--2 { top: 1rem; right: -1.5rem; }
.why__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--teal-dark);
  line-height: 1;
}
.why__stat span { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; }

.why__content p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.why__skills-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 1.5rem 0 1rem;
  color: var(--text);
}
.why__list {
  list-style: none;
  margin-bottom: 2rem;
}
.why__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.why__list li span { font-size: 1rem; flex-shrink: 0; color: var(--teal-dark); }

/* ── GALLERY ── */
.gallery {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background: var(--white);
}

/* Instagram-style 3×3 grid — STAYS 3 columns on mobile
   so the section doesn't stretch into a long vertical tower */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(4px, 1vw, 12px);
  max-width: 720px;
  margin: 0 auto;
}
.ig-grid__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--cream-dark);
  display: block;
  cursor: pointer;
}
.ig-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.3s;
}
.ig-grid__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 3vw, 1.8rem);
  background: rgba(74,194,193,0.0);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
  pointer-events: none;
}
.ig-grid__item:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}
.ig-grid__item:hover .ig-grid__overlay {
  opacity: 1;
  background: rgba(74,194,193,0.25);
}

.gallery__note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}
.gallery__note a { color: var(--teal-dark); font-weight: 700; }
.gallery__note a:hover { text-decoration: underline; }

/* ── SHOP PROMO ── */
.shop-promo {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
}
.shop-promo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.shop-promo .section-tag {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.shop-promo .section-title { color: var(--white); }
.shop-promo p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}
.shop-promo .btn--primary {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--white);
}
.shop-promo .btn--primary:hover {
  background: var(--cream);
  color: var(--teal-dark);
  border-color: var(--cream);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.shop-promo__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.mini-product {
  background: var(--pc, #FFF);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s;
}
.mini-product:hover { transform: translateY(-4px); }
.mini-product__emoji { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.mini-product p { font-size: 0.88rem; font-weight: 700; color: var(--text); }

/* ── REVIEWS ── */
.reviews {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background: var(--cream);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}
.review-card--accent {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--white) 100%);
  border-color: var(--teal-mid);
}
.review-card__stars { font-size: 1rem; margin-bottom: 1rem; }
.review-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.review-card__author { display: flex; align-items: center; gap: 0.75rem; }
.review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--av, #FFB74D);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.review-card__author strong { display: block; font-size: 0.9rem; }
.review-card__author span  { font-size: 0.75rem; color: var(--text-muted); }

/* ── BOOKING ── */
.booking {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background: var(--cream-dark);
}
.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.booking__content p { color: var(--text-mid); margin-bottom: 2rem; }
.booking__contact-items { display: flex; flex-direction: column; gap: 1rem; }
.booking__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
}
.booking__contact-item span:first-child { font-size: 1.2rem; }
.booking__contact-item a { color: var(--teal-dark); }
.booking__contact-item a:hover { text-decoration: underline; }

/* ── FORMS ── */
.booking__form, .checkout__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(74,194,193,0.2);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--text);
  color: var(--white);
}
.footer__bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* ── SHOP PAGE ── */
.shop-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--blush-light) 100%);
  text-align: center;
}
.shop-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text);
}
.shop-hero__sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto;
}

.shop-filters {
  padding: 1.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}
.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  padding: 0.5rem 1.1rem;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.shop-products { padding: 4rem 0 6rem; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--teal-mid);
}
.product-card__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  z-index: 2;
}
.product-card__badge--fav { background: #FFF9C4; color: #8B6914; }
.product-card__badge--new { background: var(--teal-light); color: var(--teal-dark); }
.product-card__img {
  background: var(--pc, #EEE);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-card__img { transform: scale(1.08); }
.product-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.35rem;
}
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.product-card__desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1.25rem;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

/* ── CART SIDEBAR ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,36,22,0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(400px, 95vw);
  background: var(--cream);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 40px rgba(44,36,22,0.15);
}
.cart.open { transform: translateX(0); }
.cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cart__header h3 { font-family: var(--font-display); font-size: 1.3rem; }
.cart__close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-mid);
  padding: 0.25rem;
}
.cart__items { flex: 1; overflow-y: auto; padding: 1rem; }
.cart__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 100%;
  text-align: center;
  color: var(--text-muted);
}
.cart__empty span { font-size: 3rem; }
.cart__empty p { font-weight: 700; }
.cart__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
}
.cart__item-emoji { font-size: 1.8rem; width: 44px; text-align: center; }
.cart__item-info { flex: 1; }
.cart__item-info strong { display: block; font-size: 0.88rem; font-weight: 700; }
.cart__item-info small { font-size: 0.75rem; color: var(--text-muted); }
.cart__item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart__qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--cream);
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.cart__qty-btn:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.cart__item-qty { font-size: 0.88rem; font-weight: 700; min-width: 20px; text-align: center; }
.cart__item-price { font-size: 0.9rem; font-weight: 700; color: var(--teal-dark); min-width: 52px; text-align: right; }

.cart__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.cart__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cart__total strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--teal-dark); }
.cart__note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

.cart-fab {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 0.9rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(74,194,193,0.4);
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}
.cart-fab:hover { background: var(--teal-dark); transform: translateY(-2px); }
.cart-fab__count {
  background: var(--white);
  color: var(--teal-dark);
  border-radius: 50%;
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
}

/* ── CHECKOUT ── */
.checkout-section {
  padding: calc(var(--nav-h) + 3rem) 0 6rem;
  min-height: 100dvh;
}
.checkout__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.checkout__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.checkout__summary, .checkout__form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.checkout__summary h2, .checkout__form-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.checkout__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.checkout__item-emoji { font-size: 1.5rem; }
.checkout__item-info { flex: 1; }
.checkout__item-info strong { display: block; font-weight: 700; }
.checkout__item-info span { font-size: 0.8rem; color: var(--text-muted); }
.checkout__totals { margin-top: 1rem; }
.checkout__line {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.checkout__line--total {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  border-top: 2px solid var(--border);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}
.checkout__note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  text-align: center;
}
.checkout__payment-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--teal-light);
  border: 1px solid var(--teal-mid);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.checkout__payment-note span { font-size: 1.2rem; flex-shrink: 0; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem;
    text-align: center;
  }
  .hero__actions, .hero__trust { justify-content: center; }
  .why__inner { grid-template-columns: 1fr; gap: 3rem; }
  .why__image { max-width: 400px; margin: 0 auto; position: static; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .shop-promo__inner { grid-template-columns: 1fr; }
  .booking__inner { grid-template-columns: 1fr; gap: 2rem; }
  .checkout__layout { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title--left { justify-content: center; text-align: center; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cart-fab { bottom: 1rem; right: 1rem; }

  .nav__logo { font-size: 1rem; }
  .nav__logo img.title-logo { height: 16px; max-height: 16px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .shop-promo__cards { grid-template-columns: 1fr 1fr; }
  .hero__trust { flex-direction: column; align-items: center; }
  .booking__form, .checkout__form { padding: 1.5rem; }
}

/* Product image container with 3:4 aspect ratio (width: height) */
.product-card__img {
  aspect-ratio: 3 / 4;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0; /* optional background */
  border-radius: 8px;
}

/* Style for the image inside the container */
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures image covers container without distortion, cropping if needed */
}