/* ═══════════════════════════════════════════════
   IL TUO PARRUCCHIERE — LUXURY / EDITORIAL THEME
   Ispirato a salonzhairstudio.com
   Palette: White (#FFF) + Black (#000) + Gold (#D4AF37)
   ═══════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #FFFFFF;
    --off-white: #EFF5FA;
    --light-gray: #E1EDF6;
    --card-bg: #E6F0F9;
    --card-bg-hover: #D4E5F4;
    --mid-gray: #444444;
    --dark-gray: #1A1A1A;
    --black: #000000;
    --gold: #4DBBE6;
    /* Blue Accent */
    --gold-hover: #3CA0C9;
    /* Darker Blue Accent */
    --gold-light: rgba(77, 187, 230, 0.15);
    /* Light Blue BG */

    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

    --navbar-h: 85px;
    --max-w: 1200px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease);
}

ul {
    list-style: none;
}

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--black);
    line-height: 1.15;
}


/* ═══════════════════════════════════════════════
   NAVBAR — White, Minimal, Sticky
   ═══════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-h);
    background: var(--white);
    border-bottom: 2px solid var(--light-gray);
    z-index: 1000;
    transition: box-shadow 0.3s var(--ease);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    z-index: 1001;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo-cursive {
    font-family: 'Alex Brush', cursive;
    font-size: 2.8rem;
    color: #4DBBE6;
    /* Light blue from reference */
    font-weight: 400;
    margin-bottom: -5px;
    /* Pull the subtext closer */
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-left: 20px;
    /* Offset to mimic the reference alignment */
}

/* Hamburger */
.nav-toggle-checkbox {
    display: none;
}

.nav-toggle-label {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    width: 26px;
    height: 26px;
}

.hamburger-line {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--black);
    transition: all 0.3s var(--ease);
}

/* Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1.15rem;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--dark-gray);
    position: relative;
    transition: color 0.3s var(--ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.15rem;
    right: 1.15rem;
    height: 1.5px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s var(--ease);
}

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

.nav-link:hover::after {
    transform: scaleX(1);
}

/* ── Dropdown ── */
.has-dropdown {
    position: relative;
}

.dropdown-arrow {
    transition: transform 0.3s var(--ease);
    opacity: 0.5;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 180px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 0.6rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s var(--ease);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-link {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--dark-gray);
    transition: all 0.25s var(--ease);
}

.dropdown-link:hover {
    color: var(--gold);
    background: var(--gold-light);
}


/* ═══════════════════════════════════════════════
   MAIN
   ═══════════════════════════════════════════════ */
.main-content {
    min-height: 100vh;
    padding-top: var(--navbar-h);
    background: var(--white);
    position: relative;
    z-index: 10;
    margin-bottom: 450px;
    /* Aligned with typical footer height. Will be dynamically adjusted via JS if needed */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    /* Adds shadow over footer */
}


/* ═══════════════════════════════════════════════
   HERO — Full-width image + overlay
   ═══════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s var(--ease);
    border-radius: 50%;
}

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

.slider-btn.prev {
    left: 2rem;
}

.slider-btn.next {
    right: 2rem;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
    padding: 2rem;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 3vw, 0.95rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    margin-bottom: 3.5rem;
    display: block;
    color: var(--gold);
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero h1 span {
    font-style: italic;
    font-weight: 400;
}

.hero-text {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.9;
    letter-spacing: 0.01em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* ═══════════════════════════════════════════════
   BUTTONS — Sharp, editorial
   ═══════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.8rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

/* Geometric details for the active state */
.btn::before,
.btn::after {
    content: '';
    position: absolute;
    width: 35%;
    /* Length of the diagonal lines */
    height: 1.5px;
    background-color: var(--white);
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

/* Top Left Line */
.btn::before {
    top: 5px;
    left: -10px;
    transform: rotate(45deg) scaleX(0);
    transform-origin: left;
}

/* Bottom Right Line */
.btn::after {
    bottom: 5px;
    right: -10px;
    transform: rotate(45deg) scaleX(0);
    transform-origin: right;
}

/* ── Button Hover Geometric State ── */
.btn:hover::before,
.btn:hover::after {
    opacity: 1;
    transform: rotate(45deg) scaleX(1);
    transition-delay: 0.05s;
}

.btn-primary::before,
.btn-primary::after,
.btn-gold::before,
.btn-gold::after {
    background-color: var(--black);
}

.btn-primary {
    background: var(--black);
    color: var(--white);
    border: 1.5px solid var(--black);
}

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

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

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

/* Variante gold (diventata azzurra) per pagine interne su sfondo bianco */
.btn-gold {
    background: var(--gold);
    color: var(--black);
    /* Testo nero su bottone azzurro per contrasto */
    border: 1.5px solid var(--gold);
}

.btn-gold:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
}

.btn-dark-outline {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--black);
}

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


/* ═══════════════════════════════════════════════
   SEZIONI GENERICHE
   ═══════════════════════════════════════════════ */
.section {
    padding: 7rem 2rem;
}

.section-alt {
    background: var(--off-white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.section-dark {
    background: var(--black);
    color: var(--white);
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.section-dark .section-label {
    color: var(--gold);
}

.section-container {
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--black);
    /* Testo nero su label azzurro per contrasto */
    margin-bottom: 1.2rem;
    display: inline-block;
    background: var(--gold-light);
    padding: 0.35rem 1rem;
    border-radius: 2px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-title span {
    font-style: italic;
    font-weight: 400;
}

.section-subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--mid-gray);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-divider {
    width: 50px;
    height: 1.5px;
    background: var(--gold);
    margin: 1.5rem auto;
}


/* ═══════════════════════════════════════════════
   HOME — FEATURES
   ═══════════════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    transition: all 0.4s var(--ease);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    background: var(--card-bg-hover);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
    color: var(--dark-gray);
}

.feature-item p {
    color: var(--mid-gray);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.8;
}


/* ═══════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════ */
.cta-banner {
    text-align: center;
    padding: 6rem 2rem;
    background: var(--off-white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.cta-banner h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.cta-banner h2 span {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.cta-banner p {
    color: var(--mid-gray);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    font-weight: 300;
}


/* ═══════════════════════════════════════════════
   SERVIZI — Clean grid
   ═══════════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 4px;
    transition: all 0.4s var(--ease);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
    background: var(--card-bg-hover);
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.03em;
}

.service-card p {
    color: var(--mid-gray);
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.8;
}

.service-price {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 700;
}


/* ═══════════════════════════════════════════════
   GALLERY — Fade-in on hover
   ═══════════════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--card-bg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.06);
    opacity: 0.9;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--mid-gray);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.4s var(--ease);
}

.gallery-item:hover .gallery-placeholder {
    background: rgba(0, 0, 0, 0.03);
}

.gallery-placeholder svg {
    margin-bottom: 0.8rem;
    opacity: 0.25;
}


/* ═══════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════ */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    padding: 3.5rem;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--dark-gray);
    margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--black);
    background: var(--white);
    /* input fields stay white inside the card-bg form container */
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0;
    transition: border-color 0.3s var(--ease);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--mid-gray);
    font-weight: 300;
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}


/* ═══════════════════════════════════════════════
   ABOUT — Chi siamo + Contattaci
   ═══════════════════════════════════════════════ */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 1.2rem;
}

.about-text p {
    color: var(--mid-gray);
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.about-image-placeholder {
    aspect-ratio: 4/5;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mid-gray);
    font-size: 0.85rem;
    font-weight: 300;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--dark-gray);
    font-weight: 400;
}

.contact-info-list li svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 0.2rem;
}

.contact-info-list li strong {
    display: block;
    color: var(--black);
    margin-bottom: 0.2rem;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.map-placeholder {
    aspect-ratio: 16/9;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.4);
    font-size: 0.85rem;
    font-weight: 300;
}

/* Forza form nel contesto scuro About */
.section-dark .form-container {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.section-dark .form-container h3 {
    color: var(--white);
}

.section-dark .form-group label {
    color: rgba(255, 255, 255, 0.7);
}

.section-dark .form-group input,
.section-dark .form-group select,
.section-dark .form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.section-dark .form-group input::placeholder,
.section-dark .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.section-dark .form-group input:focus,
.section-dark .form-group select:focus,
.section-dark .form-group textarea:focus {
    border-color: var(--gold);
}


/* ═══════════════════════════════════════════════
   PARALLAX DIVIDER
   ═══════════════════════════════════════════════ */
.parallax-divider {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-divider .parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* ═══════════════════════════════════════════════
   FORMS (PRENOTAZIONI, CONTACT)
   ═══════════════════════════════════════════════ */
.search-container {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    background: var(--card-bg);
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

.search-container p {
    color: var(--mid-gray);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.search-box {
    display: flex;
    gap: 0;
}

.search-box input {
    flex: 1;
    padding: 1rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--black);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-right: none;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s var(--ease);
}

.search-box input:focus {
    border-color: var(--gold);
}

.search-box .btn {
    border-radius: 0;
}


/* ═══════════════════════════════════════════════
   FOOTER — Black, minimal columns
   ═══════════════════════════════════════════════ */
.footer {
    background: #1A1A1A;
    /* Darken footer to match provided image reference */
    color: rgba(255, 255, 255, 0.65);
    padding: 5rem 2rem 3rem;
    /* Added 3rem padding at the bottom so table isn't flush */

    /* Parallax effect properties */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    height: 500px;
    /* Fixed height for consistent reveal layout */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically now that bottom bar is gone */
}

.footer-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    /* Struttura: Link, Info, Logo Grande, Orari */
    grid-template-columns: 1fr 1fr 2fr 1.8fr;
    gap: 3rem;
    align-items: center;
    /* Allinea verticalmente al centro */
}

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

@media (max-width: 768px) {
    .footer {
        position: relative;
        height: auto;
        padding-top: 3rem;
        padding-bottom: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .footer-logo-wrapper .logo-cursive {
        font-size: 3.5rem !important;
    }

    .footer-logo-wrapper .logo-sub {
        font-size: 1rem !important;
    }
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
}

.footer-logo-wrapper {
    align-items: center;
}

.footer-logo-wrapper .logo-cursive {
    font-size: 5rem;
    margin-bottom: -10px;
}

.footer-logo-wrapper .logo-sub {
    font-size: 1.4rem;
    color: var(--white);
    padding-left: 0;
    letter-spacing: 0.3em;
}

.footer-desc {
    display: none;
    /* Hide the generic description to match reference */
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1.8rem;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s var(--ease);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-nav-link {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s var(--ease);
}

.footer-nav-link::before,
.footer-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gold);
    opacity: 0.4;
    transform-origin: right;
    transform: scaleX(1);
    transition: opacity 0.3s ease;
}

.footer-nav-link::after {
    bottom: 0;
}

.footer-nav-link::before {
    bottom: -3px;
}

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

.footer-nav-link:hover::before,
.footer-nav-link:hover::after {
    background-color: var(--gold);
    opacity: 1;
}

.footer-nav-link:hover::before {
    animation: slideRightRevealTop 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.footer-nav-link:hover::after {
    animation: slideRightRevealBottom 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideRightRevealTop {
    0% {
        transform-origin: right;
        transform: scaleX(1);
        opacity: 1;
    }

    25% {
        transform-origin: right;
        transform: scaleX(0);
        opacity: 0;
    }

    45% {
        transform-origin: left;
        transform: scaleX(0);
        opacity: 0;
    }

    70% {
        transform-origin: left;
        transform: scaleX(1);
        opacity: 1;
    }

    100% {
        transform-origin: left;
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes slideRightRevealBottom {
    0% {
        transform-origin: right;
        transform: scaleX(1);
        opacity: 1;
    }

    45% {
        transform-origin: right;
        transform: scaleX(0);
        opacity: 0;
    }

    46% {
        transform-origin: left;
        transform: scaleX(0);
        opacity: 0;
    }

    90% {
        transform-origin: left;
        transform: scaleX(1);
        opacity: 1;
    }

    100% {
        transform-origin: left;
        transform: scaleX(1);
        opacity: 1;
    }
}

/* ── Admin Table ─────────────────────────────────────────────────── */
.table-wrapper {
    overflow-x: auto;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--white);
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
}

.admin-table {
    width: 100%;
    min-width: 800px;
    /* Forces scroll on small screens instead of squishing */
    border-collapse: collapse;
    font-size: .88rem;
}

@media (max-width: 768px) {
    .admin-table-mobile {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        table-layout: auto;
    }
}

/* ── Footer Hours Table ────────────────────────────────────── */
.footer-hours-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 6px;
    font-size: .85rem;
    margin-top: 8px;
}

.footer-hours-table th {
    text-align: left;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding-bottom: 12px;
    font-weight: 600;
    border-bottom: 1px solid var(--border-light);
}

.footer-hours-table td {
    padding: 6px 4px;
    vertical-align: middle;
}

.footer-hours-table .day-col {
    color: var(--white);
    font-weight: 600;
    width: 40px;
}

.time-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    /* Slightly more visible on dark */
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 3px 10px;
    border-radius: 99px;
    color: var(--light-gray);
    font-size: .75rem;
    white-space: nowrap;
    transition: all 0.2s var(--ease);
}

.footer-hours-table tr:hover .time-pill {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.footer-closed-row .day-col {
    color: var(--mid-gray);
}

.badge-closed {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    color: var(--mid-gray);
    padding: 3px 12px;
    border-radius: 99px;
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 100%;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .footer-hours-table {
        margin: 0 auto;
        font-size: 0.75rem;
        border-spacing: 0 4px;
        width: 95%;
        max-width: 320px;
    }

    .time-pill {
        padding: 2px 8px;
        font-size: 0.7rem;
    }

    .footer-hours-table th {
        font-size: 0.75rem;
        padding-bottom: 8px;
    }

    .badge-closed {
        padding: 2px 8px;
        font-size: 0.7rem;
    }
}

@media (max-width: 400px) {
    .footer-hours-table {
        font-size: .75rem;
    }

    .time-pill {
        padding: 2px 6px;
        font-size: .7rem;
    }
}

.footer-contacts li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    padding: 1rem 0;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--white);
}

.footer-contacts li span {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.footer-contacts svg {
    display: none;
}




/* ═══════════════════════════════════════════════
   SHOP SECTION
   ═══════════════════════════════════════════════ */
.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    align-items: start;
}

.shop-sidebar {
    position: sticky;
    top: 100px;
}

.shop-sidebar h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--gold);
}

.shop-sidebar ul {
    list-style: none;
    padding: 0;
}

.shop-sidebar ul li {
    margin-bottom: 0.3rem;
}

.shop-sidebar ul li a {
    display: block;
    padding: 0.7rem 1rem;
    color: var(--mid-gray);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.2s var(--ease);
    text-decoration: none;
}

.shop-sidebar ul li a:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.shop-sidebar ul li a.active {
    color: var(--gold);
    font-weight: 700;
    background: rgba(212, 175, 55, 0.08);
    border-left: 3px solid var(--gold);
}

.product-count {
    color: var(--mid-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s var(--ease);
    cursor: default;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.product-img {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.product-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

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

.product-img-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(0, 0, 0, 0.15);
}

.product-info {
    padding: 1.2rem 1.5rem 1.5rem;
}

.product-category {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--mid-gray);
    line-height: 1.5;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.product-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--mid-gray);
}

.product-empty i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 1rem;
    display: block;
}

@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
    }

    .shop-sidebar ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .shop-sidebar ul li a {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 20px;
    }

    .shop-sidebar ul li a.active {
        border-color: var(--gold);
        border-left: 1px solid var(--gold);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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


/* ═══════════════════════════════════════════════
   FADE-IN ANIMATION (utility)
   ═══════════════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.7s var(--ease) both;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 768px) {
    .nav-toggle-label {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 340px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--navbar-h) + 2rem) 2.5rem 2rem;
        gap: 0;
        transition: right 0.35s var(--ease);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
    }

    .nav-toggle-checkbox:checked~.nav-menu {
        right: 0;
    }

    .nav-toggle-checkbox:checked~.nav-toggle-label .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle-checkbox:checked~.nav-toggle-label .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle-checkbox:checked~.nav-toggle-label .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .nav-link {
        padding: 0.9rem 0;
        width: 100%;
        font-size: 0.75rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 1.2rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s var(--ease);
    }

    .has-dropdown:hover .dropdown-menu,
    .has-dropdown:focus-within .dropdown-menu {
        max-height: 200px;
    }

    .dropdown-link {
        padding: 0.5rem 0;
        font-size: 0.7rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section {
        padding: 5rem 1.5rem;
    }
}

/* ── Mobile ── */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 1.2rem;
    }

    .hero {
        min-height: 550px;
        height: 85vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 0.9rem;
    }

    .hero-subtitle {
        font-size: 0.65rem;
        letter-spacing: 0.3em;
    }

    .section {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .search-box {
        flex-direction: column;
    }

    .search-box input {
        border-right: 1px solid rgba(0, 0, 0, 0.12);
    }
}

.footer-contacts li span {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.footer-contacts svg {
    display: none;
    /* Hide icons to match the text-based reference */
}


/* ═══════════════════════════════════════════════
   FADE-IN ANIMATION (utility)
   ═══════════════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.7s var(--ease) both;
}

/* ── Multi-Step Form ─────────────────────────────────────────────── */
.booking-progress-container {
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    padding: 0 1rem;
}

.progress-bar-bg {
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gold);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-steps-labels {
    display: flex;
    justify-content: space-between;
}

.step-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--mid-gray);
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.multi-step-form {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 450px;
}

.booking-step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.booking-step.active {
    opacity: 1;
    transform: translateY(0);
}

.step-content-box {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    margin: 0 auto;
}

.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.summary-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    padding: 24px;
    margin: 20px auto;
    max-width: 400px;
    text-align: left;
}

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

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

.summary-label {
    color: var(--mid-gray);
    font-size: 0.9rem;
}

.summary-item strong {
    color: var(--black);
    font-size: 1rem;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 768px) {
    .nav-toggle-label {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 45%;
        max-width: none;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--navbar-h) + 2rem) 2.5rem 2rem;
        gap: 0;
        transition: right 0.35s var(--ease);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
    }

    .nav-toggle-checkbox:checked~.nav-menu {
        right: 0;
    }

    .nav-toggle-checkbox:checked~.nav-toggle-label .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle-checkbox:checked~.nav-toggle-label .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle-checkbox:checked~.nav-toggle-label .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 0.9rem 0;
        width: 100%;
        font-size: 0.75rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 1.2rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s var(--ease);
    }

    .has-dropdown:hover .dropdown-menu,
    .has-dropdown:focus-within .dropdown-menu,
    .has-dropdown.active .dropdown-menu {
        max-height: 300px;
        transform: none !important;
    }

    .has-dropdown:hover .dropdown-arrow,
    .has-dropdown:focus-within .dropdown-arrow,
    .has-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-link {
        padding: 0.5rem 0;
        font-size: 0.7rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section {
        padding: 5rem 1.5rem;
    }
}

/* ── Mobile ── */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 1.2rem;
    }

    .hero {
        min-height: 550px;
        height: 85vh;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .section {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .search-box {
        flex-direction: column;
    }

    .search-box input {
        border-right: 1px solid rgba(0, 0, 0, 0.12);
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }

    .parallax-section,
    .parallax-divider {
        background-attachment: scroll !important;
        /* iOS fix */
        background-size: cover !important;
        background-position: center !important;
    }
}

/* ── Calendar ────────────────────────────────────────────────────── */
.booking-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}

.calendar-panel {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 28px;
}

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

.calendar-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--black);
}

.cal-nav {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--black);
    width: 36px;
    height: 36px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

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

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

.cal-day-name {
    text-align: center;
    font-size: .75rem;
    font-weight: 600;
    color: var(--mid-gray);
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 4px 0 8px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.cal-empty {
    background: transparent;
}

.cal-disabled {
    color: rgba(0, 0, 0, 0.3);
    opacity: .35;
}

.cal-available {
    background: rgba(22, 163, 74, .12);
    color: #4ade80;
    cursor: pointer;
    border: 1px solid rgba(22, 163, 74, .2);
}

.cal-available:hover {
    background: rgba(22, 163, 74, .22);
    transform: scale(1.08);
}

.cal-almost {
    background: rgba(245, 158, 11, .12);
    color: #fbbf24;
    cursor: pointer;
    border: 1px solid rgba(245, 158, 11, .2);
}

.cal-almost:hover {
    background: rgba(245, 158, 11, .22);
    transform: scale(1.08);
}

.cal-full {
    background: rgba(220, 38, 38, .1);
    color: #f87171;
    cursor: not-allowed;
    border: 1px solid rgba(220, 38, 38, .15);
    opacity: .6;
}

.cal-selected {
    outline: 2px solid var(--gold) !important;
    outline-offset: 1px;
    transform: scale(1.08);
}

.calendar-legend {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--mid-gray);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-available {
    background: #4ade80;
}

.dot-almost {
    background: #fbbf24;
}

.dot-full {
    background: #f87171;
}

/* ── Slot Picker ─────────────────────────────────────────────────── */
.booking-form-panel {
    min-height: 300px;
}

.slot-picker h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.slot-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.slot-btn {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--black);
    padding: 12px 16px;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.slot-btn:hover {
    border-color: var(--gold);
    background: var(--gold-light);
    color: var(--gold);
    transform: translateY(-1px);
}

.booking-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: var(--card-bg);
    border: 1px dashed rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    color: var(--mid-gray);
    font-size: .95rem;
}

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

/* ── Back to Top Button (Azzurro) ────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4DBBE6;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btt-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
}

.btt-circle-inner,
.btt-circle-outer {
    fill: none;
    stroke: #4DBBE6;
    stroke-width: 2.5;
}

.btt-circle-inner {
    stroke-opacity: 0.2;
}

.btt-circle-outer {
    stroke-dasharray: 290;
    stroke-dashoffset: 290;
    stroke-opacity: 1;
    transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top:hover .btt-circle-outer {
    stroke-dashoffset: 0;
}

.back-to-top:hover {
    color: #7AD0F0;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(77, 187, 230, 0.15);
}

.btt-icon {
    width: 24px;
    height: 24px;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top:hover .btt-icon {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }

    .btt-circle-outer {
        stroke-dashoffset: 0;
        stroke-opacity: 0.5;
    }
}