/* =========================================================
   MEMOKART — style.css
   1. Reset/base  2. Typography  3. Layout  4. Announcement
   5. Header  6. Gallery  7. Product info  8. USP
   9. Pricing configurator  10. CTA  11. Videos  12. Reviews
   13. Process  14. FAQ  15. Footer  16. Utilities
   ========================================================= */

:root {
  --color-primary: #FF3C5E;
  --color-primary-dark: #E22A4B;
  --color-primary-pale: #FFEDF0;
  --color-text: #171717;
  --color-muted: #666666;
  --color-border: #E8E8E8;
  --color-bg-soft: #F7F7F7;
  --color-white: #FFFFFF;
  --color-whatsapp: #128C7E;
  --color-whatsapp-dark: #0F7A6D;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --container-width: 1200px;

  --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --shadow-sm: 0 1px 3px rgba(23, 23, 23, 0.06);
  --shadow-md: 0 4px 16px rgba(23, 23, 23, 0.08);

  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ---------- 1. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- 2. TYPOGRAPHY ---------- */
.section-heading {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.section-subtext {
  color: var(--color-muted);
  font-size: 14px;
  margin-bottom: 16px;
}

/* ---------- 3. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}

main section + section,
main .container + .container { margin-top: 28px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.1s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-block { width: 100%; }

.btn-outline {
  background: var(--color-white);
  border-color: var(--color-border);
  color: var(--color-text);
}
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); }

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
}
.btn-whatsapp:hover { background: var(--color-whatsapp-dark); }
.btn-whatsapp:disabled,
.btn-whatsapp[aria-disabled="true"] {
  background: #C6C6C6;
  color: #8A8A8A;
  cursor: not-allowed;
}

/* ---------- 4. ANNOUNCEMENT BAR ---------- */
.announce-bar {
  display: flex;
  align-items: center;
  background: var(--color-primary);
  color: #fff;
  height: 34px;
  font-size: 12.5px;
  position: relative;
  z-index: 40;
}
.announce-btn {
  background: transparent;
  border: none;
  color: #fff;
  width: 32px;
  min-height: 34px;
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
  opacity: 0.8;
}
.announce-btn:hover { opacity: 1; }
.announce-track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 34px;
}
.announce-track {
  display: flex;
  height: 100%;
  transition: transform 0.25s ease-out;
}
.announce-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 6px;
  font-weight: 500;
}
.announce-heart {
  margin-left: 3px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
}

/* ---------- 5. HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mobile-header-actions,
.header-socials { display: none; }
.sample-label-mobile { display: none; }
.logo-link { display: inline-flex; align-items: center; }
.logo-img { height: 38px; width: auto; }
.btn-sample {
  min-height: 30px;
  padding: 3px 7px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--color-primary-dark);
  background: var(--color-primary-pale);
  border-color: #ffd0d8;
  border-radius: 999px;
  box-shadow: none;
}
.btn-sample:hover {
  color: var(--color-primary-dark);
  background: #ffdce2;
  border-color: #ffb8c5;
}

/* The wrapper becomes a layout grid only at the desktop breakpoint. */
.desktop-product-layout { display: contents; }
.desktop-left-column,
.desktop-right-column { display: contents; }
.desktop-left-details { display: none; }

/* ---------- 6. GALLERY ---------- */
.gallery-section { margin-top: 0; padding-top: 12px; }
.gallery { max-width: 480px; margin: 0 auto; }
.gallery-main-wrap { position: relative; }
.gallery-main {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  cursor: pointer;
}
.gallery-counter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(23,23,23,0.65);
  color: #fff;
  font-size: 12px;
  padding: 3px 9px;
  border-radius: 999px;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  color: var(--color-text);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-nav-prev { left: 10px; }
.gallery-nav-next { right: 10px; }

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 2px 4px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.gallery-thumbs::-webkit-scrollbar { height: 0; }
.gallery-thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--color-border);
  cursor: pointer;
  background: none;
  padding: 0;
  scroll-snap-align: start;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--color-primary); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox img, .lightbox video {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
/* ---------- 7. PRODUCT INFO ---------- */
.product-info { padding-top: 4px; }
.product-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.product-subtitle {
  color: var(--color-muted);
  font-size: 14.5px;
  margin-top: 6px;
  line-height: 1.5;
}
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}
.badge {
  background: var(--color-primary-pale);
  color: var(--color-primary-dark);
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #ffd3db;
  text-align: center;
  white-space: nowrap;
}

/* ---------- 8. USP SLIDER ---------- */
.usp-section {
  background: linear-gradient(90deg, #fff9e8, #fff2c6, #fff9e8);
  border-top: 1px solid #e9ca76;
  border-bottom: 1px solid #e9ca76;
  padding: 10px 0;
  margin-top: 20px;
  overflow: hidden;
}
.usp-track-wrap {
  overflow: hidden;
  max-width: var(--container-width);
  margin: 0 auto;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.usp-track {
  display: flex;
  gap: 22px;
  white-space: nowrap;
  width: max-content;
  animation: usp-scroll 24s linear infinite;
  padding: 0 16px;
}
.usp-item {
  font-size: 13.5px;
  font-weight: 500;
  color: #684600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@keyframes usp-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 11px)); }
}
@media (prefers-reduced-motion: reduce) {
  .usp-track { animation: none; overflow-x: auto; }
}

/* ---------- Info card (delivery timeline) ---------- */
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 13.5px;
  color: var(--color-text);
}
.timeline-section { padding-top: 14px; padding-bottom: 18px; }
main .timeline-section + .configurator { margin-top: 6px; }
.timeline-card {
  border: 2px dotted var(--color-primary);
  background: #fffafb;
  padding: 11px 13px;
}
.timeline-card strong { color: var(--color-primary-dark); }
.info-card-icon { font-size: 18px; line-height: 1; }
.info-card.timeline-desktop { display: none; }

/* ---------- 9. PRICING CONFIGURATOR ---------- */
.configurator { padding-bottom: 8px; margin-top: 6px; }
.configurator { scroll-margin-top: 92px; }
.config-note {
  background: var(--color-primary-pale);
  border: 1px solid #FFD3DB;
  color: #7A2233;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  margin: 10px 0 20px;
  line-height: 1.5;
}
.config-step { margin-bottom: 20px; }
.config-step-title {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text);
}
.config-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.config-title-row .config-step-title { margin-bottom: 0; }
.frame-select-title {
  font-size: 15.5px;
  color: var(--color-text);
}
.frame-savings {
  display: inline-flex;
  background: #effbf3;
  color: #176b3a;
  border: 1px solid #8fd3a8;
  border-radius: 8px;
  padding: 5px 9px;
  margin-bottom: 10px;
  font-size: 11.5px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(23, 107, 58, 0.08);
}
.frame-savings[hidden] { display: none; }
.size-chart-link {
  border: 0;
  background: none;
  color: var(--color-primary-dark);
  padding: 3px 0;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
}
.size-chart-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(23,23,23,0.78);
}
.size-chart-modal[hidden] { display: none; }
.size-chart-dialog {
  position: relative;
  width: min(92vw, 620px);
  max-height: 92vh;
  overflow: auto;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
}
.size-chart-dialog h2 { font-size: 18px; text-align: center; margin-bottom: 12px; }
.size-chart-dialog img { width: 100%; height: auto; border-radius: var(--radius-md); }
.how-to-choose-image { aspect-ratio: 1 / 1; object-fit: contain; background: var(--color-bg-soft); }
.size-chart-close {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--color-primary-pale);
  color: var(--color-primary-dark);
  font-size: 24px;
  cursor: pointer;
}

/* ---------- Sample works square gallery modal ---------- */
.sample-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(23,23,23,0.82);
}
.sample-gallery-modal[hidden] { display: none; }
.sample-gallery-dialog {
  position: relative;
  width: min(92vw, 650px);
  max-height: 94vh;
  overflow: auto;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: 0 18px 60px rgba(0,0,0,.3);
}
.sample-gallery-dialog h2 {
  margin: 0 44px 14px;
  font-size: 18px;
  text-align: center;
}
.sample-gallery-close {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--color-primary-pale);
  color: var(--color-primary-dark);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.sample-gallery-stage {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg-soft);
  touch-action: pan-y;
}
.sample-gallery-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sample-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.92);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.sample-gallery-prev { left: 10px; }
.sample-gallery-next { right: 10px; }
.sample-gallery-note {
  margin: 5px 0 0;
  color: #8b8b8b;
  font-size: 8px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}
.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.option-grid-size { grid-template-columns: repeat(2, 1fr); }
.option-card {
  min-height: 56px;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 10px 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.option-card span {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--color-muted);
}
.option-card:hover { border-color: var(--color-primary); }
.option-card.active {
  border-color: var(--color-primary);
  background: var(--color-primary-pale);
  color: var(--color-primary-dark);
}
.option-card.active span { color: var(--color-primary-dark); }
.option-card.disabled { opacity: 0.4; pointer-events: none; }

.custom-price-note {
  background: #FFF6E8;
  border: 1px solid #FFE0AC;
  color: #7A5200;
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  text-align: center;
}

.price-summary {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  margin-bottom: 16px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.price-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 14px;
  color: var(--color-muted);
}
.price-summary-row strong { color: var(--color-text); font-weight: 600; }
.price-summary-divider { height: 1px; background: var(--color-border); margin: 8px 0; }
.price-summary-total { font-size: 16px; }
.price-summary-total strong { font-size: 19px; color: var(--color-primary-dark); }
.price-total-values {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px;
}
.normal-total {
  color: var(--color-muted);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration-thickness: 1.5px;
}
.advance-box {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--color-border);
}
.advance-highlight {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-whatsapp);
  margin-bottom: 6px;
}
.advance-amount { color: var(--color-whatsapp); font-size: 16px; }

/* ---------- 10. WHATSAPP CTA / order info ---------- */
.selection-validation {
  margin: 2px 0 9px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}
.selection-validation[hidden] { display: none; }
.order-info-card {
  margin-top: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px;
  background: var(--color-bg-soft);
}
.order-info-card h3 {
  font-size: 12.75px;
  font-weight: 400;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 2px;
}
.chevron { transition: transform 0.2s ease; font-size: 14px; }
.order-info-body {
  padding: 0;
  font-size: 12.75px;
  color: var(--color-muted);
  line-height: 1.6;
}
.order-info-body p { margin-bottom: 8px; }
.terms-inline { color: var(--color-text); font-weight: 700; }
.terms-inline:hover { text-decoration: underline; }

/* ---------- 11. VIDEOS ---------- */
.video-slider-shell { position: relative; }
.video-track-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; scroll-behavior: smooth; }
.video-track-wrap::-webkit-scrollbar { height: 0; }
.video-track { display: flex; gap: 10px; padding: 2px 2px 8px; }
.video-card {
  flex: 0 0 calc((100% - 10px) / 2);
  scroll-snap-align: start;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-bg-soft);
}
.video-card video,
.video-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}
.video-card iframe { pointer-events: none; }
.video-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid #ffd0d8;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.video-arrow-prev { left: 6px; }
.video-arrow-next { right: 6px; }
.video-arrow:hover { background: var(--color-primary-pale); }

.google-review-section { padding-top: 4px; padding-bottom: 8px; }
.google-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 3px auto 4px;
  color: var(--color-muted);
  font-size: 13px;
}
.google-rating-summary strong { color: var(--color-text); font-size: 16px; }
.google-mark,
.review-source > span {
  font-weight: 800;
  color: #4285f4;
  font-family: Arial, sans-serif;
}
.google-mark { font-size: 19px; }
.review-stars { color: #f5a623; letter-spacing: 1px; line-height: 1; }
.review-disclosure { margin: 0 0 14px; color: var(--color-muted); font-size: 12px; text-align: center; }
.review-slider-shell { position: relative; }
.review-track-wrap {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.review-track-wrap::-webkit-scrollbar { display: none; }
.review-track { display: flex; align-items: stretch; gap: 12px; padding: 3px 2px 10px; }
.review-card {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding: 16px;
  border: 1px solid #eceef2;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 6px 20px rgba(27, 35, 51, 0.07);
}
.review-card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.review-avatar {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--color-primary-pale);
  object-fit: cover;
  box-shadow: 0 0 0 1px #e7eaf0;
}
.review-card h3 { margin: 0 0 2px; font-size: 14px; line-height: 1.2; }
.review-source { color: var(--color-muted); font-size: 11px; }
.review-card > .review-stars { margin-bottom: 9px; font-size: 14px; }
.review-card p { margin: 0; color: #4f5663; font-size: 13px; line-height: 1.55; }
.review-quote {
  height: 7.75em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.review-quote.is-expanded {
  height: auto;
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}
.review-read-more {
  min-height: 24px;
  align-self: flex-start;
  margin: 4px 0 0;
  padding: 2px 0;
  border: 0;
  background: transparent;
  color: var(--color-primary-dark);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.review-read-more.is-placeholder {
  visibility: hidden;
  pointer-events: none;
}
.review-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 12px;
}
.review-media-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.review-media img {
  width: 100%;
  height: 130px;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  background: transparent;
}
.review-media img.review-image-centered {
  object-fit: contain;
  object-position: center center;
}
.review-card-compact .review-quote {
  height: auto;
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}
.review-card-compact .review-read-more.is-placeholder {
  display: none;
}
.review-card-compact .review-media {
  flex: 1 1 220px;
  min-height: 220px;
  margin-top: 8px;
}
.review-card-compact .review-media img {
  height: 100%;
  min-height: 220px;
  object-fit: contain;
  object-position: center center;
}
.review-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 34px;
  height: 34px;
  border: 1px solid #ffd0d8;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}
.review-arrow-prev { left: -10px; }
.review-arrow-next { right: -10px; }
.google-reviews-link {
  display: table;
  margin: 10px auto 0;
  padding: 9px 14px;
  border: 1px solid #dfe5ef;
  border-radius: 8px;
  color: #334155;
  background: #f8fafc;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
}
.google-reviews-link:hover { border-color: #bbc7d8; background: #f1f5f9; }
/* ---------- 13. PROCESS ---------- */
.process-list { display: flex; flex-direction: column; gap: 18px; }
.process-item { display: flex; gap: 14px; align-items: flex-start; }
.process-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.process-item p { font-size: 13.5px; color: var(--color-muted); line-height: 1.5; }

/* ---------- 14. FAQ ---------- */
.faq-list { border-top: 1px solid var(--color-border); }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item h3 { margin: 0; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  padding: 14px 2px;
  font-size: 14.5px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--color-text);
  min-height: 44px;
}
.faq-question[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 2px 16px; font-size: 13.5px; color: var(--color-muted); line-height: 1.6; }

/* ---------- Social ---------- */
.social-section { padding-bottom: 8px; text-align: center; }
.social-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.social-link svg { width: 27px; height: 27px; display: block; }
.social-link:hover { border-color: var(--color-primary); transform: translateY(-1px); }

/* ---------- 15. FOOTER ---------- */
.site-footer {
  margin-top: 40px;
  background: var(--color-text);
  color: #D8D8D8;
  padding: 32px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-bottom: 24px;
}
.footer-col h3 { color: #fff; font-size: 14px; margin-bottom: 10px; }
.footer-col p { font-size: 13.5px; margin-bottom: 6px; line-height: 1.6; color: #C7C7C7; }
.footer-col a:hover { color: var(--color-primary); }
.footer-contact-list { display: grid; gap: 10px; }
.footer-contact-list li {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  align-items: flex-start;
  column-gap: 9px;
  color: #C7C7C7;
  font-size: 13.5px;
  line-height: 1.55;
}
.footer-contact-list address {
  display: block;
  min-width: 0;
  color: inherit;
  font-style: normal;
  line-height: 1.6;
  text-align: left;
  overflow-wrap: anywhere;
}
.footer-contact-icon {
  width: 14px;
  height: 14px;
  margin-top: 3px;
  fill: var(--color-primary);
}
.footer-links li { margin-bottom: 8px; font-size: 13.5px; }
.footer-bottom {
  border-top: 1px solid #2E2E2E;
  padding: 14px 16px calc(14px + var(--safe-bottom));
  text-align: center;
  font-size: 12.5px;
  color: #999;
}

/* ---------- 16. STICKY MOBILE CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: #fff;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px calc(10px + var(--safe-bottom));
}

.sticky-cta[hidden] {
  display: none;
}
.sticky-cta-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.sticky-select-link {
  align-self: flex-start;
  border: 0;
  background: none;
  color: var(--color-primary-dark);
  padding: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.sticky-select-link[hidden] { display: none; }
.sticky-cta-label:empty { display: none; }
.sticky-cta-label { font-size: 11.5px; color: var(--color-muted); }
.sticky-cta-price { font-size: 16px; color: var(--color-primary-dark); }
.sticky-cta-btn { flex-shrink: 0; padding: 10px 16px; font-size: 14px; }

/* ---------- Placeholder image fallback ---------- */
img[src=""], img:not([src]) {
  background: var(--color-bg-soft);
}
