/* ==========================================
   ETTORE PARRUCCHIERE - PREMIUM STYLES
   ========================================== */

:root {
  --color-black: #111111;
  --color-bone: #f4f0ec;
  --color-gold: #C5A059;
  --color-dark-gray: #2c2c2c;
  --color-white: #ffffff;
  --font-title: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 4px;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--color-white);
  color: var(--color-black);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

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

button {
  font-family: inherit;
  cursor: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.container.narrow {
  max-width: 800px;
}

.section-padding {
  padding: 100px 0;
}

.bg-light {
  background: var(--color-bone);
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: difference;
}

.custom-cursor.expanded {
  width: 40px;
  height: 40px;
  background: rgba(197, 160, 89, 0.3);
  border: 1px solid var(--color-gold);
}

@media (pointer: coarse) {
  .custom-cursor {
    display: none;
  }
  body, button, a {
    cursor: auto;
  }
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99998;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--font-title);
  font-size: 3rem;
  color: var(--color-gold);
  letter-spacing: 0.3em;
  animation: preloaderFade 1.5s ease forwards;
}

@keyframes preloaderFade {
  0% { opacity: 0; transform: translateY(20px); }
  40% { opacity: 1; transform: translateY(0); }
  80% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-20px); }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--color-white);
  letter-spacing: 0.15em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.85rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--color-gold);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-black);
  font-weight: 600;
}

.btn-gold:hover {
  background: #b08d4b;
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.3);
}

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

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.98);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.mobile-nav-link {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--color-white);
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--color-gold);
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  max-width: 900px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Headers */
.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* About */
.about-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image {
  flex: 0 0 45%;
  overflow: hidden;
  border-radius: var(--radius);
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-text {
  flex: 1;
}

.about-text .section-title {
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--color-dark-gray);
  line-height: 1.8;
}

.drop-cap {
  float: left;
  font-family: var(--font-title);
  font-size: 4rem;
  line-height: 0.8;
  margin-right: 12px;
  margin-top: 4px;
  color: var(--color-gold);
}

/* Servizi & Tabs */
.tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--color-dark-gray);
  color: var(--color-dark-gray);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.price-list {
  max-width: 700px;
  margin: 0 auto;
}

.price-item {
  display: flex;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.price-name {
  font-weight: 500;
  white-space: nowrap;
}

.price-line {
  flex: 1;
  border-bottom: 1px dotted rgba(0,0,0,0.2);
  margin: 0 12px;
  position: relative;
  top: -4px;
}

.price-value {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--color-gold);
  white-space: nowrap;
}

.badge {
  display: inline-block;
  margin-top: 24px;
  padding: 8px 16px;
  background: var(--color-gold);
  color: var(--color-black);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 20px;
  font-weight: 600;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 3px solid var(--color-bone);
  transition: border-color 0.3s ease;
}

.team-card:hover .team-photo {
  border-color: var(--color-gold);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Portfolio / Masonry */
.masonry-grid {
  column-count: 3;
  column-gap: 16px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: none;
}

.masonry-item img {
  width: 100%;
  transition: transform 0.5s ease;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-height: 90vh;
  max-width: 90vw;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 3rem;
  line-height: 1;
  cursor: none;
}

/* Testimonials */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 10px;
}

.testimonial-card {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  max-width: 700px;
  margin: 0 auto;
}

.stars {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.testimonial-card p {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-name {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.google-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  background: var(--color-black);
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-black);
  background: var(--color-white);
  color: var(--color-black);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--color-black);
  color: var(--color-white);
}

/* Prodotti */
.prodotti-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}

.prodotto-logo {
  text-align: center;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark-gray);
  opacity: 0.7;
  transition: opacity 0.3s ease, color 0.3s ease;
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
}

.prodotto-logo:hover {
  opacity: 1;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* FAQ Accordion */
.accordion {
  border-top: 1px solid rgba(0,0,0,0.1);
}

.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--color-black);
  cursor: none;
}

.accordion-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--color-gold);
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.open .accordion-body {
  max-height: 300px;
  padding-bottom: 24px;
}

.accordion-body p {
  color: var(--color-dark-gray);
  line-height: 1.7;
}

/* Contatti */
.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: stretch;
  min-height: 450px;
}

.contatti-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-block h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.info-block p, .info-block a {
  color: var(--color-dark-gray);
  line-height: 1.7;
}

.info-block a:hover {
  color: var(--color-gold);
}

.orari-table {
  width: 100%;
  font-size: 0.9rem;
}

.orari-table td {
  padding: 4px 0;
  color: var(--color-dark-gray);
}

.orari-table td:first-child {
  font-weight: 600;
  padding-right: 16px;
  white-space: nowrap;
}

.contatti-mappa {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 400px;
}

.contatti-mappa iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* Footer */
.footer {
  background: var(--color-black);
  color: var(--color-bone);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}

.footer-col h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--color-white);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--color-bone);
  opacity: 0.7;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--color-gold);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--color-dark-gray);
  background: transparent;
  color: var(--color-white);
  font-size: 0.85rem;
  border-radius: var(--radius);
}

.newsletter-form input::placeholder {
  color: rgba(244, 240, 236, 0.5);
}

.footer-big {
  font-family: var(--font-title);
  font-size: 10vw;
  text-align: center;
  color: var(--color-dark-gray);
  line-height: 1;
  padding: 40px 0;
  user-select: none;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--color-dark-gray);
  font-size: 0.8rem;
  opacity: 0.6;
  position: relative;
  z-index: 2;
}

/* Booking Modal */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.booking-modal.open {
  opacity: 1;
  pointer-events: all;
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(4px);
}

.booking-panel {
  position: relative;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}

.booking-header {
  padding: 20px 24px 12px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: relative;
}

.booking-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-dark-gray);
  cursor: none;
  z-index: 2;
}

.booking-progress {
  height: 3px;
  background: rgba(0,0,0,0.08);
  border-radius: 2px;
  margin-bottom: 16px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--color-gold);
  width: 20%;
  transition: width 0.4s ease;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-dark-gray);
}

.progress-steps .step-label {
  opacity: 0.5;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.progress-steps .step-label.active {
  opacity: 1;
  color: var(--color-gold);
  font-weight: 600;
}

.booking-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking-step h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.service-categories {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.cat-btn {
  padding: 8px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  background: transparent;
  border-radius: var(--radius);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  cursor: none;
}

.cat-btn.active, .cat-btn:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  cursor: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  min-height: 60px;
}

.service-card:hover, .service-card.selected {
  border-color: var(--color-gold);
  box-shadow: 0 2px 12px rgba(197, 160, 89, 0.15);
  background: rgba(197, 160, 89, 0.04);
}

.service-card.selected {
  background: rgba(197, 160, 89, 0.08);
}

.service-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.service-info span {
  font-size: 0.75rem;
  color: var(--color-dark-gray);
  opacity: 0.7;
}

.service-price {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--color-gold);
}

.staff-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.staff-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  cursor: none;
  transition: all 0.3s ease;
}

.staff-card:hover, .staff-card.selected {
  border-color: var(--color-gold);
  background: rgba(197, 160, 89, 0.04);
}

.staff-card .staff-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.staff-card .staff-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-card h4 {
  font-size: 0.9rem;
}

.staff-card span {
  font-size: 0.75rem;
  color: var(--color-dark-gray);
  opacity: 0.7;
}

.staff-any {
  grid-column: 1 / -1;
  justify-content: center;
  background: var(--color-bone);
  font-weight: 600;
}

.calendar-wrap {
  margin-bottom: 20px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cal-nav {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--color-black);
  cursor: none;
  padding: 4px 10px;
}

#cal-month-year {
  font-weight: 600;
  text-transform: capitalize;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.cal-day-label {
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--color-dark-gray);
  opacity: 0.6;
  padding: 6px 0;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  background: var(--color-white);
  font-size: 0.85rem;
  cursor: none;
  transition: all 0.2s ease;
}

.cal-day:hover:not(.disabled):not(.selected) {
  border-color: var(--color-gold);
}

.cal-day.selected {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
  font-weight: 600;
}

.cal-day.disabled {
  opacity: 0.3;
  pointer-events: none;
  background: rgba(0,0,0,0.03);
}

.time-slots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.time-chip {
  padding: 10px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  background: var(--color-white);
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: none;
  transition: all 0.2s ease;
}

.time-chip:hover, .time-chip.selected {
  border-color: var(--color-gold);
  background: rgba(197, 160, 89, 0.1);
}

.time-chip.selected {
  background: var(--color-gold);
  color: var(--color-black);
  font-weight: 600;
}

.booking-form .form-group {
  margin-bottom: 16px;
}

.booking-form label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--color-dark-gray);
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.booking-form input.error {
  border-color: #d93025;
  background: rgba(217, 48, 37, 0.04);
}

.summary-box {
  background: var(--color-bone);
  padding: 24px;
  border-radius: var(--radius);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.summary-row span:first-child {
  font-weight: 500;
  color: var(--color-dark-gray);
}

.summary-row span:last-child {
  font-weight: 600;
}

.success-box {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.success-box h3 {
  font-family: var(--font-title);
  margin-bottom: 12px;
}

.success-box p {
  color: var(--color-dark-gray);
  margin-bottom: 8px;
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.booking-footer {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: var(--color-white);
}

/* Responsive */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prodotti-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body, button, a {
    cursor: auto;
  }
  .section-padding {
    padding: 60px 0;
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-bg {
    background-attachment: scroll;
  }
  .about-inner {
    flex-direction: column;
  }
  .about-image {
    flex: none;
    width: 100%;
  }
  .masonry-grid {
    column-count: 2;
  }
  .contatti-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prodotti-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .booking-panel {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  .booking-modal {
    align-items: flex-end;
  }
  .staff-list {
    grid-template-columns: 1fr;
  }
  .progress-steps {
    display: none;
  }
  .booking-footer {
    position: sticky;
    bottom: 0;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .masonry-grid {
    column-count: 1;
  }
  .prodotti-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 280px;
  }
}
