

:root {
  --bg: #0e2219;
  --bg-dark: #0a1a13;
  --panel: #142e22;
  --panel-2: #1b3a2c;
  --paper: #f5f2eb;
  --paper-2: #fcfaf6;
  --paper-border: #e3ded2;
  --ink: #f7f4ee;
  --text-dark: #19241d;
  --text-muted: #6f7871;
  --muted: #a4b3a8;
  --bronze: #b88648;
  --bronze-light: #c59b5f;
  --bronze-dark: #9f7236;
  --gold: #b88648;
  --gold-light: #c59b5f;
  --gold-dark: #9f7236;
  --gold-gradient: linear-gradient(135deg, #c59b5f 0%, #a87637 100%);
  --line: rgba(184, 134, 72, 0.28);
  --line-dark: rgba(255, 255, 255, 0.08);
  --radius: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.12);
  --shadow-btn: 0 4px 16px rgba(184, 134, 72, 0.35);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-brand: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(var(--container-width, 1180px), calc(100% - 40px));
  margin-inline: auto;
}

/* Demo Top Announcement Banner */
.demo-banner {
  background: #191613;
  border-bottom: 1px solid rgba(181, 138, 82, 0.25);
  padding: 7px 0;
  font-size: 11px;
}

.demo-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.demo-banner-tag {
  background: var(--bronze);
  color: #17130f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: 999px;
  text-transform: uppercase;
}

.demo-banner-text {
  color: #cfc5b8;
  font-weight: 500;
}

.demo-banner-badge {
  color: #cfc5b8;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.demo-banner-link {
  color: var(--bronze-light);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.demo-banner-link:hover {
  color: #fff;
}

/* Shop Upselling Notice */
.shop-notice {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(181, 138, 82, 0.35);
  border-left: 4px solid var(--bronze);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.shop-notice-icon {
  font-size: 26px;
  flex-shrink: 0;
}

.shop-notice-text {
  font-size: 13px;
  color: #4a4237;
  line-height: 1.5;
}

.shop-notice-text strong {
  color: #1f1b16;
  display: inline-block;
  margin-right: 4px;
}

.shop-notice-text a {
  color: var(--bronze-dark);
  font-weight: 700;
  text-decoration: underline;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  left: 20px;
  max-width: 440px;
  z-index: 999;
  background: rgba(22, 19, 16, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(181, 138, 82, 0.38);
  border-radius: 20px;
  padding: 18px 20px;
  color: #f1ede6;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  font-size: 12px;
  line-height: 1.55;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.cookie-banner-text {
  color: #beb4a7;
  margin-bottom: 14px;
}

.cookie-banner-text a {
  color: var(--bronze-light);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
}

.cookie-banner-actions .btn {
  min-height: 36px;
  padding: 0 14px;
  font-size: 11px;
  border-radius: 10px;
}

@media (max-width: 980px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    padding: 14px 16px;
  }
}

/* =========================================================
   AUTH MODAL POPUP (AREA RISERVATA) - DESKTOP & MOBILE
   ========================================================= */
.auth-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(12, 10, 9, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.auth-modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.auth-modal-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  background: #191613;
  border: 1px solid rgba(181, 138, 82, 0.42);
  border-radius: 24px;
  padding: clamp(24px, 5vw, 36px);
  color: #f1ede6;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: scale(0.92) translateY(18px);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-modal-backdrop.show .auth-modal-card {
  transform: scale(1) translateY(0);
}

.auth-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #c8beb2;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.auth-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: scale(1.06);
}

.auth-modal-close:active {
  transform: scale(0.94);
}

.auth-modal-brand {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.auth-modal-brand strong {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
}

.auth-modal-brand small {
  color: var(--bronze-light);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.auth-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(181, 138, 82, 0.18);
  color: #ebd0aa;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
  border: 1px solid rgba(181, 138, 82, 0.35);
}

.auth-modal-title {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-size: clamp(24px, 4vw, 28px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
}

.auth-modal-subtitle {
  margin: 0 0 16px;
  color: #a89e91;
  font-size: 13px;
  line-height: 1.5;
}

.auth-demo-creds {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(181, 138, 82, 0.45);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 18px;
}

.auth-demo-creds-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #e7c89d;
  margin-bottom: 8px;
}

.auth-demo-creds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.auth-cred-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.auth-cred-label {
  font-size: 10px;
  color: #8c8276;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.auth-cred-val {
  background: rgba(0, 0, 0, 0.4);
  color: var(--bronze-light);
  padding: 4px 8px;
  border-radius: 8px;
  font-family: monospace;
  font-size: 12px;
  border: 1px solid rgba(181, 138, 82, 0.2);
}

.auth-modal-form {
  display: grid;
  gap: 12px;
}

.auth-form-group {
  display: grid;
  gap: 5px;
}

.auth-form-group label {
  font-size: 11px;
  font-weight: 700;
  color: #cfc5b8;
  letter-spacing: 0.02em;
}

.auth-form-group input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(181, 138, 82, 0.35);
  border-radius: 12px;
  padding: 0 14px;
  background: #231f1a;
  color: #fff;
  font: inherit;
  font-size: 13px;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.auth-form-group input:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(181, 138, 82, 0.2);
}

.auth-submit-btn {
  width: 100%;
  min-height: 46px;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(181, 138, 82, 0.35);
}

.auth-modal-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  color: #7b7267;
  flex-wrap: wrap;
}

.auth-security-info {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot-sep {
  opacity: 0.5;
}

.auth-privacy-link {
  color: var(--bronze-light);
  text-decoration: underline;
  font-weight: 600;
}

/* Mobile Modal Adjustments */
@media (max-width: 600px) {
  .auth-modal-backdrop {
    align-items: flex-end;
    padding: 0;
  }

  .auth-modal-card {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    max-height: 88vh;
    padding: 24px 18px calc(24px + env(safe-area-inset-bottom, 0px));
    transform: translateY(100%);
  }

  .auth-modal-backdrop.show .auth-modal-card {
    transform: translateY(0);
  }

  .auth-demo-creds-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* Header & Desktop Nav */
.top {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(14, 34, 25, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 134, 72, 0.2);
}

.demo-banner {
  background: #091711;
  border-bottom: 1px solid rgba(184, 134, 72, 0.2);
  padding: 7px 0;
  font-size: 11px;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1;
  text-decoration: none;
  gap: 4px;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  line-height: 1;
}

.brand-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.brand strong {
  font-family: var(--font-brand);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
  text-transform: uppercase;
}

.brand small {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.28em;
  color: var(--gold-light);
  text-transform: uppercase;
  font-weight: 600;
}

.navlinks {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.navlinks a {
  position: relative;
  font-size: 13px;
  color: #d1dbd4;
  padding: 24px 0;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.navlinks a:hover::after,
.navlinks a.active::after {
  width: 100%;
}

.navlinks a.active {
  color: #fff;
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 14px;
}

/* Header Admin Button (App style) */
.header-admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(184, 134, 72, 0.15);
  border: 1px solid rgba(184, 134, 72, 0.35);
  color: #f7ede1;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.header-admin-btn:hover {
  background: rgba(184, 134, 72, 0.25);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-1px);
}

.header-admin-btn .dot-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5bd278;
  box-shadow: 0 0 8px rgba(91, 210, 120, 0.8);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.nav-lookup-btn {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d8e2dc;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-lookup-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Buttons (App style) */
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn:active {
  transform: scale(0.97);
}

.btn.primary,
.btn-nav-cta {
  background: var(--gold-gradient) !important;
  border-color: var(--gold) !important;
  color: #ffffff !important;
  box-shadow: var(--shadow-btn);
  letter-spacing: 0.06em;
}

.btn.primary:hover,
.btn.primary:focus-visible,
.btn-nav-cta:hover {
  background: linear-gradient(135deg, #cca467 0%, #b38240 100%) !important;
  border-color: #cca467 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184, 134, 72, 0.45);
}

.btn.secondary {
  border-color: rgba(184, 134, 72, 0.4) !important;
  color: #f7f3ed !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  border-color: var(--gold) !important;
  color: #fff !important;
  background: rgba(184, 134, 72, 0.16) !important;
}

.btn-sm {
  min-height: 38px;
  padding: 0 15px;
  font-size: 12px;
  border-radius: 12px;
}

.hamb {
  display: none !important;
}

/* Hero Section */
.hero,
.inner-hero {
  width: 100%;
  max-width: 1680px;
  margin-inline: auto;
  min-height: calc(100vh - 180px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: stretch;
  overflow: hidden;
  background: #11110f;
  border-bottom: 1px solid var(--line-dark);
  position: relative;
}

.hero-copy,
.inner-hero__copy {
  padding: clamp(40px, 6vh, 80px) clamp(24px, 4vw, 70px);
  padding-left: max(24px, calc((100vw - 1440px)/2 + 24px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  margin-bottom: 4px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(181, 138, 82, 0.3);
  border-radius: 999px;
  padding: 6px 13px;
  color: #e8ded2;
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero-pill:hover {
  transform: translateY(-2px);
  background: rgba(181, 138, 82, 0.15);
  border-color: var(--bronze);
  color: #fff;
}

.eyebrow {
  color: var(--bronze);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.inner-hero h1 {
  margin: 10px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5.2vw, 74px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.hero h1 em,
.inner-hero h1 em {
  color: var(--bronze);
  font-style: italic;
}

.hero p,
.inner-hero p {
  max-width: 560px;
  color: #c3baaf;
  font-size: 16px;
  line-height: 1.65;
}

.hero-media,
.inner-hero__media {
  min-height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transition: transform 0.15s cubic-bezier(0.2, 0, 0, 1);
}

.hero-media::after,
.inner-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 15, 14, 0.5) 0%, rgba(15, 15, 14, 0) 30%);
}

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

/* Feature Strip */
.feature-strip {
  background: var(--paper);
  color: var(--text-dark);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

.feature {
  padding: 0 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.feature:first-child {
  padding-left: 0;
}

.feature:last-child {
  border-right: 0;
}

.feature b {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
}

.feature span {
  display: block;
  margin-top: 4px;
  color: #6f675c;
  font-size: 12px;
  line-height: 1.45;
}

/* Content Pages */
.page-content {
  background: var(--paper-2);
  color: var(--text-dark);
  padding: clamp(48px, 6vw, 80px) 0 clamp(80px, 8vw, 110px);
}

.page-intro {
  max-width: 700px;
  margin-bottom: 28px;
}

.page-intro h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.05;
  margin: 6px 0 10px;
}

.page-intro h2 em {
  color: var(--bronze-dark);
  font-style: italic;
}

.muted {
  color: #6f675d;
  line-height: 1.6;
}

/* Cards & Products: 5 Schede Compatte per Riga su Desktop */
.cards,
.products {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

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

.card,
.product {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover,
.product:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--bronze);
}

.card-media,
.product-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #1b1815;
}

.card-media img,
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.card-badge,
.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(23, 20, 17, 0.85);
  backdrop-filter: blur(6px);
  color: #e5cbab;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid rgba(181, 138, 82, 0.3);
}

.card-body,
.product-body {
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-head,
.product-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 2px;
}

.card-head h3,
.product-head h3 {
  font-size: 14px;
  margin: 0;
  line-height: 1.25;
  color: var(--text-dark);
}

.card-head .price,
.product-head .price {
  font-size: 15px;
  font-weight: 800;
  color: var(--bronze-dark);
  white-space: nowrap;
}

.card-desc,
.product-desc {
  font-size: 11px;
  line-height: 1.35;
  color: #787065;
  margin: 6px 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 30px;
}

.card-footer,
.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.card-footer .duration,
.product-footer .stock-tag {
  font-size: 10px;
  color: #8c8376;
  font-weight: 600;
}

.card-footer .btn-sm,
.product-footer .btn-sm {
  padding: 5px 10px;
  font-size: 11px;
  border-radius: 8px;
  min-height: auto;
}

@media (max-width: 1200px) {
  .cards,
  .products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }
}

.cards-carousel-container,
.products-carousel-container {
  position: relative;
  width: 100%;
}

.cards-carousel-container .carousel-step-arrow,
.products-carousel-container .carousel-step-arrow {
  display: none;
}

@media (max-width: 768px) {
  .cards-carousel-container,
  .products-carousel-container {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    gap: 4px !important;
    box-sizing: border-box !important;
  }

  .cards-carousel-container .carousel-step-arrow,
  .products-carousel-container .carousel-step-arrow {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    border-radius: 50% !important;
    background: #1c1814 !important;
    color: #ffeb88 !important;
    border: 1.5px solid rgba(181, 138, 82, 0.45) !important;
    font-size: 19px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    z-index: 5 !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35) !important;
    padding: 0 !important;
    transition: all 0.15s ease !important;
    user-select: none !important;
  }

  .cards-carousel-container .carousel-step-arrow:active,
  .products-carousel-container .carousel-step-arrow:active {
    transform: scale(0.9) !important;
    background: rgba(181, 138, 82, 0.4) !important;
  }

  .cards,
  .products {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 8px !important;
    padding: 4px 2px 12px !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    width: 100% !important;
    scroll-behavior: smooth !important;
  }

  .cards::-webkit-scrollbar,
  .products::-webkit-scrollbar {
    display: none !important;
  }

  /* Exactly 2 cards per view */
  .card,
  .product {
    flex: 0 0 calc((100% - 8px) / 2) !important;
    min-width: calc((100% - 8px) / 2) !important;
    max-width: calc((100% - 8px) / 2) !important;
    scroll-snap-align: start !important;
    border-radius: 14px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
  }

  .card-media,
  .product-media {
    aspect-ratio: 16 / 11 !important;
    border-radius: 13px 13px 0 0 !important;
  }

  .card-badge,
  .product-badge {
    font-size: 7.5px !important;
    font-weight: 800 !important;
    padding: 2px 6px !important;
    top: 6px !important;
    right: 6px !important;
    border-radius: 6px !important;
  }

  .card-body,
  .product-body {
    padding: 8px 6px 10px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
  }

  .card-head,
  .product-head {
    margin-bottom: 4px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
  }

  .card-head h3,
  .product-head h3 {
    font-size: 11.5px !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    font-weight: 800 !important;
    color: #1a1612 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: 100% !important;
  }

  .price {
    font-size: 13px !important;
    font-weight: 900 !important;
    color: var(--bronze-dark) !important;
  }

  .card-desc,
  .product-desc {
    font-size: 9px !important;
    line-height: 1.25 !important;
    color: #797166 !important;
    margin: 0 0 6px 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .card-footer,
  .product-footer {
    margin-top: auto !important;
    padding-top: 6px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
  }

  .duration,
  .stock-tag {
    font-size: 8.5px !important;
    color: #8c8275 !important;
    text-align: center !important;
  }

  .card-footer .btn,
  .product-footer .btn {
    min-height: 28px !important;
    font-size: 10px !important;
    padding: 0 4px !important;
    width: 100% !important;
    justify-content: center !important;
  }
}

.card,
.product,
.team-card,
.studio-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.product:hover,
.team-card:hover,
.studio-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card-media,
.product-media,
.team-media,
.studio-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1b1815;
}

.card-media img,
.product-media img,
.team-media img,
.studio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.card:hover .card-media img,
.product:hover .product-media img,
.team-card:hover .team-media img,
.studio-card:hover .studio-media img {
  transform: scale(1.03);
}

.card-badge,
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(23, 20, 17, 0.85);
  backdrop-filter: blur(6px);
  color: #e5cbab;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(181, 138, 82, 0.3);
}

.card-body,
.product-body,
.team-body,
.studio-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-head,
.product-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}

.card h3,
.product h3,
.team-card h3,
.studio-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  color: #211d18;
}

.price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  color: var(--bronze-dark);
  font-weight: 400;
  white-space: nowrap;
}

.card-desc,
.product-desc,
.team-specialty {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.card-footer,
.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.duration,
.stock-tag {
  font-size: 11px;
  color: #82786a;
  font-weight: 600;
}

/* Team Card Specifics */
.team-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.team-badge.active {
  background: rgba(43, 64, 30, 0.85);
  color: #c9e8be;
  border: 1px solid rgba(132, 185, 102, 0.35);
}

.team-badge.inactive {
  background: rgba(58, 40, 36, 0.85);
  color: #e5b3aa;
  border: 1px solid rgba(200, 100, 90, 0.3);
}

.meta {
  font-size: 10px;
  color: var(--bronze-dark);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.team-actions {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.btn-disabled {
  display: inline-block;
  font-size: 11px;
  color: #9c8e7e;
  font-weight: 600;
  padding: 8px 0;
}

.team-card.is-unavailable {
  opacity: 0.85;
}

/* Filter Bar */
.filterbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0 28px;
}

.filter {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #49443d;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.filter.active,
.filter:hover {
  background: #211d18;
  color: #fff;
  border-color: #211d18;
}

@media (max-width: 768px) {
  .filterbar {
    display: none !important;
  }
}

/* Booking & Forms */
.booking,
.contact-first-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  gap: 48px;
}

.booking-panel,
.contact-form-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: clamp(22px, 3.5vw, 32px);
  box-shadow: var(--shadow-sm);
}

label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #4e473e;
  margin-top: 14px;
}

input,
select,
textarea {
  min-height: 46px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0 14px;
  background: #fcfbfa;
  color: #24211d;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  appearance: auto;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--bronze);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(181, 138, 82, 0.2);
}

textarea {
  padding: 12px 14px;
  min-height: 120px;
  resize: vertical;
}

.success {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #e5edd8;
  color: #385226;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(78, 128, 50, 0.25);
}

.success.show {
  display: block;
}

/* Contact First Screen */
.contact-first {
  background: var(--paper-2);
  color: var(--text-dark);
  padding: clamp(50px, 6vw, 84px) 0;
}

.contact-intro h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  margin: 8px 0 16px;
}

.contact-intro h1 em {
  color: var(--bronze-dark);
  font-style: italic;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-detail {
  padding: 12px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.contact-detail span {
  display: block;
  color: var(--bronze-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  color: #24201c;
}

/* Promo Box */
.promo-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  background: #181512;
  color: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.promo-media {
  position: relative;
  min-height: 280px;
}

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

.promo-copy {
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 400;
  margin: 6px 0 10px;
}

.promo-price {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin: 16px 0 20px;
}

.promo-price s {
  color: #948b80;
  font-size: 18px;
}

.promo-price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  color: var(--bronze-light);
  font-weight: 400;
}

/* Footer */
.footer {
  background: #0b0b0a;
  border-top: 1px solid var(--line-dark);
  padding: 50px 0 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer h4 {
  color: var(--bronze);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer a {
  display: block;
  color: #b0a89d;
  font-size: 13px;
  margin: 6px 0;
  transition: color 0.15s ease;
}

.footer a:hover {
  color: #fff;
}

/* Mobile Bottom Navigation Bar (App Tab Bar) */
.mobilebar {
  display: none;
}

/* Site Toast Notification */
.site-toast {
  position: fixed;
  right: 18px;
  top: 86px;
  z-index: 9999;
  background: #1a1714;
  color: #f5eedf;
  border: 1px solid rgba(181, 138, 82, 0.5);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.site-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons color contrast fix on light paper backgrounds */
.page-content .btn.secondary,
.contact-first .btn.secondary,
.booking-panel .btn.secondary {
  color: #302a24 !important;
  border-color: rgba(143, 101, 52, 0.34) !important;
  background: rgba(181, 138, 82, 0.05) !important;
}

.page-content .btn.secondary:hover,
.contact-first .btn.secondary:hover,
.booking-panel .btn.secondary:hover {
  color: #17130f !important;
  background: rgba(181, 138, 82, 0.16) !important;
  border-color: var(--bronze) !important;
}

/* Responsive Breakpoints */
@media (max-width: 980px) {
  .navlinks {
    display: none;
  }
  
  .btn-nav-cta {
    display: none !important;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero,
  .inner-hero {
    grid-template-columns: 1fr;
  }
  .hero-media,
  .inner-hero__media {
    min-height: 380px;
  }
  .hero-copy,
  .inner-hero__copy {
    padding: 40px 20px 30px;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .feature {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px 0;
  }
  .cards,
  .products,
  .team-grid,
  .studio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .booking,
  .contact-first-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  
  /* App-Style Bottom Tab Bar */
  .mobilebar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    z-index: 95;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(18, 16, 14, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(181, 138, 82, 0.4);
    border-radius: 26px;
    padding: 6px 4px 6px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.75);
    align-items: center;
  }

  .mobilebar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none;
    color: #9f9485;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 6px 2px 5px;
    border-radius: 16px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
  }

  .mobilebar a svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: transform 0.2s ease;
  }

  .mobilebar a:active {
    transform: scale(0.92);
  }

  .mobilebar a.active {
    color: #fff;
    font-weight: 700;
  }

  .mobilebar a.active svg {
    color: var(--bronze-light);
    transform: scale(1.1);
  }

  /* Center Primary Prenota FAB button in app bar */
  .mobilebar a:nth-child(3) {
    background: linear-gradient(135deg, #c79a60 0%, #a8783d 100%);
    color: #14100c !important;
    font-weight: 800;
    border-radius: 18px;
    padding: 7px 4px 6px;
    margin-top: -12px;
    box-shadow: 0 8px 22px rgba(181, 138, 82, 0.55);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
  }

  .mobilebar a:nth-child(3) svg {
    color: #14100c !important;
  }

  .mobilebar a:nth-child(3).active {
    background: #deb67f;
    box-shadow: 0 10px 26px rgba(181, 138, 82, 0.7);
    transform: scale(1.04);
  }

  body {
    padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px));
  }

  .site-toast {
    top: 14px;
    right: 14px;
    left: 14px;
    text-align: center;
  }
}

.booking-page-header {
  background: #11110f;
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(20px, 3vh, 32px) 0;
  color: #fff;
}

.booking-content-wrap {
  padding: clamp(20px, 3vw, 40px) 0 clamp(60px, 6vw, 90px);
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }
  .demo-banner-text {
    display: none;
  }
  .hero h1,
  .inner-hero h1 {
    font-size: 38px;
  }
  .hero-media,
  .inner-hero__media {
    min-height: 270px;
  }
  .features-grid,
  .cards,
  .products,
  .team-grid,
  .studio-grid {
    grid-template-columns: 1fr;
  }
  .promo-box {
    grid-template-columns: 1fr;
  }
  .promo-media {
    min-height: 220px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   DIGITAL BOOKING PASS / TICKET
   ========================================================= */
.booking-ticket {
  display: none;
  background: #191613;
  border: 1px solid rgba(181, 138, 82, 0.45);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  color: #f1ede6;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  margin-top: 24px;
  animation: slideTicketUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.booking-ticket.active {
  display: block;
}

@keyframes slideTicketUp {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.ticket-header {
  background: linear-gradient(135deg, #24201c 0%, #151311 100%);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed rgba(181, 138, 82, 0.35);
  position: relative;
}

.ticket-header::before,
.ticket-header::after {
  content: "";
  position: absolute;
  bottom: -11px;
  width: 22px;
  height: 22px;
  background: #f7f3ee;
  border-radius: 50%;
}

.ticket-header::before { left: -11px; }
.ticket-header::after { right: -11px; }

.ticket-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e4eadc;
  color: #3f5e27;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 11px;
  border-radius: 999px;
}

.ticket-body {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ticket-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ticket-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8c8276;
  font-weight: 700;
}

.ticket-value {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}

.ticket-value strong {
  color: var(--bronze-light);
  font-size: 17px;
}

.ticket-actions {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.ticket-actions .btn {
  width: 100%;
  justify-content: center;
}

.btn-whatsapp {
  background: #25D366 !important;
  color: #fff !important;
  border-color: #25D366 !important;
}

.btn-whatsapp:hover {
  background: #1eb954 !important;
  border-color: #1eb954 !important;
}

/* Upselling Card in Booking */
.upsell-card {
  background: rgba(181, 138, 82, 0.08);
  border: 1px solid rgba(181, 138, 82, 0.32);
  border-radius: 16px;
  padding: 14px 16px;
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.upsell-card:hover {
  background: rgba(181, 138, 82, 0.14);
  border-color: var(--bronze);
}

.upsell-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--bronze);
  cursor: pointer;
}

.upsell-content {
  flex: 1;
}

.upsell-content strong {
  display: block;
  font-size: 13px;
  color: #1f1b16;
}

.upsell-content small {
  display: block;
  color: #6a6155;
  font-size: 11px;
}

.upsell-price {
  font-weight: 800;
  color: var(--bronze-dark);
  font-size: 13px;
  white-space: nowrap;
}

/* WhatsApp Floating Button on Public Site */
.whatsapp-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-floating:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-floating:active {
  transform: scale(0.95);
}

.whatsapp-floating svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .whatsapp-floating {
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    width: 48px;
    height: 48px;
  }
  .whatsapp-floating svg {
    width: 25px;
    height: 25px;
  }
}

/* Admin WhatsApp Action Button */
.sm.whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.sm.whatsapp:hover {
  background: #1eb954;
  border-color: #1eb954;
}

/* Admin Search & Filters */
.admin-search-wrap {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.admin-search-input {
  flex: 1;
  min-width: 220px;
  min-height: 40px;
  border: 1px solid var(--a-line);
  border-radius: 12px;
  padding: 0 12px;
  background: #fff;
  font: inherit;
  font-size: 13px;
}

.admin-filter-select {
  min-height: 40px;
  border: 1px solid var(--a-line);
  border-radius: 12px;
  padding: 0 12px;
  background: #fff;
  font: inherit;
  font-size: 13px;
}

.visit-tag {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  background: #eee6dc;
  color: #725633;
}

/* =========================================================
   VISUAL INTERACTIVE BOOKING APP (DESKTOP & MOBILE)
   ========================================================= */
.booking-visual-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: start;
}

@media (max-width: 980px) {
  .booking-visual-layout {
    grid-template-columns: 1fr;
  }
}

.booking-step-box {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: clamp(16px, 2.5vw, 24px);
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.step-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.step-number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bronze);
  color: #17130e;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.step-title h3 {
  font-size: clamp(16px, 2.2vw, 18px);
  font-family: Georgia, serif;
  margin: 0 0 2px;
  color: #1c1814;
  line-height: 1.3;
}

.step-title small {
  display: block;
  color: #797166;
  font-size: 12px;
  line-height: 1.4;
}

/* Service Pick Grid */
.service-pick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}

.service-pick-grid.compact {
  grid-template-columns: 1fr;
  gap: 8px;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 4px;
}

.service-pick-grid.compact .service-card-choice {
  padding: 10px 12px;
}

.service-card-choice {
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  background: #fdfcfb;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  box-sizing: border-box;
}

.service-card-choice:hover {
  border-color: var(--bronze);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

.service-card-choice.selected {
  border-color: var(--bronze);
  background: rgba(181, 138, 82, 0.08);
  box-shadow: 0 0 0 2px var(--bronze);
}

.service-card-choice strong {
  display: block;
  font-size: 14px;
  color: #1f1b16;
}

.service-card-choice small {
  display: block;
  color: #797166;
  font-size: 11px;
  margin-top: 2px;
}

.service-card-choice .choice-price {
  font-weight: 800;
  font-size: 15px;
  color: var(--bronze-dark);
}

/* Carousel Step Container with Navigation Arrows */
.carousel-step-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.carousel-step-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  color: #17130e;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.15s ease;
  z-index: 2;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.carousel-step-arrow:hover {
  background: var(--bronze);
  color: #fff;
  border-color: var(--bronze);
}

.carousel-step-arrow.prev {
  margin-right: 6px;
}

.carousel-step-arrow.next {
  margin-left: 6px;
}

/* Barber Track: 3 cards per screen on mobile */
.barber-pick-grid.carousel-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  padding: 4px 2px 8px;
  box-sizing: border-box;
}

.barber-pick-grid.carousel-track::-webkit-scrollbar {
  display: none;
}

.barber-choice-chip {
  flex: 0 0 calc((100% - 16px) / 3);
  min-width: calc((100% - 16px) / 3);
  max-width: calc((100% - 16px) / 3);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 8px 3px;
  cursor: pointer;
  background: #fdfcfb;
  transition: all 0.15s ease;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.barber-choice-chip:hover {
  border-color: var(--bronze);
  background: #fff;
}

.barber-choice-chip.selected {
  border-color: var(--bronze);
  background: rgba(181, 138, 82, 0.08);
  box-shadow: 0 0 0 2px var(--bronze);
}

.barber-choice-chip .barber-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin: 0 auto 4px;
  background: #eee6db;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.barber-choice-chip strong {
  display: block;
  font-size: 11px;
  color: #1f1b16;
  font-weight: 700;
  line-height: 1.2;
  white-space: normal;
  word-break: break-word;
}

.barber-choice-chip small {
  display: block;
  font-size: 9px;
  color: #847a6d;
  margin-top: 1px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.barber-choice-chip .rest-tag {
  display: block;
  font-size: 8px;
  color: #8c6843;
  margin-top: 2px;
  font-weight: 700;
  line-height: 1;
}

/* Date Track: 4 days per screen on mobile */
.date-strip-wrapper.carousel-track {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  padding: 4px 2px 8px;
  box-sizing: border-box;
}

.date-strip-wrapper.carousel-track::-webkit-scrollbar {
  display: none;
}

.date-card-choice {
  flex: 0 0 calc((100% - 18px) / 4);
  min-width: calc((100% - 18px) / 4);
  max-width: calc((100% - 18px) / 4);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 8px 2px;
  text-align: center;
  cursor: pointer;
  background: #fdfcfb;
  transition: all 0.15s ease;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.date-card-choice:hover {
  border-color: var(--bronze);
  background: #fff;
}

.date-card-choice.selected {
  border-color: var(--bronze);
  background: #211d18;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.date-card-choice.selected small {
  color: var(--bronze-light);
}

.date-card-choice.is-closed {
  opacity: 0.38 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  background: #ece7df !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
}

.date-card-choice.is-closed small {
  color: #8c8274 !important;
}

.date-card-choice.is-closed strong {
  color: #797166 !important;
}

.date-card-choice small {
  display: block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: #887e71;
}

.date-card-choice strong {
  display: block;
  font-size: 15px;
  margin: 1px 0;
  line-height: 1.2;
}

/* Time Slots */
.slots-subgroup {
  margin-top: 14px;
}

.slots-subgroup-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #887e71;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
  gap: 6px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 980px) {
  .slots-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 6px !important;
  }
}

@media (max-width: 440px) {
  .slots-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.slot-btn {
  min-height: 40px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: #fdfcfb;
  color: #211d18;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  box-sizing: border-box;
}

.slot-btn:hover:not(.booked) {
  border-color: var(--bronze);
  background: #fff;
  transform: scale(1.02);
}

.slot-btn.selected {
  background: var(--bronze);
  color: #17130f;
  border-color: var(--bronze);
  box-shadow: 0 4px 12px rgba(181, 138, 82, 0.4);
}

.slot-btn.popular {
  position: relative;
  border-color: rgba(181, 138, 82, 0.45);
}

.slot-btn.popular::after {
  content: "🔥";
  position: absolute;
  top: -6px;
  right: -4px;
  font-size: 10px;
}

.slot-btn.booked {
  background: #eee8e0;
  color: #a89d91;
  border-color: transparent;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Salon Status Card in Admin */
.salon-status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  transition: background 0.2s ease;
}

.salon-status-card.open {
  background: #e9f5e4;
  border: 1px solid #b8dfad;
  color: #27521c;
}

.salon-status-card.closed {
  background: #fce8e6;
  border: 1px solid #f5b7b1;
  color: #78281f;
}

.salon-status-card .status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.salon-status-card.open .status-indicator {
  background: #39b54a;
  box-shadow: 0 0 10px rgba(57, 181, 74, 0.7);
}

.salon-status-card.closed .status-indicator {
  background: #e74c3c;
  box-shadow: 0 0 10px rgba(231, 76, 60, 0.7);
}

/* Salon Alert on Public Booking */
.salon-closed-banner {
  background: #fce8e6;
  border: 1px solid #f5b7b1;
  color: #78281f;
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =========================================================
   MOBILE BOOKING OPTIMIZATIONS (ZERO OVERFLOW & APP EXPERIENCE)
   ========================================================= */
@media (max-width: 980px) {
  .booking-visual-layout {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .booking-visual-steps,
  .booking-visual-sidebar {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .booking-step-box {
    padding: 18px 14px !important;
    border-radius: 18px !important;
    margin-bottom: 14px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .step-title {
    margin-bottom: 12px !important;
  }

  .step-title h3 {
    font-size: 16px !important;
  }

  .step-number {
    width: 26px !important;
    height: 26px !important;
    font-size: 12px !important;
  }

  /* Barber Carousel: 3 visible cards on mobile */
  .barber-pick-grid {
    display: flex !important;
    gap: 8px !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 4px 2px 8px !important;
    box-sizing: border-box !important;
  }

  .barber-pick-grid::-webkit-scrollbar {
    display: none;
  }

  .barber-choice-chip {
    flex: 0 0 calc((100% - 16px) / 3) !important;
    min-width: calc((100% - 16px) / 3) !important;
    max-width: calc((100% - 16px) / 3) !important;
    padding: 8px 3px !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
  }

  .barber-choice-chip .barber-avatar {
    width: 32px !important;
    height: 32px !important;
    font-size: 15px !important;
    margin-bottom: 4px !important;
  }

  .barber-choice-chip strong {
    font-size: 11px !important;
    white-space: normal !important;
    line-height: 1.2 !important;
  }

  .barber-choice-chip small {
    font-size: 9px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .barber-choice-chip .rest-tag {
    display: block !important;
    font-size: 8px !important;
    color: #8c6843 !important;
    margin-top: 2px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
  }

  /* Date Carousel: 4 visible days on mobile */
  .date-strip-wrapper {
    display: flex !important;
    gap: 6px !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 4px 2px 8px !important;
    box-sizing: border-box !important;
  }

  .date-strip-wrapper::-webkit-scrollbar {
    display: none;
  }

  .date-card-choice {
    flex: 0 0 calc((100% - 18px) / 4) !important;
    min-width: calc((100% - 18px) / 4) !important;
    max-width: calc((100% - 18px) / 4) !important;
    padding: 8px 2px !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
  }

  .date-card-choice small {
    font-size: 9px !important;
  }

  .date-card-choice strong {
    font-size: 15px !important;
    margin: 1px 0 !important;
    line-height: 1.2 !important;
  }

  /* Time Slots on Mobile: 4 columns touch buttons */
  .slots-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 6px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .slot-btn {
    min-height: 40px !important;
    font-size: 13px !important;
    padding: 0 2px !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  /* Services Grid on Mobile */
  .service-pick-grid,
  .service-pick-grid.compact {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    max-height: none !important;
    overflow-y: visible !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .service-card-choice {
    padding: 12px 14px !important;
    border-radius: 14px !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  .service-card-choice strong {
    font-size: 14px !important;
  }

  .service-card-choice small {
    font-size: 11px !important;
  }

  .service-card-choice .choice-price {
    font-size: 15px !important;
  }

  .booking-panel {
    padding: 18px 16px !important;
    border-radius: 18px !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  .ticket-body {
    padding: 16px !important;
  }

  .ticket-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
}

@media (max-width: 440px) {
  .slots-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  
  .container {
    width: calc(100% - 20px) !important;
  }
  
  .booking-step-box {
    padding: 16px 12px !important;
  }
}

/* =========================================================
   SUNBURST RADIANT PROMO POPUP ("STILE SOLE")
   ========================================================= */
#sunburstPromoWidget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: sunburstFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes sunburstFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.sunburst-promo-card {
  position: relative;
  width: 250px;
  background: radial-gradient(circle at 50% 30%, #fff7d6 0%, #ffdf70 40%, #e59714 80%, #b86202 100%);
  border-radius: 28px;
  padding: 22px 18px 20px;
  color: #2b1700;
  text-align: center;
  box-shadow: 0 12px 35px rgba(229, 151, 20, 0.45), 0 0 0 3px rgba(255, 235, 140, 0.6);
  overflow: hidden;
  box-sizing: border-box;
}

/* Radiant Rotating Sun Rays in Background */
.sunburst-rays {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0.25) 0deg 15deg,
    transparent 15deg 30deg
  );
  animation: sunRayRotate 25s linear infinite;
  pointer-events: none;
  border-radius: 50%;
  z-index: 1;
}

@keyframes sunRayRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.sunburst-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sunburst-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.15s ease;
}

.sunburst-close:hover {
  background: rgba(0, 0, 0, 0.45);
  transform: scale(1.1);
}

.sunburst-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #2b1700;
  color: #ffeb88;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.sunburst-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #1f1100;
  line-height: 1.2;
}

.sunburst-prices {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 4px 0 8px;
}

.sunburst-old {
  font-size: 13px;
  color: #784300;
  text-decoration: line-through;
  font-weight: 600;
}

.sunburst-price {
  font-size: 28px;
  font-weight: 900;
  color: #1f1100;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
}

.sunburst-expiry {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  color: #3b1e00;
  margin: 4px 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.sunburst-expiry-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dc2626;
  animation: pulseDot 1.2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.75); }
}

.sunburst-expiry strong {
  font-family: monospace;
  font-size: 11px;
  color: #1a0d00;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.sunburst-desc {
  font-size: 10px;
  line-height: 1.35;
  color: #4a2700;
  margin: 0 0 12px;
  font-weight: 600;
}

.sunburst-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #1f1100;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.15s ease;
}

.sunburst-btn:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  color: #ffea79;
}

/* Desktop & Mobile View Toggles */
.sunburst-mobile-pill-btn {
  display: none;
}
.sunburst-desktop-view {
  display: flex;
}

/* Minimized Sunburst Pill */
.sunburst-mini-pill {
  background: radial-gradient(circle at 50% 30%, #fff7d6 0%, #ffdf70 40%, #e59714 100%);
  border: 1.5px solid #ffeb88;
  color: #1f1100;
  font-weight: 800;
  font-size: 11px;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(229, 151, 20, 0.45);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
  animation: sunburstFadeIn 0.3s ease;
}

.sunburst-mini-pill:hover {
  transform: scale(1.05);
}

@keyframes sunPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.18) rotate(15deg); }
}

/* =========================================================
   MOBILE PROMO: PULSANTE PROMO ATTIVA IN ALTO
   ========================================================= */
/* Dynamic Promo CTA Button & Strip Styling (Integrated Button Experience) */
.btn.is-promo-active,
.btn-nav-cta.is-promo-active {
  background: linear-gradient(135deg, #fff7c2 0%, #ffc83b 45%, #e67e22 100%) !important;
  color: #171008 !important;
  border: 1px solid rgba(255, 240, 160, 0.9) !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 18px rgba(230, 126, 34, 0.45), 0 0 0 2px rgba(255, 235, 140, 0.4) !important;
  position: relative;
  overflow: hidden;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn.is-promo-active:hover {
  background: linear-gradient(135deg, #ffffff 0%, #ffd44f 45%, #f39c12 100%) !important;
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.6) !important;
}

.btn-promo-sun {
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  animation: sunPulse 2s infinite ease-in-out;
}

/* Mobile Salon Promo Bar (Desktop Radiant Sunburst Colors in Native Bar) */
.mobile-salon-promo-bar {
  display: none;
}

/* Mobile Tab Bar Promo Button */
.mobilebar a.is-promo-tab {
  background: linear-gradient(135deg, #fff2a8 0%, #f59e0b 55%, #d97706 100%) !important;
  color: #170d03 !important;
  font-weight: 900 !important;
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.6) !important;
  border: 1.5px solid rgba(255, 245, 180, 0.8) !important;
}

.mobilebar a.is-promo-tab svg {
  color: #170d03 !important;
}

/* On mobile, show the mobile salon promo bar and keep bottom-right popup hidden */
@media (max-width: 768px) {
  #sunburstPromoWidget {
    display: none !important;
  }

  .mobile-salon-promo-bar {
    display: block !important;
    width: 100% !important;
    margin-top: 14px !important;
    background: radial-gradient(circle at 35% 30%, #fff7d6 0%, #ffdf70 45%, #e59714 85%, #b86202 100%) !important;
    border: 1.5px solid rgba(255, 235, 140, 0.9) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(229, 151, 20, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.35) inset !important;
    padding: 8px 12px !important;
    color: #2b1700 !important;
    position: relative !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .mobile-salon-promo-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    position: relative !important;
    z-index: 2 !important;
  }

  .mobile-salon-promo-left {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-width: 0 !important;
  }

  .mobile-salon-promo-sun {
    font-size: 20px !important;
    line-height: 1 !important;
    animation: sunPulse 2s infinite ease-in-out !important;
    flex-shrink: 0 !important;
  }

  .mobile-salon-promo-text {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    text-align: left !important;
  }

  .mobile-salon-promo-tag {
    font-size: 8px !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #4a1d00 !important;
    line-height: 1 !important;
    margin-bottom: 2px !important;
    white-space: nowrap !important;
  }

  .mobile-salon-promo-title {
    font-size: 13px !important;
    font-weight: 800 !important;
    color: #1a0a00 !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .mobile-salon-promo-right {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
  }

  .mobile-salon-promo-pricing {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    line-height: 1 !important;
  }

  .mobile-salon-promo-old {
    font-size: 9px !important;
    color: #78350f !important;
    text-decoration: line-through !important;
    font-weight: 700 !important;
  }

  .mobile-salon-promo-price {
    font-size: 16px !important;
    font-weight: 900 !important;
    color: #1a0a00 !important;
    font-family: Georgia, serif !important;
  }

  .mobile-salon-promo-btn {
    background: #1c0a00 !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    padding: 6px 12px !important;
    border-radius: 999px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: transform 0.15s ease !important;
  }

  .mobile-salon-promo-btn:active {
    transform: scale(0.95) !important;
  }
}

/* =========================================================
   DEMO EMAIL NOTIFICATION SIMULATION MODAL
   ========================================================= */
.demo-notify-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 13, 11, 0.84);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.demo-notify-modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.demo-notify-modal-card {
  background: #171512;
  border: 1px solid rgba(181, 138, 82, 0.35);
  border-radius: 24px;
  max-width: 520px;
  width: 100%;
  padding: 26px 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(181, 138, 82, 0.2);
  color: #fff;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-sizing: border-box;
}

.demo-notify-modal-backdrop.show .demo-notify-modal-card {
  transform: translateY(0) scale(1);
}

.demo-notify-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(181, 138, 82, 0.15);
  border: 1px solid rgba(181, 138, 82, 0.35);
  color: #e5cbab;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.demo-notify-header h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.25;
}

.demo-notify-header p {
  color: #a89f92;
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 18px;
}

.demo-notify-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.demo-notify-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
}

.demo-notify-icon {
  font-size: 24px;
  line-height: 1;
  background: rgba(181, 138, 82, 0.15);
  border-radius: 10px;
  padding: 8px;
  flex-shrink: 0;
}

.demo-notify-info strong {
  display: block;
  font-size: 13px;
  color: #f3ece4;
  margin-bottom: 3px;
}

.demo-notify-info small {
  display: block;
  font-size: 11.5px;
  color: #9e9588;
  line-height: 1.45;
}

.demo-notify-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.demo-notify-footer .btn {
  flex: 1;
  min-width: 140px;
  text-align: center;
  justify-content: center;
}

.promo-mini-badge {
  display: inline-block;
  background: #2b1700;
  color: #ffdf70;
  border: 1px solid rgba(245, 158, 11, 0.5);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 6px;
  vertical-align: middle;
}

.promo-price-highlight {
  color: #d97706 !important;
  font-weight: 800 !important;
}

/* =========================================================
   BOOKING LOOKUP (PRIVACY-FIRST ZERO REGISTRATION)
   ========================================================= */
.booking-lookup-bar {
  background: linear-gradient(90deg, #1b1814 0%, #29241d 100%);
  border: 1px solid rgba(181, 138, 82, 0.28);
  border-radius: 14px;
  padding: 10px 16px;
  margin-bottom: 22px;
}

.booking-lookup-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #dfd7cc;
  font-weight: 500;
}

.lookup-code-form {
  margin-top: 6px;
}

.lookup-input-group {
  display: flex;
  gap: 8px;
}

.lookup-input-group input {
  flex: 1;
  background: #0f0d0b !important;
  border: 1px solid rgba(181, 138, 82, 0.4) !important;
  color: #fff !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em;
  font-family: monospace;
}

.lookup-input-group input:focus {
  border-color: #ffdf70 !important;
  box-shadow: 0 0 0 3px rgba(255, 223, 112, 0.25) !important;
}

.lookup-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(181, 138, 82, 0.35);
  border-radius: 16px;
  padding: 18px;
  text-align: left;
}

.lookup-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
}

.lookup-code-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: #2b1700;
  color: #ffeb88;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 235, 136, 0.4);
}

.lookup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
  margin-bottom: 16px;
}

.lookup-item small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #8c8275;
  font-weight: 700;
  margin-bottom: 2px;
}

.lookup-item strong {
  display: block;
  font-size: 14px;
  color: #f3ece4;
}

.lookup-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lookup-not-found {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 12.5px;
  text-align: center;
}

.lookup-recent-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px;
  margin-top: 14px;
}

.lookup-recent-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.lookup-recent-item:hover {
  background: rgba(181, 138, 82, 0.15);
  border-color: rgba(181, 138, 82, 0.4);
  transform: translateX(2px);
}

.lookup-recent-code {
  font-family: monospace;
  font-size: 12px;
  font-weight: 800;
  color: #ffdf70;
  background: #2b1700;
  padding: 2px 6px;
  border-radius: 4px;
}

.lookup-recent-name {
  font-size: 11.5px;
  color: #dfd7cc;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.lookup-recent-arrow {
  color: #a89f92;
  font-weight: 800;
  font-size: 13px;
}

.btn-danger-soft {
  background: rgba(239, 68, 68, 0.15) !important;
  color: #fca5a5 !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
  font-size: 11.5px !important;
  font-weight: 600 !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-danger-soft:hover {
  background: rgba(239, 68, 68, 0.3) !important;
  color: #fff !important;
}

.nav-lookup-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #d1c7bc !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  transition: all 0.15s ease !important;
}

.nav-lookup-btn:hover {
  background: rgba(181, 138, 82, 0.2) !important;
  border-color: rgba(181, 138, 82, 0.5) !important;
  color: #fff !important;
}

/* =========================================================
   MOBILE RESPONSIVE TWEAKS FOR BOOKING LOOKUP & HEADER
   ========================================================= */
@media (max-width: 768px) {
  .booking-lookup-bar {
    padding: 10px 12px !important;
    margin-bottom: 14px !important;
    border-radius: 14px !important;
  }
  .booking-lookup-inner {
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: center !important;
    gap: 8px !important;
    font-size: 11.5px !important;
  }
  .booking-lookup-inner .btn {
    width: 100% !important;
    min-height: 36px !important;
    font-size: 11.5px !important;
    padding: 0 12px !important;
    justify-content: center !important;
  }

  .booking-lookup-modal-card {
    padding: 18px 14px !important;
    max-height: 88vh !important;
    overflow-y: auto !important;
    border-radius: 18px !important;
  }
  .booking-lookup-modal-card .demo-notify-header h3 {
    font-size: 18px !important;
  }
  .booking-lookup-modal-card .demo-notify-header p {
    font-size: 11.5px !important;
    margin-bottom: 10px !important;
  }
  .lookup-input-group input {
    font-size: 13px !important;
    padding: 9px 12px !important;
  }
  .lookup-input-group .btn {
    min-height: 38px !important;
    padding: 0 14px !important;
    font-size: 12px !important;
  }
  .lookup-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px 10px !important;
  }
  .lookup-item strong {
    font-size: 12.5px !important;
  }
  .lookup-item small {
    font-size: 9px !important;
  }
  .lookup-actions .btn {
    font-size: 12px !important;
    min-height: 38px !important;
    padding: 0 12px !important;
  }

  /* Header adjustments on mobile */
  .nav-lookup-btn {
    font-size: 10px !important;
    padding: 4px 8px !important;
    gap: 3px !important;
    white-space: nowrap !important;
  }
  .header-admin-btn {
    font-size: 10px !important;
    padding: 4px 8px !important;
    min-height: 30px !important;
    gap: 4px !important;
    white-space: nowrap !important;
  }
  .brand strong {
    font-size: 20px !important;
  }
}

/* =========================================================
   MOBILE ITEM DETAIL MODAL (BOTTOM-SHEET DETTAGLIO TRATTAMENTO)
   ========================================================= */
.card-mobile-info-btn {
  display: none;
}


/* =========================================================
   UNIVERSAL ITEM DETAIL MODAL (SCHEDA SERVIZIO / PRODOTTO)
   ========================================================= */
.item-detail-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 7, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.item-detail-modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.item-detail-sheet {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  border-radius: 24px;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65), 0 0 30px rgba(181, 138, 82, 0.15);
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease;
  color: #1c1814;
}

.item-detail-modal-backdrop.show .item-detail-sheet {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.sheet-drag-handle {
  display: none;
}

.item-detail-media {
  position: relative;
  width: 100%;
  height: 220px;
  max-height: 38vh;
  background: #f4ede2;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.item-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.item-detail-body {
  padding: 20px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.item-detail-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.item-detail-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.item-detail-title-row h3 {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #17120c;
  margin: 0;
  line-height: 1.2;
}

.item-detail-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--bronze-dark);
  font-family: Georgia, serif;
  flex-shrink: 0;
}

.item-detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.item-detail-meta-pill {
  font-size: 11px;
  font-weight: 700;
  background: #f5eee4;
  color: #574b3d;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(181, 138, 82, 0.15);
}

.item-detail-desc-box {
  background: #fbf9f6;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 14px 16px;
}

.item-detail-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.item-detail-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #453d34;
}

.card,
.product,
.concept-service-card {
  cursor: pointer !important;
}

@media (max-width: 640px) {
  .item-detail-modal-backdrop {
    align-items: flex-end;
    padding: 0;
  }
  .item-detail-sheet {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 26px 26px 0 0;
    transform: translateY(100%);
    opacity: 1;
  }
  .item-detail-modal-backdrop.show .item-detail-sheet {
    transform: translateY(0);
    opacity: 1;
  }
  .sheet-drag-handle {
    display: block;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4.5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    z-index: 12;
  }
  .item-detail-media {
    border-radius: 26px 26px 0 0;
  }
}

/* =========================================================
   LOYALTY & VIP CLUB SECTION (PACCHETTI FEDELTÀ & PASS)
   ========================================================= */
.loyalty-section {
  margin-top: 54px;
  background: linear-gradient(180deg, #181410 0%, #110e0b 100%);
  border: 1px solid rgba(181, 138, 82, 0.3);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px) clamp(20px, 3.5vw, 36px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.loyalty-header {
  text-align: center;
  margin-bottom: 30px;
}

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

.loyalty-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 24px 20px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.loyalty-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 223, 112, 0.5);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.loyalty-card.featured {
  background: radial-gradient(circle at 50% 10%, rgba(229, 151, 20, 0.15) 0%, rgba(20, 16, 12, 0.95) 100%);
  border: 1.5px solid rgba(255, 223, 112, 0.6);
  box-shadow: 0 12px 35px rgba(229, 151, 20, 0.2);
}

.loyalty-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  color: #d1c7bc;
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.loyalty-badge.gold {
  background: #2b1700;
  color: #ffdf70;
  border: 1px solid rgba(255, 223, 112, 0.4);
}

.loyalty-card h4 {
  font-family: Georgia, serif;
  font-size: 18px;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.25;
}

.loyalty-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.loyalty-price {
  font-size: 26px;
  font-weight: 900;
  color: #ffdf70;
  font-family: Georgia, serif;
}

.loyalty-old-price {
  font-size: 14px;
  color: #8c8275;
}

.loyalty-save {
  font-size: 10px;
  font-weight: 800;
  color: #86efac;
  background: rgba(34, 197, 94, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
}

.loyalty-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.loyalty-perks li {
  font-size: 12px;
  color: #d6cdc4;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .loyalty-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* =========================================================
   MOBILE QUICK ACTIONS BAR (ONE-TAP ACTIONS)
   ========================================================= */
.mobile-quick-actions-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-quick-actions-bar {
    display: block;
    margin-top: 14px;
    width: 100%;
  }

  .quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    background: rgba(25, 21, 17, 0.9);
    border: 1px solid rgba(181, 138, 82, 0.28);
    border-radius: 16px;
    padding: 8px 6px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  }

  .quick-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 6px 2px;
    color: #e5ded5;
    text-decoration: none;
    font-size: 9px;
    font-weight: 700;
    transition: transform 0.15s ease, background 0.15s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .quick-action-item:active {
    transform: scale(0.92);
    background: rgba(181, 138, 82, 0.2);
  }

  .quick-action-icon {
    font-size: 16px;
    line-height: 1;
  }

  .quick-action-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .quick-action-item.pwa-item {
    background: rgba(229, 151, 20, 0.12);
    border-color: rgba(255, 223, 112, 0.3);
    color: #ffdf70;
  }
}

/* =========================================================
   BARBERÌA TRADIZIONE OGGI — CONCEPT LAYOUT & SECTIONS
   ========================================================= */

/* Hero Concept Refinements */
.hero {
  background: var(--bg);
  min-height: calc(92vh - 80px);
}

.hero-copy {
  padding-right: 40px;
}

.hero .eyebrow {
  color: var(--gold-light);
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 8px 0 16px;
}

.hero p {
  color: #c9d6ce;
  font-size: 16px;
  line-height: 1.6;
  max-width: 500px;
}

.hero-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-side-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 2px solid rgba(184, 134, 72, 0.35);
  padding-left: 20px;
}

.hero-side-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-side-item strong {
  font-family: var(--font-brand);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-side-item span {
  font-size: 10px;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Concept Showcase Section ("I NOSTRI SERVIZI") */
.section-services-showcase {
  background: var(--paper);
  color: var(--text-dark);
  padding: clamp(54px, 7vw, 90px) 0;
  border-bottom: 1px solid var(--paper-border);
}

.section-header-classic {
  text-align: center;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.section-header-classic .classic-title {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-brand);
  font-size: clamp(20px, 2.6vw, 30px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 700;
}

.section-header-classic .classic-title::before,
.section-header-classic .classic-title::after {
  content: "";
  display: inline-block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

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

.concept-service-card {
  background: #ffffff;
  border: 1px solid var(--paper-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.concept-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(14, 34, 25, 0.12);
  border-color: var(--gold);
}

.concept-service-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #11251c;
}

.concept-service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.concept-service-card:hover .concept-service-img-wrap img {
  transform: scale(1.06);
}

.concept-service-content {
  padding: 22px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #ffffff;
}

.concept-service-text h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 5px;
}

.concept-service-text p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.concept-circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(184, 134, 72, 0.35);
}

.concept-service-card:hover .concept-circle-btn {
  background: var(--gold-light);
  transform: translateX(4px);
}

/* Ambience & Experience Section */
.section-ambience {
  background: var(--bg);
  color: var(--ink);
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 1px solid rgba(184, 134, 72, 0.2);
  position: relative;
  overflow: hidden;
}

.ambience-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.ambience-quote-box {
  padding: 10px;
}

.ambience-quote-box blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
  color: #f7f4ee;
  margin-bottom: 20px;
}

.ambience-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ambience-stars {
  color: var(--gold-light);
  font-size: 16px;
  letter-spacing: 2px;
}

.ambience-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.ambience-chair-img-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(184, 134, 72, 0.3);
}

.ambience-chair-img-wrap img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ambience-chair-img-wrap:hover img {
  transform: scale(1.03);
}

.ambience-feature-box {
  padding: 10px;
}

.ambience-feature-box .eyebrow {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.22em;
  display: block;
}

.ambience-feature-box h3 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.ambience-feature-box p {
  color: #c0cfc5;
  font-size: 14px;
  line-height: 1.7;
}

/* Team Section (Matching iPad mockup) */
.section-team-showcase {
  background: var(--paper);
  color: var(--text-dark);
  padding: clamp(60px, 8vw, 100px) 0 0;
}

.team-showcase-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(36px, 5vw, 54px);
}

.team-showcase-header .eyebrow {
  color: var(--gold-dark);
  margin-bottom: 8px;
  display: block;
}

.team-showcase-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.15;
}

.team-showcase-header p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.team-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto;
}

.team-member-card {
  background: #ffffff;
  border: 1px solid var(--paper-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.team-member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(14, 34, 25, 0.1);
  border-color: var(--gold);
}

.team-member-media {
  aspect-ratio: 1 / 1.12;
  overflow: hidden;
  position: relative;
  background: #142e22;
}

.team-member-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member-card:hover .team-member-media img {
  transform: scale(1.05);
}

.team-member-info {
  padding: 20px 18px 24px;
}

.team-member-info h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text-dark);
}

.team-member-info .role {
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.team-quote-banner {
  background: var(--bg);
  color: var(--ink);
  padding: 42px 24px;
  margin-top: 60px;
  text-align: center;
  border-top: 1px solid rgba(184, 134, 72, 0.25);
  border-bottom: 1px solid rgba(184, 134, 72, 0.25);
}

.team-quote-banner blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 2vw, 23px);
  max-width: 840px;
  margin: 0 auto;
  color: #f7f4ee;
  line-height: 1.55;
}

/* Quick Booking Section (Matching iPhone mockup) */
.section-quick-booking {
  background: var(--paper-2);
  color: var(--text-dark);
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 1px solid var(--paper-border);
}

.quick-booking-card {
  max-width: 520px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--paper-border);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 44px);
  box-shadow: 0 20px 50px rgba(14, 34, 25, 0.08);
}

.quick-booking-header {
  text-align: center;
  margin-bottom: 28px;
}

.quick-booking-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 14px;
  gap: 4px;
}

.quick-booking-brand .scissors-icon {
  color: var(--gold);
}

.quick-booking-brand strong {
  font-family: var(--font-brand);
  font-size: 18px;
  letter-spacing: 0.16em;
  color: var(--text-dark);
  text-transform: uppercase;
}

.quick-booking-brand small {
  font-size: 8px;
  letter-spacing: 0.26em;
  color: var(--gold-dark);
  text-transform: uppercase;
  font-weight: 700;
}

.quick-booking-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 700;
  margin: 10px 0 6px;
  color: var(--text-dark);
}

.quick-booking-header p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.quick-booking-form {
  display: grid;
  gap: 16px;
}

.qb-field {
  position: relative;
  display: flex;
  align-items: center;
}

.qb-field-icon {
  position: absolute;
  left: 16px;
  font-size: 16px;
  color: #7b857d;
  pointer-events: none;
}

.qb-input,
.qb-select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px 0 48px;
  border: 1px solid var(--paper-border);
  border-radius: 14px;
  background: #fbf9f5;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  outline: none;
}

.qb-input:focus,
.qb-select:focus {
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(184, 134, 72, 0.18);
}

.qb-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.qb-submit-btn {
  width: 100%;
  min-height: 52px;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  border-radius: 999px !important;
}

.qb-tagline {
  text-align: center;
  margin-top: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.qb-tagline::before,
.qb-tagline::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* Responsive adjustments */
@media (max-width: 980px) {
  .concept-services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .ambience-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ambience-rating {
    justify-content: center;
  }

  .ambience-chair-img-wrap {
    max-width: 500px;
    margin: 0 auto;
  }

  .team-showcase-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* =========================================================
   ADAPTIVE DISPLAY SCALING FOR LARGE MONITORS (APPLE 27", 1440p, 4K)
   Adattamento proporzionale automatico in base alle dimensioni del monitor:
   - Laptop / Schermi standard (<1600px): Scala standard 100%
   - Desktop intermedi (1680px - 1919px): Scala confortevole 108%
   - Monitor Full HD ampi (1920px - 2199px): Scala 115%
   - Apple 27" / iMac 27" / 1440p (2200px - 3199px): Scala automatica al 125%
   - Monitor 4K / Ultra-wide (>=3200px): Scala proporzionata al 135%
   ========================================================= */

@media screen and (min-width: 1680px) and (max-width: 1919px) {
  :root {
    --container-width: 1220px;
  }
  body {
    zoom: 1.08;
  }
}

@media screen and (min-width: 1920px) and (max-width: 2199px) {
  :root {
    --container-width: 1260px;
  }
  body {
    zoom: 1.15;
  }
}

@media screen and (min-width: 2200px) and (max-width: 3199px) {
  :root {
    --container-width: 1320px;
  }
  body {
    zoom: 1.25; /* Apple 27" 2560x1440 / 5K Retina adatta perfettamente al 125% */
  }
}

@media screen and (min-width: 3200px) {
  :root {
    --container-width: 1420px;
  }
  body {
    zoom: 1.35; /* 4K Ultra HD & 5K ultrawide */
  }
}

@supports not (zoom: 1) {
  @media screen and (min-width: 2200px) {
    html {
      font-size: 125%;
    }
  }
}
