
/* Styles for ServicePicker and ServicePickerAdmin components */
.service-picker {
    display: flex;
    flex-direction: column;
    margin: 1rem;
}
.service-card {
    background: var(--svc-card-bg);
    border: var(--svc-card-border);
    box-shadow: var(--svc-card-shadow);
    margin: 0.5rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s;
}
.service-card.selected {
    border: var(--svc-card-selected-border);
    box-shadow: var(--svc-card-selected-glow);
}

/* Booking selected service read-only card */
.booking-selected-service {
    margin-top: 0.25rem;
}
.booking-selected-service .service-card.readonly {
    border: 1px solid var(--border-strong);
    background: var(--surface-form);
    padding: 0.5rem;
}
.booking-selected-service .service-card.readonly .service-card-body h3 {
    margin: 0 0 0.25rem 0;
    font-size: 0.8rem;
}
.booking-selected-service .service-category {
    font-size: 0.72rem;
    color: var(--text-soft);
    margin-bottom: 0.25rem;
}

.payment-method-tag {
  --pm-color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
}

.payment-method-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pm-color);
}

.payment-method-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.payment-method-pix { --pm-color: #06b6d4; }
.payment-method-credit { --pm-color: #2563eb; }
.payment-method-debit { --pm-color: #16a34a; }
.payment-method-installment { --pm-color: #7c3aed; }
.payment-method-cash { --pm-color: #f59e0b; }
.payment-method-link { --pm-color: #0ea5e9; }
.payment-method-boleto { --pm-color: #ef4444; }
.payment-method-transfer { --pm-color: #22c55e; }
.payment-method-other { --pm-color: #64748b; }
.booking-note {
    font-size: 0.68rem;
    color: var(--text-soft);
    margin-top: 0.5rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .service-card {
        flex: 1 1 100%;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .service-card {
        flex: 1 1 48%;
    }
}
@media (min-width: 1025px) {
    .service-card {
        flex: 1 1 30%;
    }
}

:root {
  /* BRAND */
  --brand-gold: #d7b35a;
  --brand-green: #2f4533;
  --brand-offwhite: #FFF6EF;
  --brand-beige: #B39D81;
  --brand-rose: #b69592;

  /* NEUTRALS */
  --neutral-0: #ffffff;
  --neutral-50: #fbf7f3;
  --neutral-100: #f3ece5;
  --neutral-200: #e7ddd4;
  --neutral-300: #d6c8bc;
  --neutral-400: #b9a99d;
  --neutral-500: #8a7f76;
  --neutral-600: #6b625b;
  --neutral-700: #4a4440;
  --neutral-800: #2a2623;
  --neutral-900: #1a1715;

  /* SEMANTIC */
  --success: #1f7a4a;
  --success-bg: #e9f7ef;
  --warning: #8a5a00;
  --warning-bg: #fff4db;
  --danger: #b42318;
  --danger-bg: #fdeceb;
  --info: #1d4ed8;
  --info-bg: #eaf2ff;

  /* APP TOKENS */
  --bg-page: var(--brand-offwhite);
  --surface-primary: #ffffff;
  --surface-secondary: #fffaf5;
  --surface-glass: rgba(255, 255, 255, 0.9);
  --surface-dark: rgba(20, 20, 20, 0.85);
  --surface-card: var(--surface-secondary);
  --surface-form: var(--surface-primary);
  --surface-form-focus: #ffffff;
  --bg-surface: var(--surface-primary);
  --bg-surface-2: var(--surface-secondary);
  --bg-section: rgba(179, 157, 129, 0.12);
  --bg-section-rose: rgba(182, 149, 146, 0.14);
  --bg-footer: var(--brand-green);

  --text-main: var(--brand-green);
  --text-muted: var(--neutral-600);
  --text-soft: var(--neutral-500);
  --text-inverse: var(--brand-offwhite);

  --heading: var(--brand-green);
  --heading-muted: var(--neutral-700);

  --border: var(--neutral-200);
  --border-strong: var(--neutral-300);
  --divider: rgba(42, 38, 35, 0.10);
  --border-primary: var(--border);
  --border-secondary: var(--brand-gold);
  --border-gradient: linear-gradient(135deg, var(--border-primary), var(--border-secondary));
  --border-width: 1px;
  --border-top-width: var(--border-width);
  --border-top-color: transparent;
  --border-glow: 0 0 0 0 transparent;
  --border-inset: inset 0 0 0 0 transparent;

  --shadow-sm: 0 2px 10px rgba(26, 23, 21, 0.06);
  --shadow-md: 0 10px 30px rgba(26, 23, 21, 0.10);
  --shadow-lg: 0 18px 60px rgba(26, 23, 21, 0.14);
  --theme-shadow-sm: var(--shadow-sm), var(--border-inset), var(--border-glow);
  --theme-shadow-md: var(--shadow-md), var(--border-inset), var(--border-glow);
  --theme-shadow-lg: var(--shadow-lg), var(--border-inset), var(--border-glow);
  --theme-shadow-border: var(--border-inset), var(--border-glow);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --primary: var(--brand-gold);
  --primary-hover: #caa64f;
  --primary-pressed: #b7923f;
  --primary-contrast: var(--brand-green);

  --secondary: var(--brand-green);
  --secondary-hover: #263a2b;
  --secondary-pressed: #1e2f22;
  --secondary-contrast: var(--brand-offwhite);

  --accent: var(--brand-rose);
  --accent-hover: #a98582;
  --accent-contrast: var(--neutral-900);

  --link: var(--brand-green);
  --link-hover: #1f2f23;

  --focus: rgba(215, 179, 90, 0.40);

  --price: var(--brand-gold);
  --badge: var(--brand-gold);
  --badge-text: var(--brand-green);
  --tag-bg: rgba(215, 179, 90, 0.18);
  --tag-text: var(--brand-green);

  --whatsapp: #25D366;
  --whatsapp-hover: #1fb85a;
  --whatsapp-contrast: #ffffff;

  --input-bg: var(--surface-primary);
  --input-text: var(--neutral-900);
  --input-placeholder: var(--neutral-500);
  --input-border: var(--neutral-200);
  --input-border-focus: var(--brand-gold);
  --input-invalid: var(--danger);
  --input-valid: var(--success);

  --admin-bg: #f7f3ee;
  --admin-surface: var(--neutral-0);
  --admin-sidebar: var(--brand-green);
  --admin-sidebar-text: var(--brand-offwhite);
  --admin-topbar: rgba(255, 246, 239, 0.85);
  --admin-highlight: rgba(215, 179, 90, 0.22);

  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --page-gradient: radial-gradient(circle at top, #fffaf5 0%, var(--bg-page) 45%, var(--bg-section) 100%);
  --seasonal-opacity: 0;
  --seasonal-animation: none;
  --seasonal-pattern: none;
  --seasonal-size: auto;
  --seasonal-enter: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-main);
  background: var(--page-gradient);
}

body.drawer-locked {
  overflow: hidden;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover);
}

.page {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(14px);
  border-style: solid;
  border-width: 0 0 var(--border-width) 0;
  border-image: var(--border-gradient) 1;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17.6px;
  color: var(--brand-green);
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  background: var(--surface-card);
  padding: 4px;
  box-shadow: var(--shadow-sm);
}

.brand-name {
  letter-spacing: 0.2px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-beige));
  color: var(--brand-green);
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
  color: var(--text-muted);
}

.mobile-drawer {
  display: none;
}

.nav-drawer-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.nav-drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--brand-green);
}

.nav-drawer-brand .brand-logo {
  width: 32px;
  height: 32px;
  padding: 3px;
}

.nav-drawer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14.4px;
  color: var(--heading);
}

.nav-close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  cursor: pointer;
  font-size: 14.4px;
}

.main-nav a {
  position: relative;
  padding-bottom: 6px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  gap: 10px;
}

.client-avatar-button {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c79d77, #8b5d3b);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 16px rgba(60, 40, 24, 0.2);
  overflow: hidden;
}

.client-avatar-button--cta {
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.client-avatar-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
  display: block;
}

.mobile-login-avatar {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.mobile-top-actions {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  border: none;
  background: var(--bg-surface);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--theme-shadow-sm);
}

.mobile-header-cart {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-main);
  cursor: pointer;
  box-shadow: var(--theme-shadow-sm);
}

.mobile-header-cart svg {
  width: 18px;
  height: 18px;
}

.mobile-header-cart-count {
  position: absolute;
  top: 3px;
  right: 3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9.6px;
  font-weight: 700;
  line-height: 1;
  background: var(--primary);
  color: var(--primary-contrast);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.62rem 1.3rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, filter 0.22s ease;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-contrast);
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(215, 179, 90, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(215, 179, 90, 0.36);
  filter: brightness(0.94);
}

.btn-primary:active {
  background: var(--primary-pressed);
  transform: none;
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-contrast);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary-hover);
  transform: translateY(-1px);
}

.btn-secondary:active {
  background: var(--secondary-pressed);
}

.btn-outline {
  border: 1.5px solid var(--border-secondary);
  color: var(--text-main);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(215, 179, 90, 0.10);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.btn-green {
  border-color: var(--brand-green);
  color: var(--brand-green);
}

.btn-green:hover {
  background: rgba(47, 69, 51, 0.08);
  border-color: var(--brand-green);
  color: var(--brand-green);
}

.hero {
  padding: 70px 0 40px;
}

.hero-full {
  position: relative;
  min-height: 420px;
  border-radius: 0;
  overflow: hidden;
  margin: 0;
  box-shadow: none;
  background: transparent;
}

.hero-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: var(--hero-opacity, 1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
}

.hero-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* ── Hero Carousel v2 ── */
.hero-carousel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 0 auto 32px;
  width: 100%;
  box-shadow: var(--shadow-md);
  --border-fill: var(--surface-card);
}

.carousel-track {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 2.63 / 1;
  min-height: 280px;
  background: linear-gradient(135deg, var(--bg-surface-2), var(--surface-card));
}

body.frontend-v2-enabled[data-frontend-context="public"] .public-route-v2 > .hero-carousel .carousel-track {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0s linear 0.55s;
  transform: scale(1.025);
  will-change: opacity, transform;
  z-index: 0;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0s linear 0s;
  z-index: 1;
}

body.frontend-v2-enabled[data-frontend-context="public"] .public-route-v2 > .hero-carousel .carousel-slide,
body.frontend-v2-enabled[data-frontend-context="public"] .public-route-v2 > .hero-carousel .carousel-slide.active {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.carousel-slide img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 28, 45, 0.78) 0%, rgba(11, 28, 45, 0.35) 55%, transparent 100%);
}

.carousel-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 52px;
  color: #fff;
  max-width: 640px;
  gap: 14px;
  z-index: 2;
}

.carousel-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 38px);
  margin: 0;
  line-height: 1.15;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.28);
}

.carousel-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(14px, 1.15vw, 17px);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ── Setas laterais ── */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--brand-green);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.carousel-nav--prev { left: 14px; }
.carousel-nav--next { right: 14px; }

.hero-carousel:hover .carousel-nav { opacity: 1; }

.carousel-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.24);
}

/* ── Dots centralizados em baixo ── */
.carousel-controls {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
}

.carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.carousel-dot {
  width: 36px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: inline-grid;
  place-items: center;
}

.carousel-dot::before {
  content: "";
  width: 22px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.42);
  transition: width 0.3s ease, background 0.3s ease;
}

.carousel-dot.active::before {
  width: 32px;
  background: rgba(255, 255, 255, 0.95);
}

/* ── Barra de progresso ── */
.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--brand-gold, #c9a84c);
  z-index: 4;
  border-radius: 0 2px 2px 0;
  transition: width linear;
}

.hero-carousel.single .carousel-controls,
.hero-carousel.single .carousel-nav,
.hero-carousel.single .carousel-progress {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 56px 0;
}

.hero-content-inner {
  max-width: 560px;
}

.hero-full h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0.75rem 0;
}

.hero-full p {
  color: var(--text-muted);
  font-size: 14.4px;
}

.hero-full .hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 1.55;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.hero-trust-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
  font-family: var(--font-body);
}

/* ── Home Reviews (fallback legacy) ── */
.home-reviews-section {
  padding-top: 8px;
}

.home-reviews-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}

.home-reviews-kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--primary);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.home-stack {
  display: flex;
  flex-direction: column;
}

.home-hours-section {
  padding-top: 6px;
}

.home-hours-card {
  padding: 0;
  overflow: hidden;
}

.home-hours-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
}

.home-hours-summary {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.72), transparent 42%),
    linear-gradient(145deg, var(--bg-surface), var(--surface-card));
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.home-hours-summary-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.home-hours-kicker {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.home-hours-summary .section-title {
  margin-bottom: 0;
}

.home-hours-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.home-hours-status--open {
  color: #166534;
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(34, 197, 94, 0.22);
}

.home-hours-status--closed {
  color: #9f1239;
  background: rgba(244, 114, 182, 0.12);
  border-color: rgba(244, 114, 182, 0.18);
}

.home-hours-summary-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--heading);
  max-width: 34ch;
}

.home-hours-note {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text-muted);
  line-height: 1.65;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.home-hours-week {
  padding: 22px;
  display: grid;
  gap: 12px;
  align-content: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 28%),
    var(--surface-card);
}

.home-hours-day {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.home-hours-day.is-today {
  border-color: rgba(212, 163, 115, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 244, 0.96));
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.home-hours-day.is-closed {
  background: rgba(255, 255, 255, 0.56);
}

.home-hours-day-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.home-hours-day-label {
  font-weight: 600;
  color: var(--heading);
}

.home-hours-day-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--heading);
  background: rgba(212, 163, 115, 0.18);
}

.home-hours-day-time {
  font-weight: 700;
  color: var(--heading);
  text-align: right;
  white-space: nowrap;
}

.home-hours-day.is-closed .home-hours-day-time {
  color: var(--text-muted);
}

.feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  box-shadow: var(--theme-shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  background: transparent;
  text-decoration: none;
  color: inherit;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--theme-shadow-lg);
}

.feature-card h3 {
  margin: 0;
  font-size: 16px;
  color: var(--heading);
}

.feature-body h3 {
  color: inherit;
}

.feature-card p {
  color: var(--text-muted);
}

.feature-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-image: var(--card-image);
  background-size: cover;
  background-position: center;
  border-radius: 0;
  position: relative;
  opacity: var(--card-opacity, 1);
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
}

.feature-body {
  padding: 18px;
  background: var(--card-body-bg, var(--surface-card));
  background-color: var(--surface-card);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--heading);
  flex: 1;
  width: 100%;
}

.feature-body .btn {
  align-self: flex-start;
}


.page-texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 1;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.seasonal-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: var(--seasonal-opacity);
  background-image: var(--seasonal-pattern);
  background-size: var(--seasonal-size);
  background-repeat: repeat;
  animation: var(--seasonal-animation);
}

.section {
  animation: var(--seasonal-enter);
}

body[data-visual="1"] {
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --bg-page: #fdfaf6;
  --bg-section: rgba(185, 209, 197, 0.16);
  --border: #e9dfd6;
  --shadow-sm: 0 4px 18px rgba(47, 69, 51, 0.08);
  --shadow-md: 0 12px 32px rgba(47, 69, 51, 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --border-primary: #e6b7b2;
  --border-secondary: #d4af37;
  --border-gradient: linear-gradient(135deg, #e6b7b2, #d4af37);
  --border-width: 1px;
  --border-top-width: var(--border-width);
  --border-top-color: transparent;
  --border-glow: 0 0 6px rgba(230, 183, 178, 0.16);
  --border-inset: inset 0 0 0 0 transparent;
  --surface-primary: #ffffff;
  --surface-secondary: #fff7f5;
  --surface-glass: rgba(255, 255, 255, 0.92);
  --input-border: rgba(230, 183, 178, 0.6);
  --input-border-focus: #d4af37;
  --focus: rgba(212, 175, 55, 0.30);
  --page-gradient: radial-gradient(circle at top, #ffffff 0%, #fdf4ec 45%, #eef4ee 100%);
  --seasonal-opacity: 0.5;
  --seasonal-pattern: radial-gradient(circle, rgba(215, 179, 90, 0.22) 0, rgba(215, 179, 90, 0.05) 30%, transparent 52%);
  --seasonal-size: 220px 220px;
  --seasonal-animation: seasonal-float-up 22s linear infinite;
  --seasonal-enter: seasonal-fade-up 0.9s ease both;
}

body[data-visual="2"] {
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --bg-page: #fbf6ef;
  --bg-section: rgba(179, 157, 129, 0.2);
  --border: #dfd0bf;
  --shadow-sm: 0 6px 20px rgba(74, 68, 64, 0.12);
  --shadow-md: 0 14px 36px rgba(74, 68, 64, 0.16);
  --page-gradient: radial-gradient(circle at top, #fffaf4 0%, #f3e9dd 48%, #efe4d7 100%);
  --border-primary: #1f3d2b;
  --border-secondary: #c9a227;
  --border-gradient: linear-gradient(180deg, #1f3d2b, #1f3d2b);
  --border-width: 1.5px;
  --border-top-width: var(--border-width);
  --border-top-color: transparent;
  --border-glow: 0 0 0 0 transparent;
  --border-inset: inset 0 0 0 1px rgba(201, 162, 39, 0.7);
  --surface-primary: #ffffff;
  --surface-secondary: #f6f8f5;
  --surface-glass: rgba(255, 255, 255, 0.92);
  --input-border: rgba(31, 61, 43, 0.55);
  --input-border-focus: #c9a227;
  --focus: rgba(201, 162, 39, 0.25);
  --seasonal-opacity: 0.42;
  --seasonal-pattern: repeating-linear-gradient(90deg, rgba(182, 149, 146, 0.18) 0 1px, transparent 1px 120px),
    radial-gradient(circle at 20% 40%, rgba(215, 179, 90, 0.16) 0, transparent 40%);
  --seasonal-size: 180px 180px;
  --seasonal-animation: seasonal-drift 26s ease-in-out infinite;
  --seasonal-enter: seasonal-slide-in 0.8s ease both;
}

body[data-visual="3"] {
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --bg-page: #f7f3ee;
  --bg-section: rgba(47, 69, 51, 0.16);
  --border: #d5ccc2;
  --shadow-sm: 0 2px 10px rgba(26, 23, 21, 0.1);
  --shadow-md: 0 8px 24px rgba(26, 23, 21, 0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --page-gradient: linear-gradient(135deg, #f8f3ef 0%, #efe6de 55%, #e6ded6 100%);
  --border-primary: #0b1c2d;
  --border-secondary: #e0b84c;
  --border-gradient: linear-gradient(180deg, #0b1c2d, #0b1c2d);
  --border-width: 1px;
  --border-top-width: 2px;
  --border-top-color: #e0b84c;
  --border-glow: 0 0 0 0 transparent;
  --border-inset: inset 0 0 0 0 transparent;
  --surface-primary: #ffffff;
  --surface-secondary: #f9fafc;
  --surface-glass: rgba(255, 255, 255, 0.92);
  --input-border: rgba(11, 28, 45, 0.55);
  --input-border-focus: #e0b84c;
  --focus: rgba(224, 184, 76, 0.25);
  --seasonal-opacity: 0.35;
  --seasonal-pattern: repeating-linear-gradient(135deg, rgba(47, 69, 51, 0.12) 0 1px, transparent 1px 60px),
    linear-gradient(120deg, rgba(215, 179, 90, 0.12), transparent 70%);
  --seasonal-size: 160px 160px;
  --seasonal-animation: seasonal-grid 30s linear infinite;
  --seasonal-enter: seasonal-scale-in 0.65s ease both;
}

body[data-visual="4"] {
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --bg-page: #fff4e8;
  --bg-section: rgba(215, 179, 90, 0.18);
  --border: #ead6b9;
  --shadow-sm: 0 8px 22px rgba(90, 68, 33, 0.14);
  --shadow-md: 0 18px 42px rgba(90, 68, 33, 0.2);
  --primary: #d6a64a;
  --primary-hover: #c6943f;
  --primary-pressed: #b48333;
  --accent: #b9896b;
  --page-gradient: radial-gradient(circle at top, #fff6ec 0%, #f6e3c8 55%, #efd7ba 100%);
  --border-primary: #8b1e24;
  --border-secondary: #f2c94c;
  --border-gradient: linear-gradient(135deg, #8b1e24, #f2c94c);
  --border-width: 1px;
  --border-top-width: var(--border-width);
  --border-top-color: transparent;
  --border-glow: 0 0 8px rgba(242, 201, 76, 0.25);
  --border-inset: inset 0 0 0 0 transparent;
  --surface-primary: #ffffff;
  --surface-secondary: #fff8f2;
  --surface-glass: rgba(255, 255, 255, 0.92);
  --input-border: rgba(139, 30, 36, 0.55);
  --input-border-focus: #f2c94c;
  --focus: rgba(242, 201, 76, 0.28);
  --seasonal-opacity: 0.55;
  --seasonal-pattern: radial-gradient(circle at 20% 20%, rgba(215, 179, 90, 0.3) 0, transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(255, 236, 200, 0.45) 0, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.25) 0, transparent 40%);
  --seasonal-size: 260px 260px;
  --seasonal-animation: seasonal-glow 14s ease-in-out infinite;
  --seasonal-enter: seasonal-glow-in 0.9s ease both;
}

@keyframes seasonal-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes seasonal-slide-in {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes seasonal-scale-in {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes seasonal-glow-in {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes seasonal-float-up {
  from {
    transform: translateY(30px);
  }
  to {
    transform: translateY(-60px);
  }
}

@keyframes seasonal-drift {
  0% {
    transform: translateX(-40px);
  }
  50% {
    transform: translateX(40px);
  }
  100% {
    transform: translateX(-40px);
  }
}

@keyframes seasonal-grid {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-80px, -80px, 0);
  }
}

@keyframes seasonal-glow {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(1.03);
  }
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
}

@keyframes seasonal-barber-stripe {
  from { background-position: 0 0; }
  to   { background-position: 56.57px 56.57px; }
}

/* ══════════════════════════════════════════════════════════════
   Tema 5 — Barbearia Clássica
   Dark mode: charcoal + latão dourado + off-white quente
   ══════════════════════════════════════════════════════════════ */
body[data-visual="5"] {
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --bg-page: #0d0d0f;
  --bg-surface: #141418;
  --bg-section: rgba(200, 164, 106, 0.05);
  --border: #2e2c38;
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.65);
  --primary: #c8a46a;
  --primary-hover: #d6b478;
  --primary-pressed: #b08838;
  --accent: #e8c890;
  --page-gradient: linear-gradient(160deg, #0d0d0f 0%, #11111a 100%);
  --border-primary: #c8a46a;
  --border-secondary: #c8a46a;
  --border-gradient: linear-gradient(135deg, #c8a46a, #e8c890);
  --border-width: 1px;
  --border-top-width: var(--border-width);
  --border-top-color: transparent;
  --border-glow: 0 0 10px rgba(200, 164, 106, 0.18);
  --border-inset: inset 0 0 0 0 transparent;
  --surface-primary: #141418;
  --surface-secondary: #1c1c24;
  --surface-glass: rgba(20, 20, 24, 0.92);
  --input-border: rgba(200, 164, 106, 0.4);
  --input-border-focus: #c8a46a;
  --focus: rgba(200, 164, 106, 0.28);
  --radius-sm: 3px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --seasonal-opacity: 1;
  --seasonal-pattern: repeating-linear-gradient(
    -45deg,
    transparent 0, transparent 18px,
    rgba(200, 164, 106, 0.055) 18px, rgba(200, 164, 106, 0.055) 22px
  );
  --seasonal-size: auto;
  --seasonal-animation: seasonal-barber-stripe 8s linear infinite;
  --seasonal-enter: none;
}

/* ── Dark mode: cores base de texto e fundos ── */
body[data-visual="5"] {
  background: var(--bg-page);
  color: #f0ece4;
}

body[data-visual="5"] .site-header,
body[data-visual="5"] .header-wrap {
  background: rgba(13, 13, 15, 0.93);
  border-bottom: 1px solid #2e2c38;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body[data-visual="5"] .nav-link,
body[data-visual="5"] .brand-name,
body[data-visual="5"] .main-nav a {
  color: #9a9080;
}

body[data-visual="5"] .brand {
  color: #f0ece4;
}

body[data-visual="5"] .nav-link:hover,
body[data-visual="5"] .main-nav a:hover {
  color: #c8a46a;
}

body[data-visual="5"] h1,
body[data-visual="5"] h2,
body[data-visual="5"] h3,
body[data-visual="5"] h4,
body[data-visual="5"] .section-title {
  color: #f0ece4;
}

body[data-visual="5"] p,
body[data-visual="5"] li {
  color: #9a9080;
}

/* ── Cards e superfícies ── */
body[data-visual="5"] .card {
  background: #141418;
  border-color: #2e2c38;
  color: #f0ece4;
}

body[data-visual="5"] .service-card,
body[data-visual="5"] .product-card {
  background: #141418;
  border-color: #2e2c38;
  border-left: 3px solid #c8a46a;
  color: #f0ece4;
}

body[data-visual="5"] .service-card:hover,
body[data-visual="5"] .product-card:hover {
  border-left-color: #e8c890;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55);
}

body[data-visual="5"] .service-name,
body[data-visual="5"] .product-name {
  color: #f0ece4;
}

body[data-visual="5"] .service-price,
body[data-visual="5"] .product-price {
  color: #c8a46a;
}

body[data-visual="5"] .service-desc,
body[data-visual="5"] .product-desc {
  color: #9a9080;
}

/* ── Hero ── */
body[data-visual="5"] .hero-full {
  background: #0d0d0f;
}

body[data-visual="5"] .hero-full h1 {
  color: #f0ece4;
}

body[data-visual="5"] .hero-full p {
  color: #9a9080;
}

/* ── Botões ── */
body[data-visual="5"] .btn-primary {
  background: #c8a46a;
  color: #0d0d0f;
  border-color: #c8a46a;
  box-shadow: 0 6px 20px rgba(200, 164, 106, 0.32);
}

body[data-visual="5"] .btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 10px 28px rgba(200, 164, 106, 0.42);
}

body[data-visual="5"] .btn-outline {
  color: #c8a46a;
  border-color: #c8a46a;
}

body[data-visual="5"] .btn-outline:hover {
  background: rgba(200, 164, 106, 0.1);
  color: #e8c890;
}

/* ── Horários de funcionamento ── */
body[data-visual="5"] .home-hours-card {
  background: #141418;
  border-color: #2e2c38;
}

body[data-visual="5"] .home-hours-day {
  border-color: #2e2c38;
}

body[data-visual="5"] .home-hours-day-label {
  color: #f0ece4;
}

body[data-visual="5"] .home-hours-day-time {
  color: #9a9080;
}

body[data-visual="5"] .home-hours-day.is-today .home-hours-day-label {
  color: #c8a46a;
}

body[data-visual="5"] .home-hours-status--open {
  background: rgba(200, 164, 106, 0.14);
  color: #c8a46a;
  border-color: rgba(200, 164, 106, 0.3);
}

/* ── Formulários e inputs ── */
body[data-visual="5"] input,
body[data-visual="5"] select,
body[data-visual="5"] textarea {
  background: #1c1c24;
  border-color: #2e2c38;
  color: #f0ece4;
}

body[data-visual="5"] input:focus,
body[data-visual="5"] select:focus,
body[data-visual="5"] textarea:focus {
  border-color: #c8a46a;
  box-shadow: 0 0 0 3px rgba(200, 164, 106, 0.18);
}

body[data-visual="5"] input::placeholder,
body[data-visual="5"] textarea::placeholder {
  color: #5a5448;
}

/* ── Footer ── */
body[data-visual="5"] {
  --bg-footer: #0a0a0c;
}

body[data-visual="5"] .footer-note {
  background: #0a0a0c;
  border-top: 1px solid #2e2c38;
  border-image: none;
}

body[data-visual="5"] .footer-brand,
body[data-visual="5"] .footer-brand-name {
  color: #f0ece4;
}

body[data-visual="5"] .footer-tagline,
body[data-visual="5"] .footer-cta-text,
body[data-visual="5"] .footer-contact-item,
body[data-visual="5"] .footer-contact-item a,
body[data-visual="5"] .footer-copy {
  color: #5a5448;
}

body[data-visual="5"] .footer-contact-item a:hover {
  color: #c8a46a;
}

body[data-visual="5"] .footer-heading {
  color: #f0ece4;
}

body[data-visual="5"] .footer-whatsapp-btn {
  background: #c8a46a;
  color: #0a0a0c;
}

body[data-visual="5"] .footer-whatsapp-btn:hover {
  background: #d4b57e;
}

body[data-visual="5"] .footer-cta-btn {
  background: #f0ece4;
  color: #0a0a0c;
}

body[data-visual="5"] .footer-nav a {
  color: #9a9080;
}

body[data-visual="5"] .footer-nav a:hover {
  color: #c8a46a;
}

body[data-visual="5"] .footer-login-link {
  color: #5a5448;
}

body[data-visual="5"] .footer-login-link:hover {
  color: #c8a46a;
}

body[data-visual="5"] .footer-bottom {
  border-top-color: #2e2c38;
}

body[data-visual="5"] .footer-powered,
body[data-visual="5"] .footer-powered strong {
  color: #5a5448;
}

@keyframes professional-modal-pop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes professional-modal-slide {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .seasonal-layer,
  .section {
    animation: none;
  }
}

@media (max-width: 900px) {
  .seasonal-layer {
    display: none;
  }
}

.feature-badge {
  align-self: flex-start;
  background: var(--tag-bg);
  color: var(--tag-text);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 9.6px;
}

.feature-card .btn {
  margin-top: auto;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 12, 10, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
}

.modal.open {
  display: flex;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2100;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}
.modal-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: min(420px, 90vw);
  box-shadow: var(--theme-shadow-lg);
}

.modal-actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.accordion {
  margin-top: 20px;
  border-top: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  border-radius: var(--radius-sm);
  margin-top: 12px;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.accordion-trigger:hover {
  border-color: var(--accent, #A67C52);
  background: var(--bg-surface);
  color: var(--accent, #A67C52);
}

.accordion-trigger span {
  font-weight: 700;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.25s ease;
  opacity: 0;
  padding: 0 18px;
}

.accordion-panel.open {
  opacity: 1;
  padding: 12px 18px 16px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.hero-card {
  background: var(--bg-surface);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--theme-shadow-md);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(25.6px, 3.2vw, 38.4px);
  margin: 0 0 12px;
}

.hero-text {
  color: var(--text-muted);
  font-size: 14.4px;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stat {
  background: linear-gradient(140deg, var(--bg-surface-2), #fff);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.hero-stat h3 {
  margin: 0 0 6px;
  font-size: 14.4px;
}

.section {
  padding: 28px 0 40px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--heading);
}

.about-hero {
  position: relative;
  padding: 48px;
  border-radius: var(--radius-xl);
  background: var(--bg-surface);
  overflow: hidden;
  box-shadow: var(--theme-shadow-sm);
  border: 1px solid var(--border);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--about-hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.95;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 246, 239, var(--about-hero-overlay, 0.25));
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.about-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(25.6px, 3.2vw, 38.4px);
  margin-bottom: 10px;
}

.about-hero-content p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.about-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-mvv {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.about-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--theme-shadow-sm);
}

.about-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--tag-bg);
  color: var(--tag-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14.4px;
  margin-bottom: 12px;
}

.about-card ul {
  padding-left: 18px;
  margin: 0;
  color: var(--text-muted);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2fr;
  gap: 24px;
  align-items: start;
}

.about-photo img,
.about-photo-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.about-photo-placeholder {
  background: var(--bg-surface-2);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.about-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.about-gallery figure {
  margin: 0;
}

.about-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  cursor: zoom-in;
}

.about-gallery figcaption {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 11.2px;
}

.about-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.about-map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.about-notice {
  padding: 12px 16px;
  background: var(--warning-bg);
  color: var(--warning);
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-top: 12px;
}

.about-location-meta {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 12.8px;
}

.about-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.about-profile {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.about-team-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--theme-shadow-sm);
  text-align: left;
  cursor: pointer;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  color: inherit;
  font: inherit;
}

.about-team-photo img,
.about-team-photo .about-team-initial {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.about-team-photo .about-team-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface-2);
  color: var(--heading);
  font-weight: 600;
  font-size: 19.2px;
}

.about-team-card h3 {
  margin: 0;
  font-size: 14.4px;
}

.about-team-role {
  margin: 6px 0;
  color: var(--text-muted);
  font-size: 10.4px;
}

.about-team-bio {
  margin: 0;
  color: var(--text-muted);
  font-size: 11.2px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about-team-more {
  margin-top: 8px;
  font-size: 9.6px;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.about-team-card:focus-visible {
  outline: 2px solid var(--border-secondary);
  outline-offset: 3px;
}

.professional-modal-card {
  width: min(720px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  gap: 18px;
  position: relative;
}

#professionalModal.open .professional-modal-card {
  animation: professional-modal-pop 0.25s ease;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: none;
  background: var(--bg-surface-2);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  font-size: 14.4px;
  cursor: pointer;
  box-shadow: var(--theme-shadow-sm);
  color: var(--text-main);
}

.professional-modal-header {
  display: flex;
  gap: 16px;
  align-items: center;
}

.professional-modal-avatar {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.professional-modal-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.professional-modal-initial {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 28.8px;
  color: var(--heading);
}

.professional-modal-role {
  margin: 6px 0 0;
  color: var(--text-muted);
}

.professional-modal-phrase {
  margin: 6px 0 0;
  color: var(--heading-muted);
  font-style: italic;
  white-space: pre-line;
}

.professional-modal-bio {
  margin: 0;
  color: var(--text-muted);
  white-space: pre-line;
  line-height: 1.6;
}

.professional-modal-body {
  display: grid;
  gap: 16px;
}

.professional-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.professional-modal-block h4 {
  margin: 0 0 6px;
}

.professional-modal-block ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.professional-cta {
  margin-top: 8px;
  width: 100%;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.social-card {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--theme-shadow-sm);
  border-radius: var(--radius-md);
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--theme-shadow-md);
}

.social-card:focus-visible {
  outline: 2px solid var(--border-secondary);
  outline-offset: 3px;
}

.social-card-media {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--bg-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.social-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-card-initial {
  font-weight: 700;
  color: var(--heading);
}

.social-card-body h3 {
  margin: 0;
  font-size: 14.4px;
}

.social-card-body {
  display: flex;
  flex-direction: column;
}

.social-card-body p {
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 11.2px;
}

.social-card-subtitle {
  margin-top: 6px;
  display: block;
  color: var(--text-soft);
  font-size: 10.4px;
}

.social-card-cta {
  margin-top: auto;
  font-weight: 600;
  color: var(--link);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--theme-shadow-sm);
  border: 1px solid var(--border);
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.table th,
.table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.table th {
  background: var(--bg-surface-2);
  color: var(--text-muted);
  font-weight: 600;
}

@media (max-width: 920px) {
  .home-hours-layout {
    grid-template-columns: 1fr;
  }

  .home-hours-summary {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
}

@media (max-width: 640px) {
  .home-hours-summary,
  .home-hours-week {
    padding: 20px;
  }

  .home-hours-day {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hours-day-time {
    text-align: left;
  }
}

.pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--tag-bg);
  color: var(--tag-text);
  font-size: 9.6px;
  font-weight: 600;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.product-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--theme-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.product-card h3 {
  margin: 0;
  font-size: 14.4px;
}

.product-card strong {
  color: var(--price);
  font-weight: 600;
}

.product-card s {
  color: var(--text-soft);
}

.product-meta {
  color: var(--text-muted);
  font-size: 11.2px;
}

.badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--tag-bg);
  color: var(--tag-text);
  font-size: 9.6px;
  font-weight: 600;
}

.badge.out {
  background: var(--danger-bg);
  color: var(--danger);
}

.badge.best-seller {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-beige));
  color: var(--brand-green);
  box-shadow: var(--shadow-sm);
}

.product-card.highlight {
  position: relative;
  border: 1px solid var(--brand-gold);
  box-shadow: var(--theme-shadow-md);
}

.product-gallery {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-gallery img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
}

.services-page {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-intro {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.breadcrumb {
  color: var(--text-muted);
  font-size: 10.4px;
}

.breadcrumb span {
  margin: 0 6px;
  color: var(--text-soft);
}

.filters-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--theme-shadow-sm);
}

.filters-search {
  flex: 1;
  min-width: 220px;
}

.filters-bar input,
.filters-bar select {
  padding: 10px 12px;
  border: var(--border-width) solid var(--input-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  background: var(--input-bg);
  background-color: var(--surface-form);
  color: var(--input-text);
  min-width: 160px;
}

.filters-bar input:focus,
.filters-bar select:focus {
  outline: none;
  border-color: var(--input-border-focus);
  box-shadow: 0 0 0 4px var(--focus);
}

.filters-sheet-card input,
.filters-sheet-card select {
  width: 100%;
  padding: 10px 12px;
  border: var(--border-width) solid var(--input-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  background: var(--input-bg);
  background-color: var(--surface-form);
  color: var(--input-text);
}

.filters-sheet-card input:focus,
.filters-sheet-card select:focus {
  outline: none;
  border-color: var(--input-border-focus);
  box-shadow: 0 0 0 4px var(--focus);
}

.filters-search input {
  width: 100%;
}

.filters-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filters-group select,
.filters-group input {
  min-width: 160px;
}

.filters-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filters-toggle {
  display: none;
}

.filters-sheet {
  position: fixed;
  inset: 0;
  display: none;
  align-items: flex-end;
  z-index: 1100;
}

.filters-sheet.open {
  display: flex;
}

.filters-sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
}

.filters-sheet-card {
  position: relative;
  width: 100%;
  background: var(--bg-surface);
  border-radius: 16px 16px 0 0;
  padding: 20px;
  z-index: 1;
  display: grid;
  gap: 12px;
  max-height: 80vh;
  overflow-y: auto;
}

.filters-sheet-card form {
  display: grid;
  gap: 12px;
}

.filters-sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.featured-services {
  display: grid;
  gap: 16px;
  margin: 16px 0 24px;
}

.service-card.featured {
  border: 1px solid var(--brand-gold);
  box-shadow: var(--theme-shadow-md);
}

.service-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--theme-shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--theme-shadow-md);
}

.service-card:hover img {
  transform: scale(1.03);
}

.service-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card-body h3 {
  margin: 0;
  font-size: 14.4px;
}

.service-card-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 11.2px;
}

.service-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 10.4px;
}

.service-card-meta strong {
  color: var(--price);
  font-weight: 600;
}

.services-empty {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--theme-shadow-sm);
  display: grid;
  gap: 12px;
  justify-items: center;
}

.service-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.service-detail {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-detail-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 11.2px;
}

.service-detail-meta strong {
  color: var(--price);
}

.service-cta {
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.lp-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.lp-module {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--theme-shadow-sm);
  padding: 36px 32px;
  min-width: 0;
}

.lp-module:nth-child(even) {
  background: var(--bg-surface-2, var(--bg-surface));
}

/* ── Full-width breakout for Service Page ── */
.lp-item--service {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  gap: 0;
  overflow-x: clip;
}

body.frontend-v2-enabled[data-frontend-context="public"] .public-route-v2--servico .lp-item,
body[data-public-v2-route="servico"] .lp-item {
  grid-template-columns: minmax(0, 1fr);
}

.lp-item--service .lp-module {
  border-radius: 0;
  box-shadow: none;
  padding: 56px max(32px, calc((100vw - 1120px) / 2));
}

.lp-item--service .lp-module:nth-child(odd) {
  background: var(--bg-surface);
}

.lp-item--service .lp-module:nth-child(even) {
  background: var(--bg-page, #fdfaf6);
}

/* ── Service – Vivid section contrasts ── */
.lp-item--service .lp-module--benefits {
  background: var(--accent, #A67C52) !important;
  color: #fff;
}

.lp-item--service .lp-module--benefits .lp-module-title {
  color: #fff;
}

.lp-item--service .lp-module--benefits .lp-benefit-item {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.lp-item--service .lp-module--benefits .lp-benefit-item:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.35);
}

.lp-item--service .lp-module--benefits .lp-benefit-icon {
  background: #fff;
  color: var(--accent, #A67C52);
}

.lp-item--service .lp-module--method {
  background: var(--text-primary, #2C2C2C) !important;
  color: #fff;
}

.lp-item--service .lp-module--method .lp-eyebrow {
  color: var(--accent, #A67C52);
}

.lp-item--service .lp-module--method .lp-module-title {
  color: #fff;
}

.lp-item--service .lp-module--method .lp-step-item {
  border-top-color: var(--accent, #A67C52);
}

.lp-item--service .lp-module--method .lp-step-item h3 {
  color: #fff;
}

.lp-item--service .lp-module--method .lp-step-item p,
.lp-item--service .lp-module--method .lp-step-item small {
  color: rgba(255, 255, 255, 0.6);
}

.lp-item--service .lp-module--social-proof {
  background: var(--bg-surface-2, #f3f4f6) !important;
}

.lp-item--service .lp-module--faq {
  background: var(--bg-surface) !important;
}

.lp-item--service .lp-module--care,
.lp-item--service .lp-module--policy {
  background: var(--bg-page, #fdfaf6) !important;
}

/* ── Service – Hero edge-bleed ── */
.lp-item--service .lp-module--hero {
  padding: 0;
  background: var(--text-primary, #2C2C2C) !important;
  color: #fff;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* Title Banner */
.lp-title-banner {
  text-align: center;
  padding: 64px max(32px, calc((100vw - 1120px) / 2)) 40px;
}

.lp-title-banner .lp-eyebrow {
  color: var(--accent, #A67C52);
  margin-bottom: 12px;
}

.lp-title-banner-name {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 16px;
  color: #fff;
}

.lp-title-banner-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.lp-price-box--banner {
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
}

.lp-price-box--banner .lp-price-box-item .lp-icon {
  color: var(--accent, #A67C52);
}

.lp-price-box--banner .lp-price-box-sep {
  background: rgba(255, 255, 255, 0.25);
}

.lp-price-box--banner strong {
  color: #fff;
}

/* Hero content (below carousel) */
.lp-item--service .lp-module--hero .lp-hero-content {
  text-align: center;
  padding: 32px max(32px, calc((100vw - 1120px) / 2)) 48px;
}

.lp-item--service .lp-module--hero .lp-hero-headline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 16px;
}

.lp-item--service .lp-module--hero .lp-hero-actions {
  justify-content: center;
}

/* ── Service – Hero Carousel ── */
.lp-hero-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 660px;
  background: var(--bg-surface-2, #eee);
}

.lp-hero-slides {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 100%;
}

.lp-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: scale(1.03);
  z-index: 0;
}

.lp-hero-slide.active {
  visibility: visible;
  opacity: 1;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  transform: scale(1);
  z-index: 1;
}

.lp-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  cursor: zoom-in;
}

/* Nav arrows */
.lp-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--text-primary, #222);
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.lp-hero-carousel:hover .lp-hero-nav {
  opacity: 1;
}

.lp-hero-nav:hover {
  background: #fff;
}

.lp-hero-nav--prev {
  left: 16px;
}

.lp-hero-nav--next {
  right: 16px;
}

/* Dots */
.lp-hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.lp-hero-dot {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: grid;
  place-items: center;
  transition: transform 0.3s ease;
}

.lp-hero-dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.3s ease, transform 0.3s ease;
}

.lp-hero-dot.active {
  background: transparent;
}

.lp-hero-dot.active::before {
  background: #fff;
  transform: scale(1.3);
}

/* Counter badge */
.lp-hero-counter {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.lp-item--service .lp-hero-content {
  padding: 48px max(40px, calc((100vw - 1120px) / 2)) 48px 48px;
  align-content: center;
}

/* ── Service – Benefits soft-fill ── */
.lp-item--service .lp-benefit-item {
  border: none;
  background: var(--bg-surface-2, #f3f4f6);
  padding: 20px 18px;
  border-radius: var(--radius-md);
  transition: transform 0.25s ease;
}

.lp-item--service .lp-benefit-item:hover {
  transform: translateY(-2px);
}

.lp-item--service .lp-benefit-icon {
  background: var(--accent, #A67C52);
  color: #fff;
}

/* ── Service – Steps timeline ── */
.lp-item--service .lp-step-item {
  border: none;
  border-radius: 0;
  border-top: 3px solid var(--accent, #A67C52);
  text-align: left;
  justify-items: start;
  padding: 28px 4px 12px;
}

.lp-item--service .lp-step-item:hover {
  transform: none;
  box-shadow: none;
}

.lp-item--service .lp-step-number {
  width: 40px;
  height: 40px;
  font-size: 15px;
  background: var(--accent, #A67C52);
  color: #fff;
}

/* ── Service – Video cinematic bleed ── */
.lp-item--service .lp-module--video {
  padding: 0;
  background: var(--bg-surface) !important;
}

.lp-item--service .lp-module--video .lp-module-title {
  padding: 32px max(32px, calc((100vw - 1120px) / 2)) 0;
}

.lp-item--service .lp-video-wrap {
  border-radius: 0;
  padding-bottom: 50%;
}

/* Video CTA below video */
.lp-video-cta {
  text-align: center;
  padding: 32px max(32px, calc((100vw - 1120px) / 2)) 48px;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
}

/* ── Service – Testimonials horizontal scroll ── */
.lp-item--service .lp-testimonials-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 4px 0 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.lp-item--service .lp-testimonials-grid::-webkit-scrollbar {
  display: none;
}

.lp-item--service .lp-testimonial-item {
  min-width: 300px;
  max-width: 340px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

/* ── Service – Quote dark cinematic ── */
.lp-item--service .lp-module--quote {
  background: var(--text-primary, #2C2C2C);
}

.lp-item--service .lp-module--quote blockquote {
  color: #fff;
}

.lp-item--service .lp-module--quote cite {
  color: rgba(255, 255, 255, 0.5);
}

.lp-item--service .lp-module--quote cite strong {
  color: #fff;
}

.lp-item--service .lp-module--quote .lp-quote-icon {
  color: var(--accent, #A67C52);
  opacity: 0.7;
}

/* ── Service – Details image bleed ── */
.lp-item--service .lp-module--details {
  padding: 0;
}

.lp-item--service .lp-details-grid {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  align-items: stretch;
}

.lp-item--service .lp-details-image {
  border-radius: 0;
  height: 100%;
  min-height: 400px;
}

.lp-item--service .lp-details-grid > div:last-child {
  padding: 48px max(40px, calc((100vw - 1120px) / 2)) 48px 48px;
  align-self: center;
}

.lp-module-title {
  margin: 0 0 18px;
  font-size: 22px;
}

.lp-module-header {
  text-align: center;
  margin-bottom: 24px;
}

.lp-module-header .lp-eyebrow {
  margin-bottom: 8px;
}

.lp-module-header .lp-module-title {
  margin-bottom: 0;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
  min-height: 420px;
}

.lp-hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lp-hero-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-hero-gallery img:first-child:last-child {
  height: 100%;
  min-height: 360px;
  grid-column: 1 / -1;
}

.lp-hero-gallery img:hover {
  transform: scale(1.02);
}

.lp-hero-content {
  display: grid;
  gap: 16px;
  padding: 12px 0;
}

.lp-eyebrow {
  font-size: 11px;
  color: var(--accent, var(--text-muted));
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500;
}

.lp-hero-headline {
  margin: 0;
  font-size: 19px;
}

.lp-price-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  transition: background 0.3s ease;
}

.lp-price-box:hover {
  background: var(--bg-surface-2, #f9f9f7);
}

.lp-price-box-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lp-price-box-item i,
.lp-price-box-item .lp-icon {
  font-size: 18px;
  color: var(--brand-green, #22c55e);
  flex-shrink: 0;
}

.lp-price-box-sep {
  width: 1px;
  height: 18px;
  background: var(--border);
  flex-shrink: 0;
}

.lp-price-box strong {
  color: var(--price);
  font-size: 22px;
}

.lp-price-box s {
  color: var(--text-soft);
}

.lp-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.btn-pill {
  border-radius: 9999px;
  padding: 14px 32px;
}

.btn-pill .btn-icon-right {
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.btn-pill:hover .btn-icon-right {
  transform: translateX(3px);
}

.lp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lp-benefit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.lp-benefit-item:hover {
  border-color: var(--accent, #A67C52);
  background: var(--bg-surface-2, #f9f9f7);
}

.lp-benefit-item p {
  margin: 0;
}

.lp-benefit-icon {
  min-width: 28px;
  min-height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--tag-bg);
  color: var(--tag-text);
  font-size: 11px;
  font-weight: 700;
}

.lp-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lp-proof-grid figure,
.lp-before-after-item {
  margin: 0;
}

.lp-proof-grid img {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.lp-proof-grid figcaption,
.lp-before-after-item figcaption {
  font-size: 12px;
  margin-top: 8px;
  color: var(--text-muted);
}

.lp-before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lp-before-after-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.lp-before-after-images img {
  width: 100%;
  height: 170px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lp-step-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  display: grid;
  gap: 10px;
  text-align: center;
  justify-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-step-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--theme-shadow-md);
}

.lp-step-item h3,
.lp-step-item p {
  margin: 0;
}

.lp-step-item p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.lp-step-number {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--bg-surface-2, #f3f4f6);
  color: var(--brand-green, #22c55e);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.lp-text-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lp-text-grid article {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.lp-text-grid article:hover {
  border-color: var(--accent, #A67C52);
  background: var(--bg-surface-2, #f9f9f7);
}

.lp-text-grid h3 {
  margin-top: 0;
}

.lp-text-grid p {
  margin: 0;
}

.lp-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.lp-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lp-testimonial-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: grid;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-testimonial-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--theme-shadow-md);
}

.lp-testimonial-item p {
  margin: 0;
}

.lp-upsell-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lp-upsell-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: grid;
  gap: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.lp-upsell-item:hover {
  border-color: var(--accent, #A67C52);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.lp-upsell-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.lp-upsell-item h3,
.lp-upsell-item p {
  margin: 0;
}

.lp-module--cta-final {
  background: var(--text-primary, #2C2C2C);
  border: none;
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--radius-lg, 16px);
}

.lp-item--service .lp-module--cta-final {
  border-radius: 0;
  padding: 64px max(32px, calc((100vw - 1120px) / 2));
}

.lp-module--cta-final h2 {
  margin-top: 0;
  color: #fff;
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 28px;
}

.lp-module--cta-final p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin: 0 auto 24px;
}

.lp-module--cta-final .lp-hero-actions {
  justify-content: center;
}

.lp-module--cta-final .btn-primary {
  background: var(--accent, #A67C52);
  border-color: var(--accent, #A67C52);
}

.lp-module--cta-final .btn-primary:hover {
  opacity: 0.9;
}

/* ── Quote Module ── */
.lp-module--quote {
  text-align: center;
  padding: 48px 32px;
  background: var(--bg-surface-2, #f3f4f6);
}

.lp-item--service .lp-module--quote {
  padding: 64px max(32px, calc((100vw - 1120px) / 2));
}

.lp-module--quote .lp-quote-icon {
  font-size: 32px;
  color: var(--accent, #A67C52);
  opacity: 0.35;
  margin-bottom: 16px;
}

.lp-module--quote blockquote {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0 auto 16px;
  max-width: 640px;
}

.lp-module--quote cite {
  font-style: normal;
  font-size: 13px;
  color: var(--text-muted);
}

.lp-module--quote cite strong {
  display: block;
  color: var(--text-primary);
  font-size: 14px;
  margin-bottom: 2px;
}

/* ── Details Table Module ── */
.lp-module--details {
  padding: 36px 32px;
}

.lp-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.lp-details-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg, 16px);
  box-shadow: var(--theme-shadow-md);
}

.lp-details-table {
  display: grid;
  gap: 0;
}

.lp-details-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: background 0.25s ease;
}

.lp-details-row:hover {
  background: var(--bg-surface-2, #f9f9f7);
}

.lp-details-row:last-child {
  border-bottom: none;
}

.lp-details-row .lp-details-label {
  color: var(--text-muted);
}

.lp-details-row .lp-details-value {
  font-weight: 500;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lp-details-note {
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--bg-surface-2, #f3f4f6);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.lp-details-note i,
.lp-details-note .lp-icon {
  color: var(--accent, #A67C52);
  flex-shrink: 0;
}

.lp-details-title {
  margin-top: 0;
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 22px;
  margin-bottom: 16px;
}

.lp-mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 1100;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--theme-shadow-md);
  padding: 10px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  display: none;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

.lp-mobile-cta form {
  margin: 0;
}

.lp-mobile-cta .btn {
  width: 100%;
  justify-content: center;
  min-height: 44px;
}

.products-page {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.best-sellers {
  display: grid;
  gap: 16px;
}

.products-grid.best-sellers-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--theme-shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--theme-shadow-md);
}

.product-card:hover img {
  transform: scale(1.03);
}

.product-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card-body h3 {
  margin: 0;
  font-size: 12.8px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-price strong {
  color: var(--price);
}

.product-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.booking-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.booking-modal.open {
  display: flex;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.booking-modal-card {
  position: relative;
  background: var(--bg-surface);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  width: min(720px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  padding: 0;
  z-index: 1;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal.open .booking-modal-card {
  transform: translateY(0) scale(1);
}

.booking-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg-surface);
  z-index: 2;
  border-radius: 24px 24px 0 0;
}

.booking-modal-header strong {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 18px;
}

.booking-modal-header .hero-text {
  font-size: 12px;
  margin: 2px 0 0;
}

.booking-modal-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface-2, #f3f4f6);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-primary);
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.booking-modal-close-btn:hover {
  background: var(--border);
}

.booking-modal-body {
  padding: 24px;
}

.booking-modal-footer {
  padding: 20px 24px;
  background: var(--bg-surface-2, #f3f4f6);
  border-top: 1px solid var(--border);
  border-radius: 0 0 24px 24px;
}

.booking-modal-footer .booking-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
}

.booking-modal-footer .booking-summary strong {
  font-size: 18px;
}

.booking-modal-footer .btn {
  width: 100%;
}

.booking-modal-footer .booking-fine-print {
  text-align: center;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 10px;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.booking-professionals {
  margin-bottom: 18px;
}

.professional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.professional-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  cursor: pointer;
}

.professional-card img,
.professional-card .professional-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface-2);
  font-weight: 600;
}

.professional-card p {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 9.6px;
}

.professional-card.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.status-pill {
  margin-left: auto;
  font-size: 9.6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--tag-bg);
  color: var(--tag-text);
}

:is(.card, .feature-card, .service-card, .product-card, .hero-card, .hero-stat, .about-hero, .about-card, .about-team-card, .social-card, .filters-bar, .filters-sheet-card, .modal-card, .booking-modal-card, .services-empty, .professional-card, .cart-sidebar, .mobile-drawer, .nav-toggle, .nav-close, .accordion-trigger, .alert, .hero-carousel) {
  border: var(--border-width) solid transparent;
  border-top: var(--border-top-width) solid var(--border-top-color);
  background:
    var(--border-fill, var(--bg-surface)) padding-box,
    var(--border-gradient) border-box;
}

:is(.card, .feature-card, .service-card, .product-card, .hero-card, .about-hero, .about-card, .about-team-card, .social-card, .services-empty, .hero-carousel) {
  --border-fill: var(--surface-card);
  background-color: var(--surface-card);
}

:is(.modal-card, .booking-modal-card, .filters-bar, .filters-sheet-card, .professional-card, .cart-sidebar, .mobile-drawer) {
  --border-fill: var(--surface-form);
  background-color: var(--surface-form);
}

:where(.card, .feature-card, .service-card, .product-card, .social-card, .hero-card, .hero-stat, .about-hero, .about-card, .about-team-card, .services-empty, .hero-carousel) {
  background-color: var(--surface-card);
}

:where(.modal-card, .booking-modal-card, .filters-bar, .filters-sheet-card, .professional-card, .cart-sidebar, .mobile-drawer, .checkout-form) {
  background-color: var(--surface-form);
}

.feature-card {
  --card-body-bg: var(--surface-card);
}

.hero-stat {
  --border-fill: linear-gradient(140deg, var(--bg-surface-2), #fff);
}

.accordion-trigger {
  --border-fill: var(--bg-surface-2);
  box-shadow: var(--theme-shadow-border);
}

.filters-sheet-card {
  box-shadow: var(--theme-shadow-border);
}

.professional-card {
  box-shadow: var(--theme-shadow-border);
}

.mobile-drawer {
  --border-fill: var(--bg-page);
  box-shadow: var(--theme-shadow-border);
}

.nav-close {
  box-shadow: var(--theme-shadow-border);
}

.alert {
  --border-fill: var(--danger-bg);
  box-shadow: var(--theme-shadow-border);
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-grid.best-sellers-grid {
    grid-template-columns: 1fr;
  }

  .carousel-content {
    padding: 20px 24px;
    max-width: 100%;
  }

  .carousel-content h2 {
    font-size: clamp(18px, 5vw, 26px);
  }

  .carousel-overlay {
    background: linear-gradient(160deg, rgba(11, 28, 45, 0.82) 0%, rgba(11, 28, 45, 0.3) 70%, transparent 100%);
  }

  .carousel-nav {
    opacity: 1;
    width: 36px;
    height: 36px;
  }

  .carousel-nav--prev { left: 10px; }
  .carousel-nav--next { right: 10px; }

  .booking-modal {
    align-items: flex-end;
  }

  .booking-modal-card {
    width: 100%;
    border-radius: 24px 24px 0 0;
    max-height: 85vh;
  }

  .booking-modal-header {
    border-radius: 24px 24px 0 0;
  }

  .lp-module {
    padding: 24px 16px;
  }

  .lp-item--service .lp-module {
    padding: 40px 20px;
  }

  .lp-item--service .lp-module--hero {
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .lp-title-banner {
    order: 1;
    padding: 40px 20px 28px;
  }

  .lp-title-banner-name {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .lp-item--service .lp-module--hero .lp-hero-content {
    order: 2;
    padding: 24px 20px 36px;
    text-align: left;
  }

  .lp-item--service .lp-module--hero .lp-hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: stretch;
  }

  .lp-item--service .lp-module--hero .lp-hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .lp-video-cta {
    padding: 24px 20px 36px;
  }

  .lp-hero-carousel {
    order: 3;
    height: 320px;
  }

  .lp-hero-slide img {
    height: 100%;
  }

  .lp-hero-nav {
    opacity: 1;
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  .lp-hero-nav--prev {
    left: 8px;
  }

  .lp-hero-nav--next {
    right: 8px;
  }

  .lp-hero-dots {
    left: 50%;
    bottom: 8px;
    gap: 2px;
    transform: translateX(-50%);
  }

  .lp-item--service :is(p, li, label, .lp-hero-headline, .lp-details-row, .lp-benefit-item p, .lp-step-item p, .lp-testimonial-item p) {
    font-size: 14px;
    line-height: 1.45;
  }

  .lp-item--service :is(small, .lp-details-note, .lp-module--quote cite, .lp-price-box-item) {
    font-size: 12px;
  }

  .lp-item--service .lp-module--cta-final {
    padding: 48px 20px;
  }

  .lp-item--service .lp-module--quote {
    padding: 48px 20px;
  }

  .lp-item--service .lp-module--video {
    padding: 0;
  }

  .lp-item--service .lp-module--video .lp-module-title {
    padding: 24px 20px 0;
  }

  .lp-item--service .lp-module--details {
    padding: 0;
  }

  .lp-item--service .lp-details-grid {
    grid-template-columns: 1fr;
  }

  .lp-item--service .lp-details-image {
    min-height: 240px;
    height: 240px;
  }

  .lp-item--service .lp-details-grid > div:last-child {
    padding: 28px 20px 36px;
  }

  .lp-item--service .lp-testimonials-grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lp-item--service .lp-testimonial-item {
    min-width: 260px;
    max-width: 280px;
  }

  .lp-item--service .lp-step-item {
    text-align: center;
    justify-items: center;
  }

  .lp-module--cta-final {
    padding: 36px 20px;
  }

  .lp-details-grid {
    grid-template-columns: 1fr;
  }

  .lp-details-image {
    height: 260px;
  }
}

@media (max-width: 860px) {
  .filters-group {
    display: none;
  }

  .filters-actions .btn-secondary {
    display: none;
  }

  .filters-toggle {
    display: inline-flex;
  }
}

@media (max-width: 680px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .carousel-controls {
    bottom: 12px;
  }

  .carousel-nav {
    width: 32px;
    height: 32px;
    opacity: 1;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 10px 12px;
  border: var(--border-width) solid var(--input-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  background: var(--input-bg);
  background-color: var(--surface-form);
  color: var(--input-text);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--input-placeholder);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--input-border-focus);
  box-shadow: 0 0 0 4px var(--focus);
  background-color: var(--surface-form-focus);
}

.form-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.form-hint.is-error {
  color: var(--danger);
}

.booking-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.check-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: var(--border-width) solid var(--input-border);
  border-radius: 999px;
  background: var(--surface-form);
  cursor: pointer;
  font-size: 0.72rem;
}

.check-pill input {
  margin: 0;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.consent-check input {
  margin-top: 3px;
}

.alert {
  background: var(--danger-bg);
  color: var(--danger);
  padding: 12px 14px;
  border-radius: 12px;
}

/* =====================================================
   Footer — Professional 4-column layout
   ===================================================== */

.footer-note {
  padding: 0;
  border-style: solid;
  border-width: var(--border-width) 0 0 0;
  border-image: var(--border-gradient) 1;
  background: var(--bg-footer);
  color: var(--text-inverse);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding: 3rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1fr 1fr;
  align-items: start;
  gap: 2.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

/* -- Brand column -- */
.footer-col--brand {
  gap: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brand-offwhite);
  text-decoration: none;
}

.footer-brand-name {
  letter-spacing: 0.05em;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(255, 246, 239, 0.12);
  padding: 4px;
}

.footer-tagline {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255, 246, 239, 0.6);
  max-width: 28ch;
}

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  background: #25d366;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, transform 0.2s;
}

.footer-whatsapp-btn:hover {
  background: #1fb855;
  transform: translateY(-1px);
}

.footer-whatsapp-btn svg {
  flex-shrink: 0;
}

/* -- Heading for columns -- */
.footer-heading {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-offwhite);
}

/* -- Navigation column -- */
.footer-col--nav {
  gap: 0;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 246, 239, 0.7);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-nav a:hover {
  color: var(--brand-offwhite);
  padding-left: 4px;
}

/* -- Contact column -- */
.footer-col--contact {
  gap: 0;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255, 246, 239, 0.7);
}

.footer-contact-item a {
  color: rgba(255, 246, 239, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--brand-offwhite);
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: rgba(255, 246, 239, 0.5);
}

/* -- CTA column -- */
.footer-col--cta {
  gap: 12px;
}

.footer-cta-text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(255, 246, 239, 0.6);
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 10px;
  background: var(--brand-offwhite);
  color: var(--bg-footer);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  transition: transform 0.2s, box-shadow 0.2s;
}

.footer-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-login-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 246, 239, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-login-link:hover {
  color: var(--brand-offwhite);
  text-decoration: underline;
}

/* -- Bottom bar -- */
.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  border-top: 1px solid rgba(255, 246, 239, 0.1);
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 246, 239, 0.4);
}

.footer-powered {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: rgba(255, 246, 239, 0.4);
  line-height: 1.4;
}

.footer-powered strong {
  color: rgba(255, 246, 239, 0.6);
}

.footer-powered-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.6;
}

/* -- Responsive -- */
@media (max-width: 991px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0 2rem;
  }

  .footer-col--brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 23, 21, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 900;
}

.nav-open .nav-overlay {
  opacity: 1;
  visibility: visible;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  background: var(--whatsapp);
  color: var(--whatsapp-contrast);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.whatsapp-float:hover {
  background: var(--whatsapp-hover);
}

.nav-open .whatsapp-float {
  opacity: 0;
  pointer-events: none;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 23, 21, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 900;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 90vw);
  height: 100vh;
  background: var(--bg-surface);
  box-shadow: var(--theme-shadow-lg);
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
}

.cart-content {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px 24px 24px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  scrollbar-width: thin;
  scrollbar-color: rgba(26, 23, 21, 0.35) transparent;
}

.cart-content::-webkit-scrollbar {
  width: 8px;
}

.cart-content::-webkit-scrollbar-track {
  background: transparent;
}

.cart-content::-webkit-scrollbar-thumb {
  background: rgba(26, 23, 21, 0.25);
  border-radius: 999px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty input {
  width: 64px;
  padding: 6px 8px;
  border: var(--border-width) solid var(--input-border);
  border-radius: var(--radius-sm);
  background: var(--input-bg);
  color: var(--input-text);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4px;
  font-weight: 600;
}

.checkout-form {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}

.checkout-form.open {
  display: block;
}

.checkout-form h4 {
  margin: 12px 0 8px;
  font-size: 12.8px;
}

.cart-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 12px;
  background: var(--bg-surface);
}

.cart-open .cart-overlay {
  opacity: 1;
  visibility: visible;
}

.cart-open .cart-sidebar {
  transform: translateX(0);
}

.cart-open .lp-mobile-cta {
  display: none !important;
}

@media (max-width: 768px) {
  :root {
    --surface-primary: #ffffff;
    --surface-secondary: #ffffff;
    --surface-glass: #ffffff;
  }

  .page {
    padding-top: 72px;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 246, 239, 0.95);
    border-style: solid;
    border-width: 0 0 var(--border-width) 0;
    border-image: var(--border-gradient) 1;
    z-index: 100;
  }

  .header-content {
    flex-direction: row;
    align-items: center;
    padding: 10px 0;
  }

  .main-nav {
    display: none;
  }

  .mobile-top-actions {
    display: inline-flex;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
  }

  .mobile-header-cart {
    display: inline-flex;
  }

  .cart-open .mobile-header-cart {
    border-color: var(--primary);
    background: rgba(215, 179, 90, 0.12);
  }

  body.nav-open .mobile-drawer {
    transform: translateX(0);
  }

  .header-cta {
    display: none;
  }

  .mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    --border-fill: var(--bg-page);
    padding: 90px 20px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-drawer a {
    font-size: 14.4px;
    width: 100%;
    min-height: 44px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
  }

  .nav-drawer-brand {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .mobile-drawer a::after {
    display: none;
  }

  .nav-drawer-header {
    display: flex;
  }

  .mobile-drawer .btn {
    width: 100%;
    justify-content: center;
  }

  .card-grid {
    grid-template-columns: 1fr;
    overflow: visible;
    padding-bottom: 0;
  }

  .hero-full {
    min-height: 70vh;
    display: flex;
    align-items: center;
  }

  .hero-content {
    padding: 96px 0 48px;
    text-align: center;
  }

  .hero-content-inner {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .btn-outline {
    display: none;
  }

  .feature-media {
    aspect-ratio: 4 / 5;
  }

  .feature-body .btn {
    width: 100%;
  }

  .services-grid,
  .products-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero-grid,
  .lp-benefits-grid,
  .lp-proof-grid,
  .lp-before-after-grid,
  .lp-steps-grid,
  .lp-text-grid,
  .lp-testimonials-grid,
  .lp-upsell-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero-gallery {
    grid-template-columns: 1fr;
  }

  .lp-hero-gallery img {
    height: 210px;
  }

  .lp-hero-actions {
    flex-direction: column;
  }

  .lp-hero-actions .btn,
  .lp-mobile-cta .btn {
    width: 100%;
  }

  .lp-mobile-cta {
    display: grid;
  }

  .lp-item {
    margin-bottom: 92px;
  }

  body[data-public-v2-route="servico"] .lp-item {
    margin-bottom: 138px;
  }

  .service-card-actions,
  .product-card-actions {
    flex-direction: column;
  }

  .service-card-actions .btn,
  .product-card-actions .btn {
    width: 100%;
  }

  .filters-bar {
    position: sticky;
    top: 72px;
    z-index: 10;
    flex-direction: column;
    align-items: stretch;
  }

  .filters-search {
    min-width: 100%;
  }

  .filters-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .filters-actions .btn {
    width: 100%;
  }

  .section {
    padding: 24px 0 32px;
  }

  .about-hero {
    padding: 28px 20px;
  }

  .about-split,
  .about-location,
  .about-info-grid,
  .about-mvv,
  .about-profile,
  .about-team-grid,
  .about-gallery {
    grid-template-columns: 1fr;
  }

  .about-gallery img {
    height: 160px;
  }

  .btn {
    min-height: 48px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

  body[data-public-v2-route="servico"] .whatsapp-float {
    display: none !important;
  }

  #professionalModal {
    align-items: flex-end;
  }

  .professional-modal-card {
    width: 100%;
    border-radius: 16px 16px 0 0;
  }

  #professionalModal.open .professional-modal-card {
    animation: professional-modal-slide 0.25s ease;
  }

  .professional-modal-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =============================================================
   PDP v2 — Página de Produto reestruturada
   ============================================================= */

/* Breadcrumb */
.pdp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted, #888);
  padding: 0 0 20px;
  flex-wrap: wrap;
}
.pdp-breadcrumb a {
  color: var(--text-muted, #888);
  text-decoration: none;
  transition: color 0.2s;
}
.pdp-breadcrumb a:hover {
  color: var(--accent, var(--brand-primary));
  text-decoration: underline;
}
.pdp-breadcrumb [aria-current="page"] {
  color: var(--text-body, #333);
  font-weight: 500;
}

/* Galeria com imagem principal + miniaturas */
.pdp-gallery-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdp-gallery-main {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-surface-2, #f5f5f3);
  aspect-ratio: 1 / 1;
}

.pdp-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}

.pdp-gallery-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.pdp-gallery-thumbs::-webkit-scrollbar {
  height: 4px;
}
.pdp-gallery-thumbs::-webkit-scrollbar-track {
  background: transparent;
}
.pdp-gallery-thumbs::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.pdp-thumb {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: var(--radius-sm, 6px);
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--bg-surface-2, #f5f5f3);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s, transform 0.2s;
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-thumb:hover {
  border-color: var(--accent, var(--brand-primary));
  transform: scale(1.04);
}

.pdp-thumb.active {
  border-color: var(--accent, var(--brand-primary));
  box-shadow: 0 0 0 2px var(--accent, var(--brand-primary));
}

/* Badge de destaque na galeria */
.pdp-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent, var(--brand-primary));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
}

/* Badge inline de promoção próximo ao preço */
.pdp-price-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-success-text, #15803d);
  background: var(--color-success-bg, #dcfce7);
  padding: 3px 8px;
  border-radius: 999px;
}

/* Trust signals inline abaixo do CTA */
.pdp-trust-signals {
  list-style: none;
  margin: 0;
  padding: 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  border-top: 1px solid var(--border);
}

.pdp-trust-signals li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted, #777);
}

.pdp-trust-signals svg {
  flex-shrink: 0;
  color: var(--accent, var(--brand-primary));
  opacity: 0.85;
}

/* Grid de diferenciais (benefícios) — cards */
.pdp-highlights-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pdp-highlight-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px 16px;
  background: var(--bg-surface, #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: box-shadow 0.25s, transform 0.2s;
}

.pdp-highlight-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.pdp-highlight-icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 2px;
}

.pdp-highlight-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-body, #222);
}

.pdp-highlight-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-soft, #555);
}

/* Reviews / Prova social melhorada */
.pdp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pdp-review-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px;
  background: var(--bg-surface, #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.pdp-review-stars {
  font-size: 14px;
  color: #f59e0b;
  letter-spacing: 1px;
}

.pdp-review-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-soft, #555);
  flex: 1;
}

.pdp-review-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body, #333);
}

/* Faixa de confiança — rodapé da PDP */
.pdp-trust-bar {
  margin-top: 48px;
  padding: 28px 24px;
  background: var(--bg-surface-2, #f9f9f7);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 12px);
}

.pdp-trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.pdp-trust-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pdp-trust-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-surface, #fff);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent, var(--brand-primary));
}

.pdp-trust-card-body strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-body, #222);
  margin-bottom: 2px;
}

.pdp-trust-card-body p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted, #777);
}

/* Responsivo — PDP */
@media (max-width: 900px) {
  .pdp-trust-bar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pdp-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pdp-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .pdp-trust-bar-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .pdp-trust-bar {
    padding: 20px 16px;
    margin-top: 32px;
  }
  .pdp-highlights-grid {
    grid-template-columns: 1fr;
  }
  .pdp-reviews-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .pdp-reviews-grid::-webkit-scrollbar {
    display: none;
  }
  .pdp-review-card {
    min-width: 260px;
  }
  .pdp-gallery-main {
    aspect-ratio: 4 / 3;
  }
  .pdp-thumb {
    width: 56px;
    height: 56px;
  }
  .pdp-trust-signals {
    gap: 10px 16px;
  }
  .pdp-breadcrumb {
    font-size: 11px;
  }
}

/* Premium PDP */
.pdp-page {
  display: grid;
  position: relative;
  isolation: isolate;
  gap: 52px;
  padding-bottom: 150px;
}

.pdp-page::before {
  content: "";
  position: absolute;
  inset: 24px 0 auto;
  height: 520px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(215, 179, 90, 0.18), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(136, 179, 158, 0.14), transparent 24%),
    radial-gradient(circle at 52% 60%, rgba(255, 255, 255, 0.72), transparent 42%);
  filter: blur(18px);
}

.pdp-page .pdp-breadcrumb {
  padding-bottom: 8px;
  color: var(--text-soft);
}

.pdp-page .pdp-breadcrumb [aria-current="page"] {
  color: var(--text-main);
  font-weight: 700;
}

.pdp-hero-section {
  position: relative;
}

.pdp-hero-section::before {
  content: "";
  position: absolute;
  inset: -28px -18px -22px;
  z-index: -1;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top left, rgba(215, 179, 90, 0.12), transparent 28%);
}

.pdp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 32px;
  align-items: start;
}

.pdp-media-column {
  min-width: 0;
}

.pdp-gallery-panel {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.pdp-gallery-panel--single {
  grid-template-columns: minmax(0, 1fr);
}

.pdp-gallery-main {
  position: relative;
  aspect-ratio: auto;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(47, 69, 51, 0.08);
  background:
    radial-gradient(circle at top left, rgba(215, 179, 90, 0.22), transparent 36%),
    linear-gradient(145deg, #f8f2ea 0%, #f2e4d0 46%, #ead7c0 100%);
  box-shadow: 0 24px 70px rgba(26, 23, 21, 0.12);
}

.pdp-gallery-main::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  pointer-events: none;
  z-index: 1;
}

.pdp-gallery-main::after {
  content: "";
  position: absolute;
  inset: auto 28px 18px;
  height: 60px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(41, 27, 14, 0.18), transparent 72%);
  filter: blur(16px);
  pointer-events: none;
}

.pdp-gallery-main img,
.pdp-gallery-video,
.pdp-gallery-video iframe {
  width: 100%;
  height: 100%;
}

.pdp-gallery-main img,
.pdp-gallery-video iframe {
  display: block;
  object-fit: cover;
  border: 0;
}

.pdp-gallery-video {
  height: 100%;
  min-height: 560px;
}

.pdp-gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: grid;
  place-items: center;
  color: var(--brand-green);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
}

.pdp-gallery-placeholder span {
  max-width: 12ch;
  text-align: center;
}

.pdp-hero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(33, 24, 15, 0.9);
  color: #fff6ef;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pdp-gallery-thumbs {
  display: grid;
  gap: 10px;
}

.pdp-thumb {
  position: relative;
  width: 82px;
  height: 82px;
  padding: 0;
  border-radius: 20px;
  border: 1px solid rgba(47, 69, 51, 0.12);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(26, 23, 21, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pdp-thumb:hover,
.pdp-thumb.active {
  transform: translateY(-2px);
  border-color: rgba(215, 179, 90, 0.65);
  box-shadow: 0 18px 34px rgba(26, 23, 21, 0.14);
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-thumb-badge {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(33, 24, 15, 0.82);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.pdp-thumb-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
}

.pdp-buybox {
  display: grid;
  gap: 22px;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(47, 69, 51, 0.1);
  background:
    radial-gradient(circle at top right, rgba(215, 179, 90, 0.24), transparent 34%),
    radial-gradient(circle at bottom left, rgba(136, 179, 158, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(255, 251, 246, 0.98));
  box-shadow: 0 34px 90px rgba(26, 23, 21, 0.15);
  position: sticky;
  top: 96px;
  overflow: hidden;
}

.pdp-buy-column {
  position: relative;
}

.pdp-buybox::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.34), transparent 38%, transparent 62%, rgba(255, 255, 255, 0.16));
  pointer-events: none;
}

.pdp-buybox > * {
  position: relative;
  z-index: 1;
}

.pdp-buybox-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(47, 69, 51, 0.08);
}

.pdp-kicker,
.pdp-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-green);
}

.pdp-rating-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.pdp-stars,
.pdp-review-stars {
  color: #bf8d27;
  letter-spacing: 0.12em;
}

.pdp-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 3.6vw, 3.9rem);
  line-height: 0.93;
  letter-spacing: -0.045em;
  color: var(--heading);
}

.pdp-subheadline {
  margin: 0;
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.72;
  color: var(--text-muted);
}

.pdp-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -2px;
}

.pdp-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(47, 69, 51, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 243, 234, 0.9));
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.pdp-price-card,
.pdp-summary {
  padding: 22px 24px;
  border-radius: 22px;
  border: 1px solid rgba(47, 69, 51, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.pdp-price-card {
  display: grid;
  gap: 10px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(215, 179, 90, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(136, 179, 158, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 18px 34px rgba(31, 45, 34, 0.08);
}

.pdp-price-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(47, 69, 51, 0.06);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-green);
}

.pdp-price-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(215, 179, 90, 0.9), rgba(79, 112, 83, 0.7), transparent 92%);
}

.pdp-price-header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
}

.pdp-price-compare {
  font-size: 15px;
  color: var(--text-soft);
  text-decoration: line-through;
}

.pdp-price-tag,
.pdp-price-discount {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pdp-price-tag {
  background: rgba(215, 179, 90, 0.16);
  color: var(--brand-green);
}

.pdp-price-discount {
  background: rgba(180, 35, 24, 0.1);
  color: var(--danger);
}

.pdp-price-main {
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--brand-green);
  line-height: 0.94;
  text-wrap: balance;
}

.pdp-price-support,
.pdp-price-savings {
  font-size: 14px;
  color: var(--text-muted);
}

.pdp-price-savings {
  color: var(--success);
  font-weight: 700;
}

.pdp-summary strong {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-green);
}

.pdp-summary p {
  margin: 0;
  font-size: 15px;
  line-height: 1.82;
  color: var(--text-main);
}

.pdp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pdp-actions form {
  margin: 0;
  flex: 1 1 260px;
}

.pdp-btn-main,
.pdp-btn-support {
  position: relative;
  width: 100%;
  min-height: 54px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: none;
}

.pdp-btn-main {
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #1f2d22 0%, #36523b 45%, #4f7053 100%);
  border-color: #1f2d22;
  color: #fff6ef;
  box-shadow: 0 18px 30px rgba(31, 45, 34, 0.18);
}

.pdp-btn-main::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.18), transparent 28%, transparent 68%, rgba(255, 255, 255, 0.08));
  transform: translateX(-16%);
  transition: transform 180ms ease;
}

.pdp-btn-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(31, 45, 34, 0.22);
}

.pdp-btn-main:hover::before {
  transform: translateX(0);
}

.pdp-btn-support {
  flex: 1 1 200px;
  border: 1px solid rgba(47, 69, 51, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 246, 239, 0.9));
  color: var(--brand-green);
}

.pdp-btn-support:hover {
  border-color: rgba(47, 69, 51, 0.3);
  background: #fff;
}

.pdp-trust-grid,
.pdp-closing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pdp-trust-card,
.pdp-closing-card {
  display: flex;
  gap: 12px;
  padding: 16px 16px 17px;
  border-radius: 20px;
  border: 1px solid rgba(47, 69, 51, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 243, 235, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.pdp-trust-card {
  position: relative;
  overflow: hidden;
}

.pdp-trust-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(215, 179, 90, 0.72), transparent 85%);
}

.pdp-closing-card {
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 246, 239, 0.14);
}

.pdp-trust-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(215, 179, 90, 0.16);
  color: var(--brand-green);
}

.pdp-trust-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pdp-trust-copy strong,
.pdp-closing-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--heading);
}

.pdp-trust-copy p,
.pdp-closing-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}

.pdp-section {
  display: grid;
  gap: 24px;
}

.pdp-section-heading {
  max-width: 760px;
  display: grid;
  gap: 8px;
}

.pdp-section-heading h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  color: var(--heading);
}

.pdp-section-heading p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
}

.pdp-highlights-section,
.pdp-reviews-section {
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(47, 69, 51, 0.08);
  background:
    radial-gradient(circle at top left, rgba(215, 179, 90, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(136, 179, 158, 0.08), transparent 24%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 58px rgba(26, 23, 21, 0.08);
}

.pdp-highlights-section {
  position: relative;
  overflow: hidden;
}

.pdp-highlights-section::before {
  content: "";
  position: absolute;
  inset: auto -30px -70px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(215, 179, 90, 0.12), transparent 70%);
  pointer-events: none;
}

.pdp-highlights-grid,
.pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.pdp-highlight-card,
.pdp-related-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 220px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(47, 69, 51, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 244, 0.92));
  box-shadow: 0 18px 40px rgba(26, 23, 21, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pdp-highlight-card:hover,
.pdp-related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 179, 90, 0.24);
  box-shadow: 0 26px 48px rgba(26, 23, 21, 0.12);
}

.pdp-highlight-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.pdp-highlight-index {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(47, 69, 51, 0.42);
}

.pdp-highlight-card h3,
.pdp-related-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  line-height: 1;
  color: var(--heading);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.pdp-highlight-card p,
.pdp-related-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--text-muted);
}

.pdp-highlight-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(215, 179, 90, 0.26), rgba(215, 179, 90, 0.16));
  color: var(--brand-green);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.pdp-highlight-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.pdp-editorial-section {
  position: relative;
  padding: 32px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(215, 179, 90, 0.2), transparent 30%),
    radial-gradient(circle at bottom right, rgba(136, 179, 158, 0.09), transparent 28%),
    linear-gradient(135deg, rgba(255, 248, 241, 0.96), rgba(246, 238, 227, 0.98));
  border: 1px solid rgba(47, 69, 51, 0.08);
  box-shadow: 0 28px 66px rgba(26, 23, 21, 0.09);
  overflow: hidden;
}

.pdp-editorial-section::before {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 70%);
  pointer-events: none;
}

.pdp-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: 28px;
  align-items: center;
}

.pdp-editorial-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.pdp-editorial-copy h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 3vw, 3.1rem);
  line-height: 0.98;
  max-width: 14ch;
}

.pdp-editorial-media {
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #e6d1b8, #f7ebdd);
  box-shadow: 0 26px 66px rgba(26, 23, 21, 0.14);
  border: 1px solid rgba(47, 69, 51, 0.08);
}

.pdp-editorial-media img,
.pdp-editorial-media iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 0;
}

.pdp-editorial-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pdp-editorial-points article {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(47, 69, 51, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(250, 244, 236, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.pdp-editorial-points span {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-green);
}

.pdp-editorial-points p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.pdp-editorial-cta {
  width: fit-content;
  min-width: 210px;
  border-radius: 999px;
}

.pdp-rich-text {
  display: grid;
  gap: 12px;
}

.pdp-rich-text p,
.pdp-rich-text ul {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-main);
}

.pdp-rich-text ul {
  padding-left: 18px;
}

.pdp-technical-section {
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(47, 69, 51, 0.08);
  background:
    radial-gradient(circle at top left, rgba(215, 179, 90, 0.09), transparent 26%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 58px rgba(26, 23, 21, 0.08);
}

.pdp-technical-section .pdp-section-heading {
  max-width: 680px;
}

.pdp-tech-desktop {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
}

.pdp-tech-nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.pdp-tech-tab {
  text-align: left;
  padding: 15px 18px;
  border-radius: 18px;
  border: 1px solid rgba(47, 69, 51, 0.08);
  background: linear-gradient(180deg, rgba(249, 245, 238, 0.92), rgba(245, 238, 229, 0.74));
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.pdp-tech-tab::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 999px;
  background: rgba(47, 69, 51, 0.18);
  vertical-align: middle;
}

.pdp-tech-tab:hover,
.pdp-tech-tab.is-active {
  color: var(--brand-green);
  border-color: rgba(215, 179, 90, 0.48);
  background: rgba(255, 255, 255, 0.98);
  transform: translateX(2px);
  box-shadow: 0 16px 28px rgba(31, 45, 34, 0.08);
}

.pdp-tech-tab:hover::before,
.pdp-tech-tab.is-active::before {
  background: linear-gradient(135deg, rgba(215, 179, 90, 0.95), rgba(79, 112, 83, 0.85));
}

.pdp-tech-panels {
  position: relative;
}

.pdp-tech-panel {
  display: none;
  padding: 2px 0;
}

.pdp-tech-panel.is-active {
  display: block;
}

.pdp-tech-panel-shell {
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(47, 69, 51, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 245, 238, 0.94));
  box-shadow: 0 22px 42px rgba(26, 23, 21, 0.06);
}

.pdp-tech-panel-head {
  display: grid;
  gap: 6px;
}

.pdp-tech-panel-head span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-green);
}

.pdp-tech-panel-head h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--heading);
}

.pdp-tech-panel .pdp-rich-text p:first-child {
  font-size: 16px;
  color: var(--heading-muted);
}

.pdp-tech-mobile {
  display: none;
}

.pdp-tech-accordion,
.pdp-faq-item {
  border-radius: 18px;
  border: 1px solid rgba(47, 69, 51, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.pdp-tech-accordion + .pdp-tech-accordion,
.pdp-faq-item + .pdp-faq-item {
  margin-top: 10px;
}

.pdp-tech-accordion summary,
.pdp-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-weight: 700;
  color: var(--heading);
  position: relative;
  padding-right: 52px;
}

.pdp-tech-accordion summary::after,
.pdp-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1;
  color: rgba(47, 69, 51, 0.42);
}

.pdp-tech-accordion summary::-webkit-details-marker,
.pdp-faq-item summary::-webkit-details-marker {
  display: none;
}

.pdp-tech-accordion[open] summary::after,
.pdp-faq-item[open] summary::after {
  content: "−";
}

.pdp-tech-accordion .pdp-rich-text,
.pdp-faq-item .pdp-rich-text {
  padding: 0 20px 18px;
}

.pdp-reviews-wrap {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.pdp-review-summary {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(47, 69, 51, 0.08);
  background: linear-gradient(180deg, #fff, #fbf5ee);
  box-shadow: 0 18px 42px rgba(26, 23, 21, 0.08);
}

.pdp-review-summary strong {
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--brand-green);
}

.pdp-review-summary span {
  font-size: 13px;
  color: var(--text-muted);
}

.pdp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.pdp-review-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(47, 69, 51, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(26, 23, 21, 0.08);
}

.pdp-review-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.pdp-review-header strong {
  display: block;
  font-size: 15px;
  color: var(--heading);
}

.pdp-review-header span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-soft);
}

.pdp-review-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.pdp-empty-state {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 26px;
  border: 1px dashed rgba(47, 69, 51, 0.14);
  background:
    radial-gradient(circle at top left, rgba(215, 179, 90, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 244, 236, 0.82));
}

.pdp-empty-state-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(47, 69, 51, 0.1);
  background: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-green);
}

.pdp-empty-state strong {
  display: block;
  margin-bottom: 8px;
  color: var(--heading);
}

.pdp-empty-state p {
  margin: 0;
  color: var(--text-muted);
}

.pdp-empty-state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.pdp-empty-state-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(47, 69, 51, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 245, 238, 0.92));
  box-shadow: 0 16px 32px rgba(26, 23, 21, 0.06);
}

.pdp-empty-state-card strong {
  margin: 0;
}

.pdp-empty-state-card p {
  font-size: 13px;
  line-height: 1.65;
}

.pdp-related-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
}

.pdp-related-body {
  display: grid;
  gap: 8px;
}

.pdp-related-type {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.pdp-related-body strong {
  font-size: 18px;
  color: var(--brand-green);
}

.pdp-related-cta {
  width: 100%;
  border-radius: 999px;
}

.pdp-closing-section {
  position: relative;
  padding: 32px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(215, 179, 90, 0.24), transparent 28%),
    radial-gradient(circle at bottom right, rgba(118, 152, 128, 0.22), transparent 24%),
    linear-gradient(135deg, #1f2d22 0%, #2f4533 44%, #5a714f 100%);
  color: #fff6ef;
  box-shadow: 0 30px 80px rgba(26, 23, 21, 0.18);
  overflow: hidden;
}

.pdp-closing-section::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
  pointer-events: none;
}

.pdp-closing-section .pdp-section-kicker,
.pdp-closing-section h2,
.pdp-closing-section strong,
.pdp-closing-section p {
  color: inherit;
}

.pdp-closing-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 24px;
  margin-bottom: 24px;
}

.pdp-closing-intro h2 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  max-width: 12ch;
}

.pdp-closing-intro p {
  margin: 0;
  opacity: 0.86;
}

.pdp-closing-cta {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 246, 239, 0.12), rgba(255, 246, 239, 0.08));
  border: 1px solid rgba(255, 246, 239, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pdp-closing-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pdp-closing-chip-row .pdp-chip {
  border-color: rgba(255, 246, 239, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 246, 239, 0.88);
}

.pdp-closing-cta .pdp-actions {
  margin-top: 6px;
}

.pdp-closing-summary {
  padding-top: 2px;
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.92;
}

.pdp-closing-section .pdp-btn-support {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 246, 239, 0.18);
  color: #fff6ef;
}

.pdp-mobile-buybar {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

.pdp-mobile-buybar-copy {
  display: grid;
  gap: 2px;
  padding: 0 8px;
}

.pdp-mobile-buybar-copy strong {
  font-size: 12px;
  line-height: 1.3;
  color: var(--heading);
}

.pdp-mobile-buybar-copy span {
  font-size: 14px;
  font-weight: 800;
  color: var(--brand-green);
}

@media (max-width: 1120px) {
  .pdp-hero-grid,
  .pdp-editorial-grid,
  .pdp-closing-intro,
  .pdp-reviews-wrap {
    grid-template-columns: 1fr;
  }

  .pdp-buybox {
    position: static;
  }

  .pdp-highlights-grid,
  .pdp-related-grid,
  .pdp-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pdp-tech-desktop {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  .pdp-gallery-panel {
    grid-template-columns: 1fr;
  }

  .pdp-gallery-thumbs {
    order: 2;
    grid-template-columns: repeat(auto-fit, minmax(72px, 72px));
    grid-auto-flow: column;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .pdp-gallery-main,
  .pdp-gallery-video,
  .pdp-gallery-placeholder {
    min-height: 430px;
  }

  .pdp-trust-grid,
  .pdp-closing-grid,
  .pdp-editorial-points,
  .pdp-empty-state-grid {
    grid-template-columns: 1fr;
  }

  .pdp-tech-desktop {
    display: none;
  }

  .pdp-tech-mobile {
    display: block;
  }
}

@media (max-width: 680px) {
  .pdp-page {
    gap: 26px;
    padding-bottom: 190px;
  }

  .pdp-hero-grid {
    gap: 20px;
  }

  .pdp-buybox,
  .pdp-highlights-section,
  .pdp-reviews-section,
  .pdp-editorial-section,
  .pdp-technical-section,
  .pdp-closing-section {
    padding: 20px;
    border-radius: 24px;
  }

  .pdp-buybox-meta {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .pdp-tech-panel-shell {
    padding: 20px;
    border-radius: 22px;
  }

  .pdp-title,
  .pdp-section-heading h2,
  .pdp-editorial-copy h2,
  .pdp-closing-intro h2 {
    line-height: 1.02;
  }

  .pdp-gallery-main,
  .pdp-gallery-video,
  .pdp-gallery-placeholder {
    min-height: 360px;
    border-radius: 22px;
  }

  .pdp-thumb {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }

  .pdp-highlights-grid,
  .pdp-related-grid,
  .pdp-reviews-grid {
    grid-template-columns: 1fr;
  }

  .pdp-highlight-card,
  .pdp-related-card {
    min-height: 0;
  }

  .pdp-review-summary {
    padding: 20px;
  }

  .pdp-review-summary strong {
    font-size: 42px;
  }

  .pdp-mobile-buybar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pdp-mobile-buybar form {
    width: 100%;
  }

  .pdp-mobile-buybar .pdp-btn-main,
  .pdp-mobile-buybar .pdp-btn-support {
    min-height: 48px;
  }
}
