@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Great+Vibes&family=DM+Sans:wght@300;400;500&display=swap');

/* ─────────────────────────────────────────
   Magenta flowers if — Floristry & Décor
   #7B1147 / #5C0D35 / #9C1A5E / #F2C4D0
───────────────────────────────────────── */

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

:root {
  --primary:      #7B1147;
  --primary-dark: #5C0D35;
  --accent:       #9C1A5E;
  --accent-light: #B8306E;
  --blush:        #F2C4D0;
  --rose:         #D97FA0;
  --white:        #ffffff;
  --bg-color:     #FDF5F7;
  --bg-petal:     #F7E8EE;
  --text-body:    #5C0D35;
  --text-muted:   #8B3060;
  --text-on-dark: #F2C4D0;
  --shadow-sm:    0 2px 12px rgba(91,13,53,0.08);
  --shadow-md:    0 6px 28px rgba(91,13,53,0.14);
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background: var(--bg-color);
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color 0.2s, opacity 0.2s; }
a:hover { opacity: 0.75; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.65s var(--ease-out) both; }

/* ══════════════════════════════════════
   DESKTOP HEADER
══════════════════════════════════════ */
header {
  background: var(--primary);
  color: var(--text-on-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(91,13,53,0.32);
}

.header-inner {
  max-width: 100%;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

/* Logo */
.logo-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  gap: 1px;
}
.logo-placeholder .logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}
.logo-placeholder .logo-sub {
  font-family: 'Great Vibes', cursive;
  font-size: 17px;
  color: var(--blush);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.nav-left  { display: flex; align-items: center; gap: 24px; }
.nav-right { display: flex; align-items: center; gap: 20px; }

.nav-catalog { position: relative; }
.nav-catalog > button {
  background: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-on-dark);
  cursor: pointer;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(242,196,208,0.3);
  border-radius: 1px;
  transition: background 0.2s, border-color 0.2s;
}
.nav-catalog > button:hover { background: rgba(255,255,255,0.1); border-color: rgba(242,196,208,0.6); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  color: var(--text-body);
  border-radius: 0;
  min-width: 240px;
  padding: 6px 0;
  box-shadow: var(--shadow-md);
  border-top: 2px solid var(--primary);
  display: none;
  z-index: 200;
  animation: dropIn 0.22s var(--ease-out) both;
}
.dropdown-menu.show { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-body);
  transition: background 0.15s, color 0.15s, padding-left 0.2s;
  border-bottom: 1px solid rgba(123,17,71,0.06);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--bg-petal); color: var(--primary); padding-left: 30px; opacity: 1; }

.nav-info { position: relative; margin-left: auto; }
.nav-info > a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-on-dark);
  cursor: pointer;
  opacity: 0.85;
}
.nav-info > a:hover { opacity: 1; }

.header-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--white);
  margin: 0 8px;
  letter-spacing: 0.5px;
}

.header-icons { display: flex; align-items: center; gap: 18px; }
.header-icons button, .header-icons a {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-on-dark);
  font-size: 20px;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.header-icons a:hover { opacity: 0.7; }

/* ══════════════════════════════════════
   MOBILE HEADER + DRAWER
══════════════════════════════════════ */
.mobile-header {
  display: none;
  background: var(--primary);
  height: 58px;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 14px rgba(91,13,53,0.28);
}

.mobile-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.mobile-logo .logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
}
.mobile-logo .logo-sub {
  font-family: 'Great Vibes', cursive;
  font-size: 13px;
  color: var(--blush);
  line-height: 1.3;
}

.mobile-actions { display: flex; align-items: center; gap: 12px; }

.mobile-btn {
  background: none;
  border: none;
  color: var(--text-on-dark);
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 4px;
  transition: background 0.2s;
}
.mobile-btn:hover { background: rgba(255,255,255,0.1); }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(91,13,53,0.55);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(85vw, 340px);
  height: 100dvh;
  background: var(--bg-petal);
  z-index: 301;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease-out);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(123,17,71,0.12);
  flex-shrink: 0;
}
.drawer-title {
  font-family: 'Great Vibes', cursive;
  font-size: 26px;
  color: var(--primary);
}

.drawer-close {
  background: none; border: none; cursor: pointer;
  color: var(--text-body); font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  transition: background 0.2s;
}
.drawer-close:hover { background: rgba(123,17,71,0.1); }

.drawer-catalog { padding: 24px 24px 0; }
.drawer-catalog a {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--primary);
  padding: 8px 0;
  border-bottom: 1px solid rgba(123,17,71,0.08);
  transition: color 0.2s, padding-left 0.2s;
  line-height: 1.35;
}
.drawer-catalog a:hover { color: var(--accent); padding-left: 8px; opacity: 1; }

.drawer-info { padding: 20px 24px 0; }
.drawer-info a {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  padding: 9px 0;
  border-bottom: 1px solid rgba(123,17,71,0.07);
  transition: color 0.2s;
}
.drawer-info a:last-child { border-bottom: none; }
.drawer-info a:hover { color: var(--accent); opacity: 1; }

.drawer-footer { padding: 28px 24px 40px; margin-top: auto; }
.drawer-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--primary);
  display: block;
  margin-bottom: 18px;
}
.drawer-socials { display: flex; gap: 16px; }
.drawer-socials a {
  font-size: 22px; color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
}
.drawer-socials a:hover { color: var(--accent); opacity: 1; transform: translateY(-2px); }

@media (max-width: 768px) {
  header { display: none; }
  .mobile-header { display: flex; }
}

/* ══════════════════════════════════════
   HERO (промо-банер)
══════════════════════════════════════ */
.hero-script-title {
  font-family: 'Great Vibes', cursive;
  font-size: 5rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: -10px;
  line-height: 1;
}

.hero-serif-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 2rem;
  opacity: 0.8;
}
.hero-divider span { height: 1px; width: 60px; background: #fff; display: inline-block; }
.hero-divider em {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  font-style: normal;
}

.hero-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  color: var(--blush);
  margin-bottom: 2.5rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(242,196,208,0.9);
  color: var(--primary-dark);
  padding: 15px 44px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.15s;
  border: none; cursor: pointer;
}
.hero-btn:hover { background: rgba(255,255,255,0.96); opacity: 1; transform: translateY(-2px); }

/* ══════════════════════════════════════
   SPACERS
══════════════════════════════════════ */
.spacer-sm { height: 20px; }
.spacer-md { height: 40px; }
.spacer-lg { height: 60px; }

/* ══════════════════════════════════════
   CATEGORIES
══════════════════════════════════════ */
.categories-section {
  padding: 0 32px;
  max-width: 1400px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) { .categories-section { padding: 0 16px; } }

.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1100px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

@media (min-width: 1101px) {
  .categories-grid > .category-card:nth-last-child(2):nth-child(4n + 1) { grid-column: 2; }
  .categories-grid > .category-card:last-child:nth-child(4n + 2) { grid-column: 3; }
}

.category-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out);
}
.category-card:hover { transform: translateY(-5px); }
.category-card:hover .category-label { background: var(--accent); }
.category-card:hover .img-placeholder { transform: scale(1.06); }
.category-card:hover .cat-real-img { transform: scale(1.06); }

.category-img { aspect-ratio: 3/4; overflow: hidden; position: relative; }
.cat-real-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); display: block; }

.img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #F7E8EE 0%, #B8306E 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  transition: transform 0.5s var(--ease-out);
}
.img-placeholder-2  { background: linear-gradient(160deg, #F2C4D0 0%, #7B1147 100%); }
.img-placeholder-3  { background: linear-gradient(160deg, #ead5c8 0%, #c4a080 100%); }
.img-placeholder-4  { background: linear-gradient(160deg, #d8c8d5 0%, #7B1147 100%); }
.img-placeholder-5  { background: linear-gradient(160deg, #f0e0e8 0%, #9C1A5E 100%); }
.img-placeholder-6  { background: linear-gradient(160deg, #e8d0d8 0%, #7B1147 100%); }
.img-placeholder-7  { background: linear-gradient(160deg, #f5ebe0 0%, #c49070 100%); }
.img-placeholder-8  { background: linear-gradient(160deg, #f0d8e0 0%, #9C1A5E 100%); }
.img-placeholder-9  { background: linear-gradient(160deg, #ead0d8 0%, #5C0D35 100%); }
.img-placeholder-10 { background: linear-gradient(160deg, #f2dce6 0%, #9C1A5E 100%); }

.category-label {
  background: var(--primary);
  padding: 16px 22px;
  text-align: center;
  transition: background 0.25s;
}
.category-label h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--text-on-dark);
  margin: 0;
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════
   FEATURES
══════════════════════════════════════ */
.features-section {
  padding: 60px 32px 20px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(123,17,71,0.1);
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .features-grid { grid-template-columns: 1fr; } }

.feature-item {
  padding: 36px 28px;
  background: var(--white);
  border-right: 1px solid rgba(123,17,71,0.08);
  border-bottom: 1px solid rgba(123,17,71,0.08);
  transition: background 0.25s;
  position: relative;
}
.feature-item:hover { background: var(--bg-petal); }
.feature-item:last-child { border-right: none; }

.feature-icon {
  font-size: 26px;
  color: var(--accent);
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--bg-petal) 0%, #fbe1ec 100%);
  border: 1px solid rgba(156,26,94,0.12);
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.feature-item:hover .feature-icon {
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-light) 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(156,26,94,0.3);
}

.feature-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  margin-bottom: 12px; color: var(--primary); letter-spacing: 0.3px;
}
.feature-item p { font-size: 14px; line-height: 1.75; color: var(--text-muted); }

/* ══════════════════════════════════════
   CENTER INFO
══════════════════════════════════════ */
.center-info {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 90px 20px 30px;
  position: relative;
}
.center-info::before {
  content: '';
  position: absolute;
  top: 60px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 30px;
  background: var(--rose);
}
.center-info-inner { max-width: 860px; width: 100%; }

.center-info .brand-script {
  font-family: 'Great Vibes', cursive;
  font-size: 4rem;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
  line-height: 1.1;
}

.center-info h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 36px;
  color: var(--text-muted);
}

.center-info p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 20px;
  color: var(--text-body);
  font-weight: 300;
}

.center-info p:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 0;
}

/* ══════════════════════════════════════
   SECTION TITLE
══════════════════════════════════════ */
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 500;
  font-style: italic;
  text-align: center;
  margin-bottom: 4px;
  color: var(--primary);
  padding: 40px 32px 0;
}

/* ══════════════════════════════════════
   TRUSTINDEX / INSTAGRAM
══════════════════════════════════════ */
.ti-container {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Ізолюємо всі стилі всередині widget-container від глобального ресету */
.ti-widget-container,
.ti-widget-container *,
.ti-widget-container *::before,
.ti-widget-container *::after {
  box-sizing: revert;
  margin: revert;
  padding: revert;
  font-family: revert;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary-site {
  background: var(--accent);
  color: #fff;
  padding: 15px 34px;
  border-radius: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.25s, transform 0.15s;
}
.btn-primary-site:hover { background: var(--accent-light); color: #fff; opacity: 1; transform: translateY(-1px); }

.btn-reviews {
  display: inline-block;
  background: var(--accent); color: #fff;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 32px;
  transition: background 0.2s, transform 0.15s;
}
.btn-reviews:hover { background: var(--accent-light); color: #fff; opacity: 1; transform: translateY(-1px); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer.site-footer {
  background: var(--primary);
  color: var(--text-on-dark);
  padding: 50px 30px 0;
}

.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
}
@media (max-width: 1000px) { .footer-inner { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-col { display: flex; flex-direction: column; align-items: center; }
  .payment-icons, .social-icons { justify-content: center; }
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 20px; color: var(--blush);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400;
  color: #fbe6ee; opacity: 0.95;
  transition: opacity 0.2s, color 0.2s, padding-left 0.2s;
}
.footer-col ul li a:hover { opacity: 1; color: var(--white); padding-left: 5px; }
.footer-col p { font-size: 15px; line-height: 1.75; color: #fbe6ee; opacity: 0.95; }

/* Логотип у футері */
.footer-logo {
  display: flex; flex-direction: column;
  line-height: 1; gap: 4px;
}
.footer-logo .logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 600;
  letter-spacing: 6px; color: var(--white);
  text-transform: uppercase; line-height: 1;
}
.footer-logo .logo-sub {
  font-family: 'Great Vibes', cursive;
  font-size: 26px; color: var(--blush); letter-spacing: 0.5px;
}
.footer-logo-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 2px;
  color: rgba(242,196,208,0.5); text-transform: uppercase;
  margin-top: 14px; font-weight: 300;
}

.footer-bottom {
  padding: 28px 0;
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  border-top: 1px solid rgba(242,196,208,0.15);
}
.footer-bottom p { margin: 0; font-size: 13px; color: var(--text-on-dark); opacity: 0.7; }
.footer-bottom p:last-child { opacity: 0.9; }
.footer-bottom a { color: var(--blush); transition: color 0.2s, opacity 0.2s; }
.footer-bottom a:hover { color: var(--white); opacity: 1; }
@media (max-width: 600px) { .footer-bottom { justify-content: center; text-align: center; } }

.payment-icons { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.payment-icons i {
  font-size: 26px;
  width: 52px;
  height: 34px;
  background: #fff;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.payment-icons i:hover { transform: translateY(-2px); box-shadow: 0 5px 14px rgba(0,0,0,0.26); }
.payment-icons .fa-apple-pay     { color: #000; }
.payment-icons .fa-google-pay    { color: #5f6368; }
.payment-icons .fa-cc-visa       { color: #1a1f71; }
.payment-icons .fa-cc-mastercard { color: #eb001b; }

/* Branded circular social icons */
.social-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: #fff;
  opacity: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(242,196,208,0.25);
  transition: transform 0.22s var(--ease-out), box-shadow 0.25s, background 0.3s, border-color 0.25s;
}
.social-icons a:hover { opacity: 1; transform: translateY(-3px); border-color: transparent; }
.social-icons a.ig:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 8px 20px rgba(214,36,159,0.45);
}
.social-icons a.tg:hover { background: #229ED9; box-shadow: 0 8px 20px rgba(34,158,217,0.45); }
.social-icons a.fb:hover { background: #1877F2; box-shadow: 0 8px 20px rgba(24,119,242,0.45); }
.social-icons a.vb:hover { background: #7360F2; box-shadow: 0 8px 20px rgba(115,96,242,0.45); }

/* Highlighted inline text */
.fx-highlight {
  color: var(--blush);
  font-weight: 600;
}

/* Footer highlight / CTA card */
.footer-cta {
  background: linear-gradient(135deg, rgba(156,26,94,0.55) 0%, rgba(184,48,110,0.32) 100%);
  border: 1px solid rgba(242,196,208,0.22);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 4px;
}
.footer-cta .footer-cta-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blush);
  display: block;
  margin-bottom: 6px;
}
.footer-cta .footer-cta-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  display: block;
  line-height: 1.1;
  transition: color 0.2s;
}
.footer-cta .footer-cta-phone:hover { color: var(--blush); opacity: 1; }
.footer-cta .footer-cta-hours { font-size: 13px; color: var(--text-on-dark); opacity: 0.85; margin-top: 8px; display: block; }

/* ══════════════════════════════════════
   FLOATING BUTTON
══════════════════════════════════════ */
.float-phone { position: fixed; right: 20px; bottom: 20px; z-index: 999; }

.float-btn {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(156,26,94,0.45);
  position: relative; z-index: 2;
  transition: background 0.2s, transform 0.2s;
}
.float-btn:hover { background: var(--accent-light); transform: scale(1.07); }

.float-sub {
  position: absolute; width: 44px; height: 44px; border-radius: 50%;
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 19px; opacity: 0;
  transition: all 0.32s var(--ease-out);
  pointer-events: none; transform: scale(0.6);
}
.float-phone.open .float-sub { opacity: 1; pointer-events: all; transform: scale(1); }
.float-sub-1 { bottom: 4px; right: 62px; background: #7360f2; transition-delay: 0.18s; }
.float-sub-2 { bottom: 48px; right: 50px; background: #0088cc; transition-delay: 0.09s; }
.float-sub-3 { bottom: 62px; right: 4px; background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }

/* ══════════════════════════════════════
   INFO PAGES
══════════════════════════════════════ */
.page-hero {
  background: var(--primary);
  padding: 80px 32px 70px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(156,26,94,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-script {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem; color: var(--blush);
  display: block; margin-bottom: 6px; position: relative;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--white); margin-bottom: 14px; position: relative;
}
.page-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: rgba(242,196,208,0.6); margin-bottom: 22px;
}
.page-hero-line { width: 48px; height: 1px; background: var(--rose); margin: 0 auto; }

.info-section { padding: 72px 32px 64px; max-width: 820px; margin: 0 auto; }
.info-section article p {
  font-family: 'DM Sans', sans-serif; font-size: 1.05rem; line-height: 1.9;
  color: var(--text-body); font-weight: 300; margin-bottom: 22px;
}
.info-section article p:last-child { margin-bottom: 0; }
.info-section article h4, .info-section article h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600; color: var(--primary); margin: 36px 0 14px;
}
.info-section article h4:first-child, .info-section article h5:first-child { margin-top: 0; }
.info-section article ul { padding-left: 0; list-style: none; margin-bottom: 22px; }
.info-section article ul li {
  font-family: 'DM Sans', sans-serif; font-size: 1rem; line-height: 1.8;
  color: var(--text-body); font-weight: 300;
  padding: 6px 0 6px 24px; position: relative;
  border-bottom: 1px solid rgba(123,17,71,0.07);
}
.info-section article ul li:last-child { border-bottom: none; }
.info-section article ul li::before {
  content: ''; position: absolute; left: 0; top: 17px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}

/* HISTORY */
.history-block { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.history-img { position: relative; overflow: hidden; min-height: 340px; }
.history-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.history-img-placeholder {
  width: 100%; height: 100%; min-height: 340px;
  background: linear-gradient(145deg, #F7E8EE 0%, #e0b8c8 50%, #9C1A5E 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; color: rgba(255,255,255,0.25);
}
.history-content { background: var(--primary); padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.history-content .label { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--rose); margin-bottom: 12px; }
.history-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 500; font-style: italic; color: var(--white); line-height: 1.25; margin-bottom: 16px; }
.history-content p { font-family: 'DM Sans', sans-serif; font-size: 1rem; color: var(--blush); font-weight: 300; line-height: 1.7; }

/* FEATURES BLOCK */
.features-block { padding: 72px 32px 80px; max-width: 1200px; margin: 0 auto; }
.features-block-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 500; font-style: italic; text-align: center; color: var(--primary); margin-bottom: 48px; }
.features-block-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(123,17,71,0.08); }
.feature-cell { background: var(--white); padding: 40px 28px 36px; text-align: center; transition: background 0.25s, transform 0.25s; }
.feature-cell:hover { background: var(--bg-petal); transform: translateY(-3px); z-index: 1; position: relative; }
.feature-cell i {
  font-size: 1.6rem;
  color: var(--accent);
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--bg-petal) 0%, #fbe1ec 100%);
  border: 1px solid rgba(156,26,94,0.12);
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.feature-cell:hover i {
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-light) 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(156,26,94,0.3);
}
.feature-cell h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--primary); margin-bottom: 12px; }
.feature-cell p { font-family: 'DM Sans', sans-serif; font-size: 14px; line-height: 1.75; color: var(--text-muted); font-weight: 300; }

/* CONTACT */
.contact { padding: 60px 0 70px; }
.contact h1 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 500; font-style: italic; color: var(--primary); margin-bottom: 48px; text-align: center; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.contact-left { background: var(--white); border: 1px solid rgba(123,17,71,0.1); padding: 48px 44px; }
.contact-left h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--primary); margin-bottom: 28px; line-height: 1.4; }
.contact-left h4 a { color: var(--primary); transition: color 0.2s; }
.contact-left h4 a:hover { color: var(--accent); opacity: 1; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--text-body); }
.contact-detail i { font-size: 17px; color: var(--accent); margin-top: 3px; flex-shrink: 0; width: 18px; text-align: center; }
.contact-detail a { color: var(--text-body); transition: color 0.2s; }
.contact-detail a:hover { color: var(--accent); opacity: 1; }
.contact-right { background: var(--primary); padding: 48px 44px; display: flex; flex-direction: column; justify-content: space-between; }
.contact-right-label { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--blush); margin-bottom: 10px; }
.contact-phone-big { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 500; color: var(--white); line-height: 1.2; margin-bottom: 10px; text-decoration: none; display: block; transition: color 0.2s; }
.contact-phone-big:hover { color: var(--blush); opacity: 1; }
.contact-hours { font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--blush); font-weight: 300; margin-bottom: 36px; display: flex; align-items: center; gap: 8px; }
.contact-right-divider { height: 1px; background: rgba(242,196,208,0.2); margin: 0 0 32px; }
.contact-right-tagline { font-family: 'Great Vibes', cursive; font-size: 2rem; color: var(--blush); font-weight: 400; margin-bottom: 22px; line-height: 1.4; }
.contact-map { width: 100%; display: block; border: none; height: 440px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .history-block { grid-template-columns: 1fr; }
  .history-content { padding: 48px 32px; }
  .features-block-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .contact-right, .contact-left { padding: 36px 28px; }
}
@media (max-width: 600px) {
  .page-hero { padding: 50px 20px 46px; }
  .page-hero h1 { font-size: 2.2rem; letter-spacing: 2px; }
  .info-section { padding: 48px 20px; }
  .features-block { padding: 48px 0 60px; }
  .features-block-grid { grid-template-columns: 1fr; }
  .history-content { padding: 36px 20px; }
  .contact { padding: 40px 0 50px; }
  .contact h1 { font-size: 2rem; margin-bottom: 32px; }
  .contact-grid { padding: 0; }
  .contact-left, .contact-right { padding: 28px 20px; }
  .contact-map { height: 300px; }
  .hero-serif-title { font-size: 2.4rem; }
  .hero-script-title { font-size: 3rem; }
  .site-hero { min-height: 60vh; }
}

/* ══════════════════════════════════════
   SITE HERO (index page)
══════════════════════════════════════ */
.site-hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1563241527-3004b7be0ffd?q=80&w=1920&auto=format&fit=crop') no-repeat center center;
  background-size: cover;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.site-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
  to bottom,
  rgba(88, 28, 60, 0.55) 0%,
  rgba(168, 85, 247, 0.25) 100%
);
}
.site-hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
  max-width: 880px;
  width: 100%;
}

/* ══════════════════════════════════════
   HEADER SCROLLED STATE
══════════════════════════════════════ */
header.scrolled {
  box-shadow: 0 4px 32px rgba(91,13,53,0.48);
}

/* ══════════════════════════════════════
   CART BADGE
══════════════════════════════════════ */
.cart-badge { position: relative; display: inline-flex; }
.cart-badge span {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--blush);
  color: var(--primary-dark);
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 10px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  font-family: 'DM Sans', sans-serif;
}

/* ══════════════════════════════════════
   INSTAGRAM CTA BUTTON (contact page)
══════════════════════════════════════ */
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--blush);
  border: 1px solid rgba(242,196,208,0.35);
  padding: 13px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.btn-instagram:hover {
  background: rgba(242,196,208,0.12);
  border-color: rgba(242,196,208,0.6);
  color: var(--white);
  opacity: 1;
}
.btn-instagram i { font-size: 16px; }

/* ══════════════════════════════════════
   CONTACT PAGE — HERO VARIANT
══════════════════════════════════════ */
.contact { padding: 0 0 70px; }
.contact-hero {
  background: var(--primary);
  padding: 72px 32px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(156,26,94,0.28) 0%, transparent 70%);
  pointer-events: none;
}
.contact-hero-script {
  font-family: 'Great Vibes', cursive;
  font-size: 2.8rem;
  color: var(--blush);
  display: block;
  margin-bottom: 6px;
  position: relative;
}
.contact-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}
.contact-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(242,196,208,0.6);
  margin-bottom: 20px;
}
.contact-hero-line { width: 48px; height: 1px; background: var(--rose); margin: 0 auto; }
.contact-body { padding: 56px 32px 0; }
@media (max-width: 600px) {
  .contact-hero { padding: 50px 20px 46px; }
  .contact-hero h1 { font-size: 2.2rem; letter-spacing: 2px; }
  .contact-body { padding: 36px 20px 0; }
}

/* ══════════════════════════════════════
   CART MODAL / SIDEBAR
══════════════════════════════════════ */
.cart-overlay { position:fixed; inset:0; background:rgba(91,13,53,0.5); z-index:400; opacity:0; pointer-events:none; transition:opacity 0.3s; }
.cart-overlay.open { opacity:1; pointer-events:all; }
.cart-sidebar { position:fixed; top:0; right:0; width:min(90vw,460px); height:100dvh; background:var(--bg-color); z-index:401; transform:translateX(100%); transition:transform 0.38s cubic-bezier(0.22,1,0.36,1); display:flex; flex-direction:column; }
.cart-sidebar.open { transform:translateX(0); }
.cart-sidebar-header { display:flex; align-items:center; justify-content:space-between; padding:22px 24px 18px; background:var(--primary); color:var(--text-on-dark); flex-shrink:0; }
.cart-sidebar-header h3 { font-family:'Cormorant Garamond',serif; font-size:24px; font-weight:500; letter-spacing:1px; }
.cart-close-btn { background:none; border:none; color:var(--text-on-dark); font-size:22px; cursor:pointer; opacity:0.8; transition:opacity 0.2s; }
.cart-close-btn:hover { opacity:1; }
.cart-items-container { flex:1; overflow-y:auto; padding:16px 24px; }
.cart-empty { text-align:center; padding:60px 20px; color:var(--text-muted); font-family:'Cormorant Garamond',serif; font-size:22px; }
.cart-item { display:flex; gap:14px; padding:16px 0; border-bottom:1px solid rgba(123,17,71,0.1); }
.cart-item:last-child { border-bottom:none; }
.cart-item-img { width:72px; height:96px; flex-shrink:0; overflow:hidden; background:var(--bg-petal); }
.cart-item-img img { width:100%; height:100%; object-fit:cover; }
.cart-item-info { flex:1; min-width:0; }
.cart-item-name { font-family:'Cormorant Garamond',serif; font-size:17px; font-weight:500; color:var(--text-body); margin-bottom:4px; line-height:1.3; }
.cart-item-addons { font-size:12px; color:var(--text-muted); margin-bottom:8px; }
.cart-item-price { font-size:16px; font-weight:600; color:var(--primary); }
.cart-item-controls { display:flex; align-items:center; gap:4px; margin-top:8px; }
.cart-qty-btn { background:var(--bg-petal); border:1px solid rgba(123,17,71,0.15); color:var(--primary); width:28px; height:28px; display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:16px; transition:background 0.2s; }
.cart-qty-btn:hover { background:var(--blush); }
.cart-qty-input { width:40px; height:28px; text-align:center; border:1px solid rgba(123,17,71,0.15); background:var(--white); color:var(--text-body); font-size:14px; }
.cart-item-remove { margin-left:auto; background:none; border:none; color:var(--text-muted); cursor:pointer; font-size:18px; padding:4px; transition:color 0.2s; }
.cart-item-remove:hover { color:var(--accent); }
.cart-footer { padding:16px 24px 24px; border-top:1px solid rgba(123,17,71,0.12); flex-shrink:0; }
.cart-total-row { display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:500; }
.cart-total-amount { color:var(--primary); }
.cart-footer-btns { display:flex; flex-direction:column; gap:10px; }
.cart-checkout-btn { display:block; text-align:center; background:var(--primary); color:var(--text-on-dark); padding:14px 24px; font-family:'DM Sans',sans-serif; font-size:13px; font-weight:500; letter-spacing:2px; text-transform:uppercase; transition:background 0.2s; cursor:pointer; border:none; width:100%; }
.cart-checkout-btn:hover { background:var(--accent); opacity:1; color:var(--text-on-dark); }
.cart-continue-btn { display:block; text-align:center; background:transparent; color:var(--text-muted); padding:12px; font-size:13px; border:1px solid rgba(123,17,71,0.2); cursor:pointer; transition:all 0.2s; }
.cart-continue-btn:hover { background:var(--bg-petal); opacity:1; }
.cart-badge-count { position:absolute; top:-6px; right:-6px; background:var(--accent); color:var(--white); font-size:11px; font-weight:700; min-width:18px; height:18px; border-radius:50%; display:flex; align-items:center; justify-content:center; padding:0 3px; }

/* ══════════════════════════════════════
   CATALOG / CATEGORY PAGE
══════════════════════════════════════ */
.catalog-section { max-width:1400px; margin:0 auto; padding:40px 32px; }
.catalog-header { text-align:center; margin-bottom:40px; }
.catalog-title { font-family:'Cormorant Garamond',serif; font-size:2.8rem; font-weight:400; color:var(--primary); margin-bottom:10px; }
.breadcrumb { list-style:none; display:flex; flex-wrap:wrap; gap:4px; justify-content:center; font-size:13px; color:var(--text-muted); margin:0 0 16px; }
.breadcrumb li { display:flex; align-items:center; }
.breadcrumb li:not(:last-child)::after { content:'/'; margin:0 8px; opacity:0.5; }
.catalog-toolbar { display:flex; justify-content:space-between; align-items:center; padding:12px 0; border-top:1px solid rgba(123,17,71,0.1); border-bottom:1px solid rgba(123,17,71,0.1); margin-bottom:32px; flex-wrap:wrap; gap:12px; }
.catalog-sort select { border:1px solid rgba(123,17,71,0.2); background:var(--white); color:var(--text-body); padding:7px 12px; font-family:'DM Sans',sans-serif; font-size:13px; cursor:pointer; outline:none; }
.catalog-count { font-size:13px; color:var(--text-muted); }
.products-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
@media(max-width:1100px){.products-grid{grid-template-columns:repeat(3,1fr);}}
@media(max-width:768px){.products-grid{grid-template-columns:repeat(2,1fr);gap:14px;}.catalog-section{padding:24px 16px;}}
@media(max-width:420px){.products-grid{grid-template-columns:repeat(2,1fr);gap:10px;}}

/* ── Product card ── */
.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(91,13,53,.07);
  border: 1px solid rgba(123,17,71,.07);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform:translateY(-5px); box-shadow:0 12px 32px rgba(91,13,53,.15); }

/* Image */
.product-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-petal);
  position: relative;
  display: block;
  flex-shrink: 0;
}
.product-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .55s var(--ease-out); display:block; }
.product-card:hover .product-card-img img { transform:scale(1.07); }
.product-card-img-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:56px; background:linear-gradient(155deg,#F7E8EE 0%,#E8A4BF 100%); }

/* Quick-add overlay on image */
.product-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(91,13,53,.0);
  transition: background .3s;
}
.product-card:hover .product-card-img::after { background: rgba(91,13,53,.06); }

/* ── Availability badge (на картці без повної інфи) ── */
.product-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 10px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .3px;
  line-height: 1;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(91,13,53,.14);
}
.product-card-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.product-card-badge.in {
  background: rgba(255,255,255,.93);
  color: #2e7d4f;
}
.product-card-badge.in::before {
  background: #37b26b;
  box-shadow: 0 0 0 3px rgba(55,178,107,.22);
}
.product-card-badge.out {
  background: rgba(92,13,53,.85);
  color: #f6dce6;
}
.product-card-badge.out::before { background: #e08aa8; }

/* Availability inline row (під ціною на картці) */
.product-card-stock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .2px;
}
.product-card-stock.in  { color: #2e9b5f; }
.product-card-stock.out { color: var(--text-muted); opacity: .8; }

/* Body */
.product-card-body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Price strip */
.product-card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.product-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .3px;
}

/* Name */
.product-card-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Button */
.product-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--primary);
  color: var(--text-on-dark);
  padding: 10px 0;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  transition: background .2s, transform .15s;
  width: 100%;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  margin-top: auto;
}
.product-card-btn:hover { background: var(--accent); transform: scale(1.02); opacity: 1; }
.product-card-btn:active { transform: scale(.98); }

/* Added-to-cart flash state */
.product-card-btn.added {
  background: #2e7d32;
  pointer-events: none;
}
.catalog-pagination { display:flex; justify-content:center; gap:8px; margin-top:48px; }
.page-btn { width:38px; height:38px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(123,17,71,0.2); color:var(--text-body); font-size:14px; transition:all 0.2s; }
.page-btn:hover,.page-btn.active { background:var(--primary); color:var(--text-on-dark); border-color:var(--primary); opacity:1; }
.subcategories-bar { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:28px; }
.subcat-chip { padding:8px 18px; border:1px solid rgba(123,17,71,0.2); color:var(--text-body); font-size:14px; transition:all 0.2s; font-family:'DM Sans',sans-serif; }
.subcat-chip:hover,.subcat-chip.active { background:var(--primary); color:var(--text-on-dark); border-color:var(--primary); opacity:1; }

/* ══════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════ */
.product-section { max-width:1400px; margin:0 auto; padding:40px 32px; }
.product-layout { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
@media(max-width:900px){.product-layout{grid-template-columns:1fr;gap:32px;}.product-section{padding:24px 16px;}}
.product-gallery { position:relative; }
.product-main-img { width:100%; aspect-ratio:3/4; overflow:hidden; background:var(--bg-petal); }
.product-main-img img { width:100%; height:100%; object-fit:cover; }
.product-main-img-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:100px; background:linear-gradient(160deg,#F7E8EE 0%,#D97FA0 100%); }
.product-info { padding-top:8px; }
.product-title { font-family:'Cormorant Garamond',serif; font-size:2.2rem; font-weight:400; color:var(--primary); margin-bottom:10px; line-height:1.25; }
.product-availability { font-size:14px; color:#6aab66; margin-bottom:16px; display:flex; align-items:center; gap:6px; }
.product-price-main { font-family:'Cormorant Garamond',serif; font-size:2.2rem; font-weight:500; color:var(--primary); margin-bottom:24px; }
.product-price-main span { font-size:1.6rem; }
.product-divider { height:1px; background:rgba(123,17,71,0.1); margin:24px 0; }
.addons-heading { font-size:16px; font-weight:500; color:var(--text-body); margin-bottom:16px; font-family:'DM Sans',sans-serif; }
.addons-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-bottom:24px; }
@media(max-width:600px){.addons-grid{grid-template-columns:repeat(3,1fr);gap:8px;}}
.addon-card { cursor:pointer; user-select:none; position:relative; }
.addon-card input[type=checkbox] { position:absolute; opacity:0; width:0; height:0; }
.addon-card-inner { border:2px solid rgba(123,17,71,0.12); transition:border-color 0.2s,box-shadow 0.2s; }
.addon-card input:checked + .addon-card-inner { border-color:var(--accent); box-shadow:0 0 0 2px rgba(156,26,94,0.2); }
.addon-card-img { aspect-ratio:3/4; overflow:hidden; background:var(--bg-petal); }
.addon-card-img img { width:100%; height:100%; object-fit:cover; }
.addon-card-img-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:28px; background:linear-gradient(160deg,#F7E8EE 0%,#F2C4D0 100%); }
.addon-card-label { padding:6px 4px; text-align:center; background:var(--bg-petal); }
.addon-card-label .addon-name { font-size:11px; color:var(--text-body); display:block; margin-bottom:2px; line-height:1.2; }
.addon-card-label .addon-price { font-size:12px; font-weight:600; color:var(--primary); display:block; }
.product-total-display { background:var(--bg-petal); padding:14px 18px; margin-bottom:20px; display:flex; justify-content:space-between; align-items:center; }
.product-total-label { font-size:14px; color:var(--text-muted); }
.product-total-value { font-family:'Cormorant Garamond',serif; font-size:26px; font-weight:500; color:var(--primary); }
.add-to-cart-btn { width:100%; padding:16px; background:var(--primary); color:var(--text-on-dark); border:none; font-family:'DM Sans',sans-serif; font-size:13px; font-weight:500; letter-spacing:2.5px; text-transform:uppercase; cursor:pointer; transition:background 0.2s,transform 0.15s; display:flex; align-items:center; justify-content:center; gap:10px; }
.add-to-cart-btn:hover { background:var(--accent); transform:translateY(-2px); }
.add-to-cart-btn.added { background:#6aab66; }
.product-description { font-size:15px; color:var(--text-muted); line-height:1.7; margin-top:24px; }

/* ══════════════════════════════════════
   CHECKOUT PAGE
══════════════════════════════════════ */
.checkout-section { max-width:1100px; margin:0 auto; padding:40px 32px 80px; }
@media(max-width:768px){.checkout-section{padding:24px 16px 60px;}}
.checkout-title { font-family:'Cormorant Garamond',serif; font-size:2.6rem; font-weight:400; color:var(--primary); text-align:center; margin-bottom:40px; }
.checkout-layout { display:grid; grid-template-columns:1fr 1fr; gap:32px; }
@media(max-width:900px){.checkout-layout{grid-template-columns:1fr;}}
.checkout-block { background:var(--white); padding:28px; margin-bottom:20px; }
.checkout-block-title { font-size:16px; font-weight:500; color:var(--text-body); border-bottom:1px solid rgba(123,17,71,0.1); padding-bottom:12px; margin-bottom:20px; font-family:'DM Sans',sans-serif; }
.form-group { margin-bottom:16px; }
.form-group label { display:block; font-size:13px; font-weight:500; color:var(--text-muted); margin-bottom:6px; }
.form-group label.required::after { content:' *'; color:var(--accent); }
.form-control { width:100%; padding:10px 14px; border:1px solid rgba(123,17,71,0.2); background:var(--bg-color); color:var(--text-body); font-family:'DM Sans',sans-serif; font-size:14px; outline:none; transition:border-color 0.2s; }
.form-control:focus { border-color:var(--accent); }
.form-select { width:100%; padding:10px 14px; border:1px solid rgba(123,17,71,0.2); background:var(--bg-color); color:var(--text-body); font-family:'DM Sans',sans-serif; font-size:14px; outline:none; cursor:pointer; }
.radio-group { display:flex; flex-direction:column; gap:10px; }
.radio-option { display:flex; align-items:flex-start; gap:10px; cursor:pointer; padding:12px 14px; border:1px solid rgba(123,17,71,0.12); transition:background 0.2s; }
.radio-option:has(input:checked) { background:var(--bg-petal); border-color:var(--accent); }
.radio-option input[type=radio] { margin-top:2px; accent-color:var(--accent); }
.radio-label-title { font-size:14px; font-weight:500; color:var(--text-body); }
.radio-label-desc { font-size:12px; color:var(--text-muted); margin-top:2px; }
.checkout-order-table { width:100%; border-collapse:collapse; }
.checkout-order-table th { font-size:12px; font-weight:500; color:var(--text-muted); text-transform:uppercase; letter-spacing:0.5px; padding:8px 12px; border-bottom:1px solid rgba(123,17,71,0.1); text-align:left; }
.checkout-order-table td { padding:12px; border-bottom:1px solid rgba(123,17,71,0.07); font-size:14px; vertical-align:middle; }
.checkout-order-table td:last-child { text-align:right; font-weight:600; }
.checkout-order-img { width:56px; height:72px; object-fit:cover; background:var(--bg-petal); }
.checkout-total-row { display:flex; justify-content:space-between; padding:16px 0; border-top:2px solid rgba(123,17,71,0.15); margin-top:8px; font-family:'Cormorant Garamond',serif; font-size:22px; }
.checkout-total-row span:last-child { color:var(--primary); font-weight:500; }
.checkout-submit-btn { width:100%; padding:16px; background:var(--primary); color:var(--text-on-dark); border:none; font-family:'DM Sans',sans-serif; font-size:13px; font-weight:500; letter-spacing:2.5px; text-transform:uppercase; cursor:pointer; transition:background 0.2s; margin-top:12px; }
.checkout-submit-btn:hover { background:var(--accent); }
.checkout-note { font-size:12px; color:var(--text-muted); margin-top:10px; text-align:center; }

/* ══════════════════════════════════════
   SEARCH MODAL
══════════════════════════════════════ */
.search-overlay { position:fixed; inset:0; background:rgba(91,13,53,0.5); z-index:500; opacity:0; pointer-events:none; transition:opacity 0.3s; }
.search-overlay.open { opacity:1; pointer-events:all; }
.search-modal { position:fixed; top:0; left:50%; transform:translateX(-50%) translateY(-30px); width:min(92vw,600px); z-index:501; opacity:0; pointer-events:none; transition:transform 0.3s cubic-bezier(0.22,1,0.36,1), opacity 0.3s; }
.search-modal.open { opacity:1; pointer-events:all; transform:translateX(-50%) translateY(80px); }
.search-modal-header { background:var(--primary); padding:20px 24px; display:flex; align-items:center; justify-content:space-between; }
.search-modal-title { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:500; text-transform:uppercase; color:var(--text-on-dark); letter-spacing:1px; margin:0; }
.search-modal-close { background:none; border:none; color:var(--text-on-dark); cursor:pointer; font-size:20px; padding:4px; opacity:0.8; transition:opacity 0.2s; line-height:1; }
.search-modal-close:hover { opacity:1; }
.search-modal-body { background:#fff; padding:24px; }
.search-input-group { display:flex; }
.search-input-group input { flex:1; border:1px solid #ddd; border-right:none; padding:12px 16px; font-size:16px; outline:none; font-family:'DM Sans',sans-serif; color:var(--text-body); background:#f9f9f9; }
.search-input-group input:focus { background:#fff; border-color:var(--primary); }
.search-input-group button { background:var(--primary); color:#fff; border:none; padding:12px 22px; cursor:pointer; font-size:18px; transition:background 0.2s; }
.search-input-group button:hover { background:var(--primary-dark); }

/* Search results page bar */
.search-page-bar { margin-bottom:28px; }
.search-page-form .search-input-group input { font-size:18px; padding:14px 20px; }
.search-page-form .search-input-group button { padding:14px 26px; font-size:20px; }