/* Stili di base */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

.container {
    max-width: 1860px;
    margin: 0 auto;
    padding: 20px;
}

.container-pricelist {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* Header e Navigazione */
header {
    background-color: #fff;
    padding: 4px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
    backdrop-filter: saturate(100%) blur(0px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 4px;
    padding-bottom: 4px;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

header .brand-logo {
    height: 80px !important;
    width: auto;
    display: block;
    transition: height 220ms ease;
}

/* Stato ridotto allo scroll */
header.shrink {
    padding: 2px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    backdrop-filter: saturate(120%) blur(6px);
}

header.shrink .brand-logo {
    height: 60px !important;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #d197e4;
}

/* Book appointment button in nav */
nav ul li a.nav-book-btn {
    background: linear-gradient(135deg, #b565a7 0%, #d197cc 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    transition: transform 0.2s, box-shadow 0.2s;
}

nav ul li a.nav-book-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(181, 101, 167, 0.3);
}

/* Toggle/hamburger base */
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    width: 40px;
    height: 32px;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
}

.nav-toggle-bar {
    display: block;
    position: absolute;
    left: 7px;
    right: 7px;
    height: 2px;
    background: #111;
    transition: transform 220ms ease, opacity 220ms ease, background 220ms ease;
}

.nav-toggle-bar:nth-child(1) { top: 9px; }
.nav-toggle-bar:nth-child(2) { top: 15px; }
.nav-toggle-bar:nth-child(3) { top: 21px; }

/* Migliora contrasto hamburger su sfondo vario */
header .nav-toggle {
    border-radius: 6px;
    padding: 6px;
}
header.shrink .nav-toggle-bar {
    background: #111;
}

/* Sezioni del sito */
section {
    padding: 60px 0;
    text-align: center;
}

.hero {
    background-color: #f8f8f8;
    /* Sfondo immagine */
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
    padding: 120px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero h2 {
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 10px;
}

/* Overlay per migliorare contrasto testo su immagine */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* Mobile: immagine e dimensioni ottimizzate */
@media (max-width: 768px) {
    .hero {
        background-image: url('images/hero-mobile.jpg');
        background-position: center;
        padding: 80px 0;
        min-height: 60vh;
    }

    .hero h2 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    /* Mobile header: titolo su una riga e hamburger visibile */
    header .brand-logo {
        white-space: nowrap;
        height: 96px !important;
    }

    header.shrink .brand-logo {
        height: 64px !important;
    }

    .nav-toggle {
        display: inline-flex;
        background: transparent;
    }

    header .nav ul {
        flex-direction: column;
        gap: 12px;
    }

    header .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 8px rgba(0,0,0,0.08);
        display: none;
        padding: 12px 20px;
        transform-origin: top;
        transform: scaleY(0.98);
        opacity: 0;
        transition: opacity 180ms ease, transform 180ms ease;
    }

    header .nav.open {
        display: block;
        transform: scaleY(1);
        opacity: 1;
    }

    /* Mobile only: Prenota Ora button - simple pink text */
    nav ul li a.nav-book-btn {
        background: none;
        color: #b565a7;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
    }

    nav ul li a.nav-book-btn:hover {
        color: #d197cc;
        transform: none;
        box-shadow: none;
    }

    /* Animazione hamburger -> X quando aria-expanded=true */
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.cta-button {
    display: inline-block;
    background-color: #b565a7;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

/* ===== SEZIONE SERVIZI - NUOVO STILE ===== */
.services {
    padding: 0;
}

.services-header {
    background: linear-gradient(135deg, #c9a063 0%, #d4b28c 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    animation: parallax 20s infinite linear;
}

@keyframes parallax {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50px); }
}

.services-header h3 {
    color: #fff;
    font-size: 2.5em;
    margin: 0;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

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

/* Desktop Cards */
.services-cards-desktop {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    padding: 60px 20px;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 350px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.service-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: filter 0.4s ease;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 2;
}

.service-card h4 {
    color: #fff;
    font-size: 1.8em;
    margin: 0 0 20px 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transition: opacity 0.4s ease;
}

.service-card-button {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.service-card:hover .service-card-image {
    filter: blur(5px) brightness(0.7);
}

.service-card:hover h4 {
    opacity: 1;
}

.service-card:hover .service-card-button {
    opacity: 1;
    transform: translateY(0);
}

.service-card-button:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Mobile Accordion */
.services-accordion-mobile {
    display: none;
    padding: 20px;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

.accordion-header {
    width: 100%;
    padding: 18px 20px;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #f8f8f8;
}

.accordion-title {
    flex: 1;
    text-align: left;
}

.accordion-arrow {
    font-size: 1.2em;
    font-weight: bold;
    color: #c9a063;
    transition: transform 0.3s ease;
    display: inline-block;
}

.accordion-header[aria-expanded="true"] .accordion-arrow {
    transform: rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
    background: #fafafa;
}

.accordion-content.open {
    max-height: 300px;
    padding: 20px;
}

.accordion-content p {
    margin: 0 0 15px 0;
    color: #666;
    line-height: 1.6;
}

.accordion-link {
    display: inline-block;
    color: #c9a063;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.accordion-link:hover {
    color: #d4b28c;
    text-decoration: underline;
}

/* Pricelist pages styles */
.pricelist-page {
    padding: 80px 0;
    min-height: 60vh;
}

.pricelist-page h1 {
    color: #c9a063;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
}

.pricelist-page h3 {
    color: #333;
    margin: 40px 0 20px 0;
    font-size: 1.8em;
}

.pricelist-page .beauty-section,
.pricelist-page .nails-section,
.pricelist-page .massage-section {
    margin-bottom: 40px;
}

.service-description {
    display: block;
    color: #666;
    margin-top: 10px;
    font-size: 0.95em;
    line-height: 1.5;
    text-align: center;
}

.back-link {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* Grid servizi per pricelist pages */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-grid-pricelist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80%, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.service-header{
    text-align: left;
}

.service-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-box:hover {
    border-color: #c9a063;
    box-shadow: 0 4px 12px rgba(201, 160, 99, 0.2);
}

.service-name {
    font-weight: 500;
    color: #333;
    flex: 1;
    text-align: left;
}

.service-price {
    color: #c9a063;
    font-weight: 700;
    font-size: 1.1em;
    margin-left: 15px;
}

.service-note {
    display: block;
    font-size: 0.85em;
    color: #666;
    font-style: italic;
    margin-top: 5px;
    width: 100%;
}

/* Estetica di Base */
.beauty-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.beauty-section h5 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

/* Mani e Piedi */
.nails-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.nails-section h5 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

/* Massaggi */
.massage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.massage-section h5 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.highlight-box {
    background: linear-gradient(135deg, #c9a063 0%, #d4b28c 100%);
    color: #fff;
}

.highlight-box .service-name,
.highlight-box .service-price {
    color: #fff;
}

/* Estetica Avanzata */
.advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advanced-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 200px;
    border: 2px solid #c9a063;
}

.advanced-card:hover {
    box-shadow: 0 4px 16px rgba(201, 160, 99, 0.3);
    transform: translateY(-3px);
}

.advanced-card h5 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.3em;
    text-align: center;
}

.advanced-card .service-price {
    color: #c9a063;
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Offerte speciali */
.service-offer {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(201, 160, 99, 0.1) 0%, rgba(212, 178, 140, 0.1) 100%);
    border-radius: 10px;
    border: 2px dashed #c9a063;
}

.service-offer h5 {
    font-size: 1.5em;
    color: #c9a063;
    margin-bottom: 20px;
    text-align: center;
}

.offer-box {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 992px) {
    .beauty-grid,
    .nails-grid,
    .massage-grid {
        grid-template-columns: 1fr;
    }
    
    .service-grid-2col {
        grid-template-columns: 1fr;
    }
    
    .services-header {
        padding: 40px 20px;
    }
    
    .services-header h3 {
        font-size: 2em;
    }
    
    .pricelist-page h1 {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    /* Hide desktop cards, show mobile accordion */
    .services-cards-desktop {
        display: none;
    }
    
    .services-accordion-mobile {
        display: block;
    }
    
    .services-header {
        padding: 30px 20px;
    }
    
    .services-header h3 {
        font-size: 1.8em;
    }
}

.contact h3 {
    color: #b565a7;
}

/* Sezione Team */
.team-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.team-section h3 {
    text-align: center;
    color: #b565a7;
    margin-bottom: 40px;
    font-size: 2em;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1860px;
    margin: 0 auto;
}

.team-card {
    perspective: 1000px;
    height: 450px;
    width: 100%;
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    transform-origin: center center;
}

.team-card:hover .team-card-inner {
    transform: rotateY(180deg);
}

.alessia-img {
    /* Imposta le dimensioni della card */
    width: 300px; /* Esempio, usa le tue dimensioni reali */
    height: 400px; /* Esempio, usa le tue dimensioni reali */
    
    /* Imposta l'immagine per schermi grandi (Desktop) */
    background-image: url('images/gallery/alessia-staff.png');
    background-size: cover; /* Assicura che l'immagine copra l'area */
    background-position: center;
}

/* 📱 Stili Mobile */
@media screen and (max-width: 768px) {
    .alessia-img {
        /* Sovrascrivi l'immagine con quella per schermi piccoli (Mobile) */
        background-image: url('images/gallery/alessia-staff-mobile.png');
        /* Mantieni background-size: cover; e background-position: center;
           se sono gli stessi, altrimenti puoi riscriverli qui. */
    }
}

.team-card-front,
.team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform-style: preserve-3d;
}

.team-card-front {
    background-color: #fff;
}

.team-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card-back {
    background-color: #f5f5f5;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.team-card-back h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.5em;
    font-weight: 700;
}

.team-card-back p {
    margin: 0;
    color: #666;
    font-size: 1.1em;
    font-style: italic;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px; /* 30% narrower than 500px (350 = 500 * 0.7) */
        gap: 20px;
    }
    
    .team-card {
        height: 450px;
    }
}

.contact form {
    max-width: 500px;
    margin: 20px auto 0;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact label {
    margin-top: 10px;
    font-weight: bold;
}

.contact input, .contact textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    margin-top: 20px;
    padding: 12px;
    background-color: #b565a7;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Mappa a tutta larghezza */
.map-section {
    width: 100%;
    padding: 0;
}

.map-embed {
    border: 0;
    width: 100%;
    height: 420px;
    display: block;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.social-links a {
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    transition: background 0.3s;
}

.social-links a:hover {
    background: rgba(255,255,255,0.22);
}

/* Floating WhatsApp button */
.whatsapp-fab {
    position: fixed !important; /* forza il comportamento floating su desktop */
    right: 20px;
    bottom: 20px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
    z-index: 2147483647; /* oltre eventuali overlay */
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.whatsapp-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.24);
    background: #21be5a;
}

.whatsapp-fab svg {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
}

@media (max-width: 768px) {
    .whatsapp-fab {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
}

/* Slider Gallery */
.gallery-section h2 {
    color: #b565a7;
}

.gallery-intro {
    max-width: 760px;
    margin: 0 auto 16px;
    color: #555;
}

/* Desktop: Collage Grid Layout */
@media (min-width: 769px) {
    .slider {
        position: relative;
        overflow: visible;
        border-radius: 0;
        box-shadow: none;
        margin-top: 20px;
        max-height: none;
        height: auto;
    }

    .slides {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 16px;
        grid-auto-flow: dense;
        transition: none;
        transform: none !important;
    }

    .slide {
        min-width: auto;
        user-select: none;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .slide:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    }

    /* Varied sizing for collage effect */
    .slide:nth-child(3n+1) {
        grid-column: span 1;
    }

    .slide:nth-child(5n+2) {
        grid-column: span 2;
    }

    .slide:nth-child(7n+3) {
        grid-row: span 2;
    }

    .slide img {
        width: 100%;
        height: 100%;
        min-height: 250px;
        max-height: 500px;
        object-fit: cover;
        display: block;
    }

    .slide video {
        width: 100%;
        height: 100%;
        min-height: 250px;
        max-height: 500px;
        object-fit: cover;
        display: block;
        background: #000;
    }

    /* Hide slider controls on desktop */
    .slider-btn {
        display: none;
    }
}

/* Mobile: Slider Layout */
@media (max-width: 768px) {
    .slider {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        margin-top: 20px;
        transition: height 300ms ease;
        max-height: 80vh;
    }

    .slides {
        display: flex;
        transition: transform 0.5s ease;
    }

    .slide {
        min-width: 100%;
        user-select: none;
    }

    .slide img {
        width: 100%;
        height: auto;
        max-height: 80vh;
        object-fit: contain;
        display: block;
    }

    .slide video {
        width: 100%;
        height: auto;
        max-height: 80vh;
        object-fit: contain;
        display: block;
        background: #000;
    }

    .slider-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
}

/* Contatti + Orari (+ immagine) - Stile Pianeta Donna */
.contact-hours {
    background: #fff;
    padding: 0 !important;
    text-align: left;
}

.contact-hours .container {
    max-width: 100%;
    padding: 0;
    width: 100%;
}

.ch-grid {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    margin: 0;
    width: 100%;
    position: relative;
    min-height: 450px;
}

.ch-card {
    background: transparent;
    text-align: left;
    padding: 60px 20px 30px 27px;
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.ch-card:first-child {
    border-right: 1px solid #ececf3;
}

.ch-card h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.25em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ch-card p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.ch-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #333;
    color: #fff;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 4px;
    border: none;
    font-size: 1em;
    font-weight: 600;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 280px;
    box-sizing: border-box;
}

.btn:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transform: translateY(-2px);
}

.btn.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #333;
    box-shadow: none;
    padding: 12px 20px;
    font-size: 0.9em;
}

.btn.btn-outline:hover {
    background: #333;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #333;
    font-size: 1em;
    line-height: 1.6;
    border-bottom: none;
}

.ch-book {
    display: inline-block;
    margin-top: 20px;
    color: #b565a7;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
}

.ch-book:hover {
    text-decoration: underline;
}

/* Sfondo unico per tutte e tre le colonne */
.ch-grid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

@media (max-width: 1200px) {
    .ch-card {
        flex: 1;
    }
}

@media (max-width: 992px) {
    .contact-hours .container {
        padding-left: 0;
        padding-right: 0;
    }
    .contact-hours {
        text-align: left;
        background: #fff;
    }
    .ch-grid {
        flex-direction: column;
    }
    .ch-grid::before {
        width: auto;
        left: 0;
        right: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }
    .ch-card {
        flex: 1 1 100% !important;
        padding: 24px 20px;
        width: 100%;
        box-sizing: border-box;
    }
    .ch-card:first-child {
        border-right: 0;
        border-bottom: 1px solid #ececf3;
        padding-bottom: 20px;
    }
    .ch-actions {
        width: 100%;
        box-sizing: border-box;
    }
    .btn {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    .hours-list {
        padding: 0;
        margin: 0 16px;
        width: calc(100% - 32px);
        box-sizing: border-box;
    }
}
/* RIMOZIONE layout 2 colonne utente: ripristino versione precedente */