@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&family=Cinzel:wght@400;600;700&display=swap');

/* 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: "Source Sans 3", sans-serif;
  --font-heading: "Playfair Display", 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: 12.8px;
  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: 38px;
  height: 38px;
  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: 40px;
  height: 40px;
  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: 40px;
  height: 40px;
  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: 10px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-contrast);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--theme-shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

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

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

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

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

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

.btn-outline:hover {
  background: rgba(215, 179, 90, 0.10);
}

.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 {
  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;
}

.carousel-slide {
  position: relative;
  display: none;
  min-height: 280px;
  aspect-ratio: 2.63 / 1;
  background: linear-gradient(135deg, var(--bg-surface-2), var(--surface-card));
}

.carousel-slide.active {
  display: block;
}

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

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 28, 45, 0.72), rgba(11, 28, 45, 0));
}

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

.carousel-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(19.2px, 2.4vw, 28.8px);
  margin: 0;
}

.carousel-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.carousel-controls {
  position: absolute;
  inset: auto 0 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 20px;
  z-index: 2;
}

.carousel-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--brand-green);
  font-size: 17.6px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

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

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.carousel-dots button.active {
  background: var(--brand-gold);
  transform: scale(1.2);
}

.hero-carousel.single .carousel-controls {
  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(27.2px, 3.2vw, 43.2px);
  margin: 12px 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;
}

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

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

.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", "Source Sans 3", sans-serif;
  --font-heading: "Cormorant Garamond", "Playfair Display", 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: "Source Sans 3", sans-serif;
  --font-heading: "Playfair Display", 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", "Source Sans 3", sans-serif;
  --font-heading: "Cinzel", "Playfair Display", 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: "Source Sans 3", sans-serif;
  --font-heading: "Cinzel", "Playfair Display", 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 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;
}

.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: 22.4px;
  margin-bottom: 16px;
  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-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;
}

.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;
  gap: 24px;
}

.lp-module {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--theme-shadow-sm);
  padding: 20px;
}

.lp-module-title {
  margin: 0 0 14px;
  font-size: 20px;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 20px;
  align-items: start;
}

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

.lp-hero-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
  transition: transform 0.22s ease;
}

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

.lp-hero-content {
  display: grid;
  gap: 10px;
}

.lp-eyebrow {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.lp-price-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

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

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

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

.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);
}

.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: 12px;
}

.lp-step-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: grid;
  gap: 6px;
}

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

.lp-step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand-green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.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);
}

.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-sm);
  padding: 14px;
  display: grid;
  gap: 8px;
}

.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;
}

.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: linear-gradient(140deg, rgba(23, 143, 123, 0.12), rgba(212, 175, 55, 0.18));
  border: 1px solid rgba(23, 143, 123, 0.22);
}

.lp-module--cta-final h2 {
  margin-top: 0;
}

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

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

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

.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.5);
}

.booking-modal-card {
  position: relative;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--theme-shadow-lg);
  width: min(720px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  padding: 20px;
  z-index: 1;
}

.booking-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.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;
    max-width: 100%;
  }

  .carousel-overlay {
    background: linear-gradient(180deg, rgba(11, 28, 45, 0.75), rgba(11, 28, 45, 0.2));
  }

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

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

@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 {
    inset: auto 0 12px 0;
  }

  .carousel-nav {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

.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-note {
  padding: 24px 0 40px;
  color: var(--text-muted);
  text-align: center;
  border-style: solid;
  border-width: var(--border-width) 0 0 0;
  border-image: var(--border-gradient) 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

.footer-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: contain;
  background: var(--surface-card);
  padding: 4px;
}

.footer-text {
  max-width: 520px;
}

.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%;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }

  .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;
  }

  .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;
  }

  #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;
  }
}
