/* ===== Design Tokens — Floral Pink-White Theme (D&D flowers) ===== */
:root {
  --bg: #ffffff;
  --bg-elevated: #fdf3f5;
  --surface: #fce8ed;
  --surface-2: #f8d4dc;
  --border: rgba(232, 119, 138, 0.18);
  --text-primary: #2d1a1f;
  --text-secondary: #6b3d48;
  --text-muted: #9c6b76;
  --accent: #e8778a;
  --accent-hover: #d4556b;
  --accent-soft: rgba(232, 119, 138, 0.12);
  --accent-glow: rgba(232, 119, 138, 0.25);
  --error: #ef4444;
  --cta-bg: #e8778a;
  --cta-bg-solid: #e8778a;
  --cta-text: #ffffff;
  --cta-hover: #d4556b;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-md: 0 12px 32px -8px rgba(212, 85, 107, 0.25);
  --shadow-lg: 0 24px 60px -12px rgba(212, 85, 107, 0.2);
  --shadow-purple: 0 16px 48px -12px rgba(232, 119, 138, 0.15);
  --container: 1180px;
  --transition: 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, .logo-text, .main-nav a, .mobile-nav a, .footer-nav a, .btn {
  font-family: var(--font-display);
}
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
}
.btn:active { transform: scale(0.97); }
.btn-cta { background: var(--cta-bg); color: var(--cta-text); box-shadow: 0 8px 24px -8px rgba(212, 85, 107, 0.35); }
.btn-cta:hover { background: var(--cta-hover); box-shadow: 0 12px 32px -8px rgba(212, 85, 107, 0.45); transform: translateY(-1px); }
.btn-cta:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.btn-outline { background: transparent; color: var(--text-primary); border-color: rgba(232, 119, 138, 0.4); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.hero .btn-outline { color: #ffffff; border-color: rgba(255, 255, 255, 0.6); }
.hero .btn-outline:hover { background: rgba(255,255,255,0.15); color: #ffffff; border-color: #ffffff; }
.btn-ghost { background: transparent; color: var(--text-secondary); text-transform: none; letter-spacing: 0; font-weight: 600; border: none; }
.btn-ghost:hover { color: var(--accent); }
.btn-lg { padding: 17px 36px; font-size: 15px; }
.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-block { width: 100%; margin-top: 8px; padding: 16px; font-size: 16px; }

/* Reveal animations moved to the bottom */

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 10px 0;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(232,119,138,0.12);
  transition: padding var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  width: 100%;
}
.header-logo-center {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: 2;
  padding: 0 16px;
}
.header-logo-center a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}
.logo-avatar-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2.5px solid var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px var(--accent-soft), 0 4px 16px rgba(232,119,138,0.2);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
}
.logo-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.logo-avatar-circle:hover {
  border-color: var(--accent-hover);
  box-shadow: 0 0 0 4px var(--accent-glow), 0 6px 20px rgba(212,85,107,0.28);
  transform: scale(1.05);
}
/* Nav ліворуч — займає всю ліву половину, пункти розподілені рівномірно */
.nav-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 32px;
  grid-column: 1;
  width: 100%;
}
/* Nav праворуч — займає всю праву половину */
.nav-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 32px;
  grid-column: 3;
  width: 100%;
}
.nav-left a, .nav-right a {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-left a:hover, .nav-right a:hover { color: var(--accent); }
.main-nav { display: none; }
.header-actions { display: none; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 101; }
.burger span { width: 22px; height: 2px; background: var(--accent); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Mobile nav ===== */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(255,245,247,0.98);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: transform 350ms cubic-bezier(0.16,1,0.3,1), opacity 350ms, visibility 350ms;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav a { font-size: 22px; font-weight: 700; color: var(--accent); letter-spacing: 0.04em; transition: color var(--transition); }
.mobile-nav a:hover { color: var(--accent-hover); }
.mobile-nav .btn { margin-top: 8px; width: 240px; }
.mobile-nav .btn-cta { color: #ffffff; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
/* Фото букета: cover, позиція правіше щоб букет був справа */
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.hero-bg-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #f9d0d8 0%, #f4a7b8 30%, #e8778a 60%, #c94f70 100%);
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(30,10,20,0.65) -5%, rgba(30,10,20,0.35) 30%, transparent 65%),
    linear-gradient(90deg, rgba(30,10,20,0.82) 0%, rgba(30,10,20,0.5) 40%, rgba(30,10,20,0.1) 65%, transparent 100%);
}
/* Текстовий контент — вліво, займає ліву половину */
.hero-inner {
  position: relative; z-index: 1;
  max-width: 52%;
  text-align: left;
  align-self: center;
}
.hero-title { text-align: left; }
.hero-sub { text-align: left; }
.hero-actions { justify-content: flex-start; }
.hero-meta { justify-content: flex-start; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.45);
  color: #ffffff; font-family: var(--font-body); font-size: 13px; font-weight: 600;
  margin-bottom: 22px; letter-spacing: 0.02em;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(3rem, 7.5vw, 5.4rem);
  font-weight: 700; line-height: 1.1; letter-spacing: 0.01em; margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(45,26,31,0.3);
}
.hero-title em {
  font-style: italic; font-family: var(--font-serif);
  color: #fce8ed; display: block; font-size: 1.05em; line-height: 1.05;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 400;
  font-style: normal;
  color: rgba(255,255,255,0.9); max-width: 520px; margin-bottom: 32px; line-height: 1.65;
  text-shadow: 0 1px 8px rgba(45,26,31,0.25);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta { display: flex; gap: 10px; flex-wrap: wrap; color: rgba(255,255,255,0.75); font-family: var(--font-body); font-size: 13px; }

/* ===== Trust bar ===== */
.trust-bar {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 35%, var(--bg-elevated) 100%);
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; align-items: flex-start; gap: 14px; }
.trust-item svg { width: 28px; height: 28px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.trust-item strong { display: block; font-family: var(--font-display); font-size: 15px; margin-bottom: 4px; letter-spacing: 0.02em; color: var(--text-primary); }
.trust-item span { color: var(--text-secondary); font-size: 13px; line-height: 1.4; }

/* ===================================================
   BESTSELLERS / POPULAR BOUQUETS SECTION
   =================================================== */
.bestsellers-section {
  padding: 96px 0;
  background: var(--bg);
}
.bestsellers-section .section-head {
  text-align: center;
  margin-bottom: 52px;
}
.bestsellers-section .section-title {
  text-align: center;
  max-width: none;
  color: var(--text-primary);
}
.bestsellers-section .section-desc {
  text-align: center;
  max-width: none;
  margin: 0 auto;
}

/* Продуктовий grid: 3 колонки, 2 ряди */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Картка товару */
.product-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(232,119,138,0.10);
  border: 1px solid var(--border);
  transition: transform 0.28s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.28s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.logo-avatar-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2.5px solid var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px var(--accent-soft), 0 4px 16px rgba(232,119,138,0.2);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
}
.logo-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.logo-avatar-circle:hover {
  border-color: var(--accent-hover);
  box-shadow: 0 0 0 4px var(--accent-glow), 0 6px 20px rgba(212,85,107,0.28);
  transform: scale(1.05);
}
/* Nav ліворуч — займає всю ліву половину, пункти розподілені рівномірно */
.nav-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 32px;
  grid-column: 1;
  width: 100%;
}
/* Nav праворуч — займає всю праву половину */
.nav-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 32px;
  grid-column: 3;
  width: 100%;
}
.nav-left a, .nav-right a {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-left a:hover, .nav-right a:hover { color: var(--accent); }
.main-nav { display: none; }
.header-actions { display: none; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 101; }
.burger span { width: 22px; height: 2px; background: var(--accent); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Mobile nav ===== */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(255,245,247,0.98);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: transform 350ms cubic-bezier(0.16,1,0.3,1), opacity 350ms, visibility 350ms;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav a { font-size: 22px; font-weight: 700; color: var(--accent); letter-spacing: 0.04em; transition: color var(--transition); }
.mobile-nav a:hover { color: var(--accent-hover); }
.mobile-nav .btn { margin-top: 8px; width: 240px; }
.mobile-nav .btn-cta { color: #ffffff; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
/* Фото букета: cover, позиція правіше щоб букет був справа */
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.hero-bg-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #f9d0d8 0%, #f4a7b8 30%, #e8778a 60%, #c94f70 100%);
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(30,10,20,0.65) -5%, rgba(30,10,20,0.35) 30%, transparent 65%),
    linear-gradient(90deg, rgba(30,10,20,0.82) 0%, rgba(30,10,20,0.5) 40%, rgba(30,10,20,0.1) 65%, transparent 100%);
}
/* Текстовий контент — вліво, займає ліву половину */
.hero-inner {
  position: relative; z-index: 1;
  max-width: 52%;
  text-align: left;
  align-self: center;
}
.hero-title { text-align: left; }
.hero-sub { text-align: left; }
.hero-actions { justify-content: flex-start; }
.hero-meta { justify-content: flex-start; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.45);
  color: #ffffff; font-family: var(--font-body); font-size: 13px; font-weight: 600;
  margin-bottom: 22px; letter-spacing: 0.02em;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(3rem, 7.5vw, 5.4rem);
  font-weight: 700; line-height: 1.1; letter-spacing: 0.01em; margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(45,26,31,0.3);
}
.hero-title em {
  font-style: italic; font-family: var(--font-serif);
  color: #fce8ed; display: block; font-size: 1.05em; line-height: 1.05;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 400;
  font-style: normal;
  color: rgba(255,255,255,0.9); max-width: 520px; margin-bottom: 32px; line-height: 1.65;
  text-shadow: 0 1px 8px rgba(45,26,31,0.25);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta { display: flex; gap: 10px; flex-wrap: wrap; color: rgba(255,255,255,0.75); font-family: var(--font-body); font-size: 13px; }

/* ===== Trust bar ===== */
.trust-bar {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 35%, var(--bg-elevated) 100%);
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; align-items: flex-start; gap: 14px; }
.trust-item svg { width: 28px; height: 28px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.trust-item strong { display: block; font-family: var(--font-display); font-size: 15px; margin-bottom: 4px; letter-spacing: 0.02em; color: var(--text-primary); }
.trust-item span { color: var(--text-secondary); font-size: 13px; line-height: 1.4; }

/* ===================================================
   BESTSELLERS / POPULAR BOUQUETS SECTION
   =================================================== */
.bestsellers-section {
  padding: 96px 0;
  background: var(--bg);
}
.bestsellers-section .section-head {
  text-align: center;
  margin-bottom: 52px;
}
.bestsellers-section .section-title {
  text-align: center;
  max-width: none;
  color: var(--text-primary);
}
.bestsellers-section .section-desc {
  text-align: center;
  max-width: none;
  margin: 0 auto;
}

/* Продуктовий grid: 3 колонки, 2 ряди */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Картка товару */
.product-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(232,119,138,0.10);
  border: 1px solid var(--border);
  transition: transform 0.28s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.28s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(212,85,107,0.20);
}

/* Медіа-блок (фото + wishlist) */
.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #fce8ed 0%, #f9d0d8 50%, #f4a7b8 100%);
  flex-shrink: 0;
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  display: block;
}
.product-card:hover .product-media img {
  transform: scale(1.05);
}

/* Плейсхолдер якщо немає фото */
.product-media-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: var(--accent);
}
.product-media-placeholder svg {
  width: 56px; height: 56px;
  opacity: 0.45;
}
.product-media-placeholder span {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

/* Wishlist кнопка */
.product-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #c0c0c8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  z-index: 2;
}
.product-wishlist:hover,
.product-wishlist.active {
  color: var(--accent);
  background: #ffffff;
  transform: scale(1.1);
}
.product-wishlist.active svg { fill: var(--accent); }

/* Контент картки — по центру */
.product-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  align-items: center;
  text-align: center;
}
.product-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-align: center;
  transition: color var(--transition);
}
.product-card:hover .product-name { color: var(--accent); }
.product-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.01em;
  text-align: center;
}
.product-card-footer {
  margin-top: auto;
  padding-top: 14px;
  width: 100%;
}
/* Кнопка "В кошик" */
.btn-cart {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--surface);
  color: var(--accent);
  border: 2px solid var(--accent);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-cart:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(212,85,107,0.3);
}
.btn-cart svg { width: 16px; height: 16px; }

/* CTA під гридом */
.bestsellers-cta {
  text-align: center;
  margin-top: 44px;
}



/* ===== Sections ===== */
.section { padding: 96px 0; }
.section-dark {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 10%, var(--bg-elevated) 90%, var(--bg) 100%);
}
.section-blue {
  background: linear-gradient(135deg, #e8778a 0%, #d4556b 100%);
  color: #ffffff;
}
.section-blue .section-title,
.section-blue .section-desc {
  color: #ffffff;
}
.section-blue .section-desc a {
  color: #fce8ed; /* Light blue for links on dark blue background */
}
.section-blue p,
.section-blue ul,
.section-blue li {
  color: rgba(255, 255, 255, 0.92);
}
.section-blue .btn-ghost {
  color: #ffffff;
}
.section-head { margin-bottom: 52px; }
.section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 800; letter-spacing: -0.01em; margin-bottom: 14px; max-width: 680px; line-height: 1.1;
}
.section-title.center { max-width: none; }
.section-desc { color: var(--text-secondary); max-width: 600px; font-size: 16px; }
.section-desc.center { max-width: none; }
.section-desc a { color: var(--accent); font-weight: 600; }
.section-desc a:hover { text-decoration: underline; }

/* ===== Price Table — Menu Style ===== */
.price-table-wrap {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  /* Desktop: 3 columns side by side */
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto 1fr;
}

.pt-footer {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.02);
  flex-wrap: wrap;
  text-align: center;
}

.pt-category {
  border-right: 1px solid var(--border);
  border-bottom: none;
  display: flex;
  flex-direction: column;
}
.pt-category:last-of-type { border-right: none; border-bottom: none; }

.pt-cat-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px 14px;
  background: rgba(255,255,255,0.04);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pt-cat-label svg { color: var(--accent); flex-shrink: 0; }

.pt-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition);
}
.pt-row:last-child { border-bottom: none; }
.pt-row:hover { background: rgba(255,255,255,0.04); }

.pt-name {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.pt-dots {
  flex: 1;
  height: 1px;
  border-bottom: 1.5px dotted rgba(255,255,255,0.15);
  margin: 0 6px;
  min-width: 20px;
}

.pt-time {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.pt-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.03em;
  min-width: 90px;
  text-align: right;
}

.pt-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  flex-wrap: wrap;
}
.pt-note {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
}
.pt-note a {
  color: var(--text-primary);
  font-weight: 600;
  transition: color var(--transition);
}
.pt-note a:hover { color: var(--accent); }

/* ===== Review author ===== */
.review-author {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ===== Advantages Full Width ===== */
.advantages-full-width {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.adv-row {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.adv-img-half, .adv-text-half {
  width: 100%;
}
.adv-img-half {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.adv-img-half {
  background: var(--bg);
}
.adv-img-half img, .adv-placeholder {
  width: 100%;
  max-width: 380px;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  color: #94a3b8;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 auto;
}

.adv-text-half {
  background: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}


.adv-text-inner {
  max-width: 580px;
  width: 100%;
}
.adv-title {
  font-family: var(--font-display);
  font-size: 44px;
  margin-bottom: 28px;
  font-weight: 700;
  color: #ffffff;
}

.adv-desc {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.9;
}

.adv-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}
.adv-list li {
  margin-bottom: 12px;
  font-size: 17px;
  padding-left: 28px;
  position: relative;
  opacity: 0.95;
}

.adv-list li::before {
  content: "•";
  color: inherit;
  font-weight: bold;
  font-size: 22px;
  position: absolute;
  left: 6px;
  top: -2px;
}

/* Animations */
.adv-anim-row .adv-img-half,
.adv-anim-row .adv-text-inner .adv-title,
.adv-anim-row .adv-text-inner .adv-desc,
.adv-anim-row .adv-text-inner .adv-list li {
  opacity: 0;
}
.adv-anim-row.is-visible .adv-img-half {
  animation: fadeUp 0.7s ease-out forwards;
}
.adv-anim-row.is-visible .adv-text-inner .adv-title {
  animation: fadeSide 0.6s ease-out 0.2s forwards;
}
.adv-anim-row.is-visible .adv-text-inner .adv-desc:nth-of-type(1) { animation: fadeSide 0.6s ease-out 0.3s forwards; }
.adv-anim-row.is-visible .adv-text-inner .adv-desc:nth-of-type(2) { animation: fadeSide 0.6s ease-out 0.4s forwards; }
.adv-anim-row.is-visible .adv-text-inner .adv-list li:nth-child(1) { animation: fadeSide 0.5s ease-out 0.50s forwards; }
.adv-anim-row.is-visible .adv-text-inner .adv-list li:nth-child(2) { animation: fadeSide 0.5s ease-out 0.55s forwards; }
.adv-anim-row.is-visible .adv-text-inner .adv-list li:nth-child(3) { animation: fadeSide 0.5s ease-out 0.60s forwards; }
.adv-anim-row.is-visible .adv-text-inner .adv-list li:nth-child(4) { animation: fadeSide 0.5s ease-out 0.65s forwards; }

.adv-row-reverse.adv-anim-row.is-visible .adv-text-inner .adv-title,
.adv-row-reverse.adv-anim-row.is-visible .adv-text-inner .adv-desc,
.adv-row-reverse.adv-anim-row.is-visible .adv-text-inner .adv-list li {
  animation-name: fadeSideLeft;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSide {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeSideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (min-width: 768px) {
  .adv-row {
    flex-direction: row;
  }
  .adv-row.adv-row-reverse {
    flex-direction: row-reverse;
  }
  .adv-img-half, .adv-text-half {
    width: 50%;
  }
  .adv-img-half {
    padding: 80px 40px;
  }
  .adv-img-half img, .adv-placeholder {
    max-width: 420px;
  }
  .adv-text-half {
    padding: 120px 80px;
  }
}

/* ===== Services Carousel ===== */
.services-section {
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}
/* Custom Fixed Slots Carousel */
.custom-carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 60px 0;
  overflow: hidden;
}
.custom-carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  position: relative;
}
.custom-carousel-btn {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 50px; height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  color: var(--accent);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  transition: background 0.3s, transform 0.3s;
}
.custom-carousel-btn:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.custom-carousel-btn.prev-btn { left: 15px; }
.custom-carousel-btn.next-btn { right: 15px; }
.custom-carousel-btn svg { width: 24px; height: 24px; }

.service-card {
  display: block;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  aspect-ratio: 4/5;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.3s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
.service-card:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.service-card.fading {
  opacity: 0 !important;
}

/* Slots sizing */
.slot-center {
  width: 380px;
  z-index: 5;
  opacity: 1;
}
.slot-center:hover {
  transform: translateY(-5px) scale(1.03);
}

.slot-left-1, .slot-right-1 {
  width: 300px;
  z-index: 4;
  opacity: 0.8;
}
.slot-left-1:hover, .slot-right-1:hover {
  opacity: 1;
}

.slot-left-2, .slot-right-2 {
  width: 230px;
  z-index: 3;
  opacity: 0.4;
}
.slot-left-2:hover, .slot-right-2:hover {
  opacity: 0.6;
}

/* Base styles for card contents */
.service-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover img { transform: scale(1.06); }
.service-card-footer {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 25%;
  background: rgba(255, 255, 255, 0.95);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 10px;
}
.service-card-footer h3 {
  margin: 0; color: #111; font-size: 17px; font-weight: 700;
}

/* ===== About / Why Us ===== */
.about-section {
  padding: 96px 0;
  background: #fce8ed !important;
}
/* Desktop: 2 columns 50/50 */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ---- Photo Collage (left column) ----
   Структура: великий зліва + права колонка з двох маленьких (як референс) */
.about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(212,85,107,0.12);
  align-items: stretch;
}

/* Права колонка — два маленьких стековані вертикально */
.about-collage-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Великий елемент (лівий) */
.about-collage-item--big {
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #fce8ed 0%, #f9d0d8 50%, #f4a7b8 100%);
  aspect-ratio: 3 / 4;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Маленькі елементи (права колонка) */
.about-collage-item--sm {
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #fce8ed 0%, #f9d0d8 50%, #f4a7b8 100%);
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
}

.about-collage-item--big img,
.about-collage-item--sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 500ms cubic-bezier(0.16,1,0.3,1);
}
.about-collage-item--big:hover img,
.about-collage-item--sm:hover img {
  transform: scale(1.04);
}
/* Placeholder when no image */
.about-collage-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: 0.35;
}
.about-collage-ph svg {
  width: 40px;
  height: 40px;
}
/* Стара нотація для сумісності */
.about-collage-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.about-collage-placeholder svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
  opacity: 0.35;
}

/* ---- Text Content (right column) ---- */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  padding-top: 8px;
}
.about-content .section-title {
  color: var(--text-primary);
  margin-bottom: 14px;
}
.about-content .about-intro {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Advantage list */
.about-advantages {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.about-advantage {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about-advantage-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  box-shadow: 0 4px 14px rgba(232,119,138,0.13);
  transition: background var(--transition), box-shadow var(--transition);
}
.about-advantage:hover .about-advantage-icon {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(212,85,107,0.28);
}
.about-advantage-icon svg {
  width: 22px;
  height: 22px;
}
.about-advantage-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 4px;
}
.about-advantage-title {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.about-advantage-sub {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* CTA button row */
.about-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Reviews ===== */
.reviews-section { padding: 96px 0; background: #fce8ed !important; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.review-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 24px rgba(232,119,138,0.06);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px;
  position: relative;
}
.review-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(212,85,107,0.12); }
.review-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: #fce8ed;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 4px;
}
.review-stars { 
  color: #ffc107; 
  font-size: 17px; 
  letter-spacing: 3px;
  display: flex;
  gap: 4px;
  justify-content: center;
  width: 100%;
}
.review-stars svg { width: 20px; height: 20px; fill: currentColor; }
.review-author { display: none !important; }
.review-text {
  color: var(--text-secondary); font-family: var(--font-body);
  font-size: 14.5px; line-height: 1.7;
  max-width: 320px;
  margin: 0;
  flex-grow: 1;
}
/* ===== Booking ===== */
.booking-section {
  position: relative; overflow: hidden;
  padding: 120px 0; text-align: center;
}
.booking-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 100%); z-index: 3;
}
.booking-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%); z-index: 3;
}
.booking-bg { position: absolute; inset: 0; z-index: 0; }
.booking-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3) brightness(0.5); }
.booking-scrim { position: absolute; inset: 0; background: rgba(8,6,14,0.87); }
.ghost-watermark {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 13vw; line-height: 1;
  color: rgba(255,255,255,0.04); white-space: nowrap; pointer-events: none; user-select: none;
}
.booking-inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.booking-logo {
  width: 72px; height: 72px; border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(255,255,255,0.4);
  margin: 0 auto 28px;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.1);
}
.booking-logo img { width: 100%; height: 100%; object-fit: cover; }
.booking-form { max-width: 520px; margin: 24px auto 0; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-family: var(--font-display); font-size: 12px; font-weight: 700;
  color: var(--text-secondary); margin-bottom: 7px; letter-spacing: 0.07em; text-transform: uppercase;
}
.field input, .field textarea {
  width: 100%; padding: 13px 16px;
  background: #ffffff; border: 1.5px solid var(--border);
  border-radius: 10px; color: var(--text-primary);
  font-family: var(--font-body); font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field textarea { resize: vertical; min-height: 90px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: #ffffff;
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field input[aria-invalid="true"] { border-color: var(--error); }
.field-error { display: block; min-height: 16px; color: var(--error); font-family: var(--font-body); font-size: 12px; margin-top: 5px; }
.booking-status { margin-top: 14px; font-family: var(--font-body); font-size: 14px; min-height: 20px; text-align: center; }
.booking-status.success { color: #7cd992; }
.booking-status.error { color: var(--error); }
.booking-status.error a { color: #fff; text-decoration: underline; }
.booking-secondary { margin-top: 24px; color: var(--text-muted); font-family: var(--font-body); font-size: 14px; }
.booking-secondary a { color: var(--text-primary); font-weight: 600; transition: color var(--transition); }
.booking-secondary a:hover { color: var(--accent); }

/* ===== Contacts ===== */
.contacts-section { padding: 96px 0; }
.contacts-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 28px; align-items: stretch; }
.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); min-height: 420px;
  filter: grayscale(0.4) contrast(1.05);
}
.contacts-info {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.contacts-info h3 { font-size: 22px; font-weight: 800; margin-bottom: 24px; color: var(--accent); letter-spacing: 0.02em; }
.info-row { padding: 14px 0; border-bottom: 1px solid var(--border); }
.info-row:last-child { border-bottom: none; }
.info-row dt { color: var(--text-muted); font-family: var(--font-display); font-size: 11.5px; letter-spacing: 0.07em; margin-bottom: 4px; text-transform: uppercase; }
.info-row dd { color: var(--text-primary); font-family: var(--font-body); font-size: 15px; }
.info-row dd a { color: var(--text-primary); font-weight: 600; transition: color var(--transition); }
.info-row dd a:hover { color: var(--accent); }
.contacts-info .btn { margin-top: 24px; width: 100%; }

/* ===== Footer ===== */
.site-footer { background: var(--bg-elevated); border-top: 1px solid var(--border); padding: 44px 0 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; padding-bottom: 30px; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.footer-nav a {
  color: var(--text-secondary);
  font-family: 'Great Vibes', cursive !important;
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em;
  text-transform: none !important;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--accent); }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--text-secondary); transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.footer-socials a svg { width: 17px; height: 17px; }
.footer-socials a:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }

/* ===== Mobile Bottom Nav ===== */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  display: none; /* hidden on desktop */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -4px 20px rgba(232,119,138,0.06);
}
.mobile-bottom-nav .nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 0;
  color: var(--text-muted);
  text-decoration: none;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-bottom-nav .nav-item svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}
.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
  color: var(--accent);
}
.nav-icon-wrap {
  position: relative;
  display: inline-flex;
}
.cart-badge-bottom {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding: 18px 0; border-top: 1px solid var(--border);
  color: var(--text-muted); font-family: var(--font-body); font-size: 12px;
}

/* ===== Mobile CTA ===== */
.obsolete-mobile-cta {
  position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 90; display: none; align-items: center; gap: 8px;
  background: var(--accent); color: #ffffff;
  padding: 14px 28px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.04em;
  box-shadow: 0 12px 30px -8px rgba(212,85,107,0.5);
  white-space: nowrap;
}



/* ===== Categories ===== */
.categories-section {
  padding: 96px 0;
  background: var(--bg);
}
.categories-section .section-head {
  text-align: center;
  margin-bottom: 52px;
}
.categories-section .section-title {
  text-align: center;
  max-width: none;
  color: var(--text-primary);
}
.categories-section .section-desc {
  text-align: center;
  max-width: none;
  margin: 0 auto;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
.category-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #fce8ed 0%, #f9d0d8 50%, #f4a7b8 100%);
  box-shadow: 0 4px 16px rgba(232,119,138,0.08);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s cubic-bezier(0.16,1,0.3,1);
}
.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.category-card:hover .category-media {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(212,85,107,0.22);
}
.category-card:hover .category-media img {
  transform: scale(1.05);
}
.category-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  transition: color var(--transition);
}
.category-card:hover .category-title {
  color: var(--accent);
}
.category-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.category-placeholder svg {
  width: 48px; height: 48px;
  color: var(--accent);
  opacity: 0.4;
}



/* ===== Reviews ===== */
.reviews-section {
  padding: 96px 0;
  background: var(--bg);
}
.reviews-section .section-head {
  text-align: center;
  margin-bottom: 52px;
}
.reviews-section .section-title {
  text-align: center;
  max-width: none;
  color: var(--text-primary);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.review-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 24px rgba(232,119,138,0.06);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(212,85,107,0.12);
}
.review-stars {
  display: flex;
  gap: 4px;
  color: #ffc107; /* gold/accent for stars */
}
.review-stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.review-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  flex-grow: 1;
}
.review-author {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 8px;
}


/* ===================================================
   RESPONSIVE — Tablet (≤ 1024px)
   =================================================== */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 36px; }
  .about-collage { box-shadow: 0 12px 36px rgba(212,85,107,0.10); }
  .contacts-grid { grid-template-columns: 1fr; }
  .map-wrap { min-height: 320px; }
  .works-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .slot-center { width: 320px; }
  .slot-left-1, .slot-right-1 { width: 250px; }
  .slot-left-2, .slot-right-2 { width: 180px; }
  .nav-left { padding-right: 16px; }
  .nav-right { padding-left: 16px; }
  .nav-left a, .nav-right a { font-size: 11.5px; }
  /* Products: 2 колонки на планшеті */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .bestsellers-section { padding: 72px 0; }
}

/* ===================================================
   RESPONSIVE — Mobile (≤ 768px)
   =================================================== */
@media (max-width: 768px) {
  .nav-left, .nav-right { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-logo-center { grid-column: 1; justify-content: flex-start; padding-left: 0; }
  .burger { display: flex; grid-column: 3; }
  .mobile-bottom-nav { display: flex; }
  .site-header { padding: 10px 0; }
  .logo-avatar-circle { width: 44px; height: 44px; }
  .hero { padding-top: 70px; min-height: 100svh; }
  .hero-inner { max-width: 90% !important; padding-bottom: 40px; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.2rem); margin-bottom: 16px; }
  .hero-title em { font-size: 1.05em; }
  .hero-sub { font-size: 0.88rem; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 20px; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 16px; }
  .hero-meta { flex-direction: row; flex-wrap: wrap; gap: 2px 8px; font-size: 11.5px; line-height: 1.5; }
  .trust-bar { padding: 28px 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .trust-item { flex-direction: column; gap: 8px; text-align: center; align-items: center; }
  .trust-item svg { width: 26px; height: 26px; }
  .trust-item strong { font-size: 13.5px; }
  .trust-item span { font-size: 12px; }
  .products-grid { grid-template-columns: 1fr; gap: 14px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
  .reviews-section { padding: 56px 0; }
  .categories-section { padding: 56px 0; }
  .bestsellers-section { padding: 56px 0; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 32px; }
  .section-title { font-size: clamp(1.65rem, 7vw, 2.1rem); }
  .section-desc { font-size: 14.5px; }
  .price-table-wrap { border-radius: 12px; display: flex; flex-direction: column; }
  .pt-category { border-right: none; border-bottom: 1px solid var(--border); }
  .pt-category:last-of-type { border-bottom: none; }
  .pt-footer { grid-column: auto; }
  .pt-cat-label { padding: 14px 18px 12px; font-size: 11px; letter-spacing: 0.1em; }
  .pt-row { padding: 12px 18px; gap: 8px; }
  .pt-name { font-size: 14px; white-space: normal; }
  .pt-time { font-size: 11px; }
  .pt-price { font-size: 15px; min-width: 76px; }
  .pt-dots { min-width: 10px; }
  .pt-footer { padding: 18px; gap: 14px; flex-direction: column; align-items: flex-start; border-top: 1px solid var(--border); }
  .services-section { padding: 56px 0; }
  .works-grid { display: flex; flex-direction: row; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 12px; padding: 0 24px 14px; margin: 0 -24px; scrollbar-width: none; }
  .works-grid::-webkit-scrollbar { display: none; }
  .work-card { flex: 0 0 88vw; aspect-ratio: 3/4; scroll-snap-align: center; border-radius: var(--radius-md); }
  .works-cta { margin-top: 28px; }
  .about-section { padding: 56px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-collage-item--big { grid-row: auto; aspect-ratio: 1/1; }
  .about-collage-item--sm { aspect-ratio: 1/1; }
  .about-advantages { gap: 18px; }
  .about-content .about-intro { margin-bottom: 24px; font-size: 14.5px; }
  .about-media { order: -1; aspect-ratio: 16/10; border-radius: 14px; }
  .about-media img { object-position: center; }
  .about-content p { font-size: 14.5px; }
  .about-list { gap: 10px; }
  .about-list li { font-size: 14px; }
  .about-actions { flex-direction: column; gap: 12px; }
  .about-actions .btn { width: 100%; justify-content: center; }
  .reviews-section .container { overflow: visible; }
  .reviews-grid { display: flex; flex-direction: row; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 16px; padding: 0 24px 14px; margin: 0 -24px; scrollbar-width: none; }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review-card { flex: 0 0 78vw; max-width: 300px; scroll-snap-align: center; }
  .review-icon { width: 56px; height: 56px; }
  .review-text { font-size: 14px; max-width: 100%; }
  .review-stars { font-size: 16px; }
  .booking-section { padding: 72px 0; }
  .ghost-watermark { font-size: 22vw; letter-spacing: 0; }
  .booking-inner { padding: 0 4px; }
  .booking-form { max-width: 100%; }
  .field input, .field textarea { font-size: 16px; }
  .btn-block { font-size: 15px; padding: 15px; }
  .contacts-section { padding: 56px 0; }
  .contacts-grid { grid-template-columns: 1fr; gap: 20px; }
  .map-wrap { min-height: 260px; border-radius: 14px; }
  .contacts-info { padding: 22px 20px; border-radius: 14px; }
  .contacts-info h3 { font-size: 19px; margin-bottom: 18px; }
  .info-row { padding: 12px 0; }
  .info-row dd { font-size: 14.5px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 16px; padding-bottom: 24px; }
  .footer-nav { justify-content: center; gap: 14px; flex-wrap: wrap; }
  .footer-nav a { font-size: 12.5px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; font-size: 11px; gap: 4px; }
  body { padding-bottom: 76px; }
  .custom-carousel-wrapper { padding: 10px 0 40px 0; }
  .custom-carousel-track { gap: 10px; }
  .slot-center { width: 260px; }
  .slot-left-1, .slot-right-1 { width: 200px; }
  .slot-left-2, .slot-right-2 { width: 140px; }
  .custom-carousel-btn { width: 40px; height: 40px; top: auto; bottom: 0; transform: none; }
  .custom-carousel-btn.prev-btn { left: calc(50% - 50px); }
  .custom-carousel-btn.next-btn { right: calc(50% - 50px); }
  .custom-carousel-btn:hover { transform: scale(1.1); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: clamp(2.1rem, 10vw, 2.8rem); }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .booking-section { padding: 60px 0; }
  .obsolete-mobile-cta { padding: 13px 24px; font-size: 13.5px; bottom: 14px; }
  .btn-lg { padding: 15px 22px; font-size: 14px; }
  .section { padding: 48px 0; }
}

/* ===================================================
   RESPONSIVE — Extra small (≤ 360px)
   =================================================== */
@media (max-width: 360px) {
  .hero-title { font-size: 2rem; }
  .trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-item { flex-direction: row; text-align: left; align-items: flex-start; }
  .logo-text strong { font-size: 1em; letter-spacing: 0.12em; }
  .obsolete-mobile-cta { padding: 12px 20px; font-size: 13px; }
}



/* ===== FAQ ===== */
.faq-section { padding: 80px 0; }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq-icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ===== USER FONT OVERRIDES ===== */

.hero-sub {
  font-family: var(--font-body) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  transform: skewX(-12deg);
  transform-origin: left bottom;
  display: block;
}
.trust-item span {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}
.about-list li {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-size: 17px !important;
  font-weight: 500 !important;
}
.adv-list li {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-size: 19px !important;
  font-weight: 500 !important;
}

/* ===== ADVANCED ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.reveal.is-hidden-up {
  transform: translateY(40px);
}
.reveal.is-hidden-down, .reveal:not(.is-visible):not(.is-hidden-up) {
  transform: translateY(40px);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Carousel crossfade */
.service-card {
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow var(--transition) !important;
}
.service-card.fading {
  opacity: 0 !important;
}

/* Stagger icons */
.trust-item.reveal { transition-delay: 0.1s; }
.trust-item.reveal:nth-child(2) { transition-delay: 0.2s; }
.trust-item.reveal:nth-child(3) { transition-delay: 0.3s; }
.trust-item.reveal:nth-child(4) { transition-delay: 0.4s; }

/* Stagger review cards */
.review-card.reveal { transition-delay: 0.1s; }
.review-card.reveal:nth-child(2) { transition-delay: 0.25s; }
.review-card.reveal:nth-child(3) { transition-delay: 0.4s; }

/* Image scale */
.about-media.reveal {
  transform: scale(0.95);
}
.about-media.reveal.is-visible {
  transform: scale(1);
}

/* About text & list stagger */
.about-content.reveal { transition-delay: 0.15s; }
.about-list li {
  opacity: 0;
  transform: translateX(-15px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.about-content.reveal.is-visible .about-list li {
  opacity: 1;
  transform: translateX(0);
}
.about-content.reveal.is-visible .about-list li:nth-child(1) { transition-delay: 0.2s; }
.about-content.reveal.is-visible .about-list li:nth-child(2) { transition-delay: 0.28s; }
.about-content.reveal.is-visible .about-list li:nth-child(3) { transition-delay: 0.36s; }
.about-content.reveal.is-visible .about-list li:nth-child(4) { transition-delay: 0.44s; }

/* FAQ stagger */
.faq-container.reveal .faq-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.faq-container.reveal.is-visible .faq-item {
  opacity: 1;
  transform: translateY(0);
}
.faq-container.reveal.is-visible .faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-container.reveal.is-visible .faq-item:nth-child(2) { transition-delay: 0.18s; }
.faq-container.reveal.is-visible .faq-item:nth-child(3) { transition-delay: 0.26s; }
.faq-container.reveal.is-visible .faq-item:nth-child(4) { transition-delay: 0.34s; }
.faq-container.reveal.is-visible .faq-item:nth-child(5) { transition-delay: 0.42s; }

/* Buttons bounce/scale */
.reveal .btn {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, background-color var(--transition), color var(--transition);
}
.reveal.is-visible .btn {
  opacity: 1;
  transform: scale(1);
}
.reveal.is-visible .btn:hover {
  transform: translateY(-2px);
}

/* Choices.js Overrides */
.choices {
  margin-bottom: 0;
}
.choices__inner {
  width: 100%;
  padding: 10px 16px !important;
  background: #ffffff !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 10px !important;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  min-height: 52px;
  display: flex;
  align-items: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.is-focused .choices__inner, .is-open .choices__inner {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px var(--accent-soft) !important;
}
.choices[data-type*="select-multiple"] .choices__button, .choices[data-type*="text"] .choices__button {
  border-left: 1px solid rgba(255,255,255,0.4);
  margin-left: 6px;
}
.choices__list--multiple .choices__item {
  background-color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
}
.choices__list--dropdown {
  border-radius: 10px !important;
  border: 1.5px solid var(--border) !important;
  box-shadow: var(--shadow-md);
  margin-top: 4px;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: var(--surface);
  color: var(--accent);
}


/* ===== Global Header Cart Button ===== */
.header-cart-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  transition: color var(--transition);
}
.header-cart-btn:hover {
  color: var(--accent);
}
.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(25%, -25%);
}

/* ===== Product Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,10,20,0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.product-modal {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 900px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.modal-overlay.open .product-modal {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.8);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--text-secondary);
  transition: background var(--transition), color var(--transition);
}
.modal-close:hover {
  background: #f0f0f5;
  color: var(--text-primary);
}
.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.pm-image {
  background: linear-gradient(135deg, #fce8ed 0%, #f9d0d8 50%, #f4a7b8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.pm-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pm-info {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pm-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.pm-price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
}
.pm-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.pm-controls {
  display: flex;
  gap: 16px;
  align-items: center;
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  height: 48px;
}
.qty-control.qty-sm {
  height: 36px;
  border-radius: 8px;
}
.qty-btn {
  background: none;
  border: none;
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-secondary);
  transition: background var(--transition);
}
.qty-control.qty-sm .qty-btn { width: 30px; }
.qty-btn:hover { background: #f0f0f5; color: var(--text-primary); }
.qty-input {
  width: 40px;
  text-align: center;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-primary);
  outline: none;
  -moz-appearance: textfield;
}
.qty-control.qty-sm .qty-input { width: 30px; font-size: 14px; }
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ===== Cart Drawer ===== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,10,20,0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}
.cart-drawer {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 400px;
  max-width: 100vw;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer-header h2 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0;
}
.cart-drawer-header .modal-close {
  position: relative;
  top: auto; right: auto;
}
.cart-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-secondary);
  font-family: var(--font-body);
}
.cart-empty svg {
  width: 64px; height: 64px;
  margin-bottom: 16px;
  color: #dcdce2;
}
.cart-item {
  display: flex;
  gap: 16px;
}
.cart-item img, .cart-item-placeholder {
  width: 80px; height: 80px;
  border-radius: 12px;
  object-fit: cover;
}
.cart-item-placeholder {
  background: linear-gradient(135deg, #fce8ed 0%, #f9d0d8 50%, #f4a7b8 100%);
  display: flex; align-items: center; justify-content: center;
}
.cart-item-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.cart-item-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.cart-item-price {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: auto;
}
.cart-item-controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.cart-item-remove {
  background: none; border: none;
  color: #999;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}
.cart-item-remove:hover { color: #ff4d4f; }
.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  background: #fafafc;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .product-modal-grid { grid-template-columns: 1fr; }
  .pm-image { min-height: 300px; }
  .pm-info { padding: 32px 24px; }
  .pm-title { font-size: 24px; }
  
  .cart-drawer { width: 100%; }
}

/* ===== GLOBAL HEADER FONTS (GREAT VIBES) ===== */
.nav-left a, .nav-right a, .header-cart-btn { font-family: 'Great Vibes', cursive !important; font-size: 1.45rem !important; letter-spacing: 0.01em !important; text-transform: none !important; font-weight: 400 !important; }
.header-cart-btn svg { width: 24px !important; height: 24px !important; stroke-width: 1.5 !important; }

