/* ========================================
   Toelettatura Malù — Barber Dog
   Bottega Artigianale — Premium Artisanal
   ======================================== */

:root {
    /* Core palette — warm browns + teal accent */
    --brown-900: #2A1A12;
    --brown-800: #3E2723;
    --brown-700: #4E342E;
    --brown-600: #5D4037;
    --brown-500: #6D4C41;
    --brown-400: #8D6E63;
    --brown-300: #A1887F;
    --brown-200: #BCAAA4;
    --brown-100: #D7CCC8;

    --teal-700: #3D7A7A;
    --teal-600: #4A8E8E;
    --teal-500: #5B9E9E;
    --teal-400: #74B3B3;
    --teal-300: #93C9C9;
    --teal-200: #B5DADA;
    --teal-100: #DBF0F0;
    --teal-50:  #EFF9F9;

    --parchment:      #F5EDE0;
    --parchment-dark:  #EDE4D3;
    --parchment-deep: #E2D5C3;
    --card-bg:        #FFFDF9;

    --warm-50:  #FAF8F5;
    --warm-100: #F3F0EB;
    --warm-200: #E8E2D9;
    --warm-300: #D4CCC0;
    --warm-400: #A8A29E;
    --warm-500: #78716C;
    --warm-600: #57534E;
    --warm-700: #44403C;
    --warm-800: #292524;
    --warm-900: #1C1917;

    --caramel: #D4A574;
    --rose:    #C17B7B;
    --sky:     #7DAFCE;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(62,39,35,0.05);
    --shadow-md: 0 4px 16px rgba(62,39,35,0.08);
    --shadow-lg: 0 12px 40px rgba(62,39,35,0.1);
    --shadow-xl: 0 24px 60px rgba(62,39,35,0.14);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--parchment);
    color: var(--warm-700);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Parchment grain texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 237, 224, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    border-bottom-color: var(--warm-200);
    box-shadow: 0 2px 20px rgba(62,39,35,0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-logo img {
    height: 52px;
    width: auto;
    border-radius: 6px;
    transition: transform 0.4s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--warm-600);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-500);
    transition: var(--transition);
    border-radius: 1px;
}

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

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

.nav-cta {
    padding: 10px 24px;
    background: var(--brown-800);
    color: var(--parchment);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 3px 0 var(--brown-900);
}

.nav-cta:hover {
    background: var(--brown-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 0 var(--brown-900), var(--shadow-md);
}

.nav-cta:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 var(--brown-900);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--brown-800);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
    padding-bottom: 80px;
}

/* Wave separator at bottom of hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,80 L0,80 Z' fill='%23F5EDE0'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: 100% 100%;
    z-index: 2;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, var(--teal-100) 0%, transparent 70%);
    animation: shapeFloat 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(212,165,116,0.18) 0%, transparent 70%);
    animation: shapeFloat 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 40%;
    background: radial-gradient(circle, rgba(91,158,158,0.1) 0%, transparent 70%);
    animation: shapeFloat 18s ease-in-out infinite 5s;
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -15px); }
    66% { transform: translate(-10px, 10px); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    padding: 6px 16px;
    background: var(--teal-100);
    color: var(--teal-700);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
    border: 1px solid var(--teal-200);
    animation: fadeInDown 0.6s ease both;
}

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

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--brown-800);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    animation: fadeInUp 0.7s ease both 0.1s;
}

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

.hero-content h1 em {
    color: var(--teal-600);
    font-style: italic;
    position: relative;
}

/* Decorative underline on hero em */
.hero-content h1 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--caramel);
    opacity: 0.5;
    border-radius: 2px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--warm-500);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 32px;
    animation: fadeInUp 0.7s ease both 0.2s;
}

.hero-phone {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    animation: fadeInUp 0.7s ease both 0.25s;
}

.hero-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brown-800);
    text-decoration: none;
    padding: 10px 20px;
    background: var(--teal-50);
    border: 2px solid var(--teal-300);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.hero-phone-link:hover {
    background: var(--teal-100);
    border-color: var(--teal-500);
}

.hero-phone-link svg {
    color: var(--teal-600);
    flex-shrink: 0;
}

.hero-wa-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: #25D366;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: var(--transition);
}

.hero-wa-link:hover {
    background: #1ebe57;
}

.hero-wa-link svg {
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
    animation: fadeInUp 0.7s ease both 0.3s;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--brown-800);
    color: var(--parchment);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 0 var(--brown-900), 0 8px 24px rgba(62,39,35,0.15);
    position: relative;
}

.btn-hero-primary:hover {
    background: var(--brown-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--brown-900), 0 12px 32px rgba(62,39,35,0.25);
}

.btn-hero-primary:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 var(--brown-900), 0 4px 12px rgba(62,39,35,0.15);
}

.btn-hero-secondary {
    padding: 14px 28px;
    color: var(--warm-700);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--warm-200);
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    border-color: var(--teal-400);
    color: var(--teal-700);
    background: var(--teal-50);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--warm-500);
    animation: fadeInUp 0.7s ease both 0.4s;
}

.trust-stars {
    color: var(--caramel);
    font-size: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(212,165,116,0.3);
}

/* Hero Visual — Photo */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    animation: fadeInUp 0.8s ease both 0.3s;
}

.hero-photo {
    width: 100%;
    max-width: 420px;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(62,39,35,0.18), 0 0 0 4px rgba(255,255,255,0.5);
    border: none;
    transform: rotate(2deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-photo:hover {
    transform: rotate(0deg) scale(1.03);
}

/* Floating accent cards over hero photo */
.hero-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--warm-100);
}

.hero-card-main {
    display: none;
}

.hero-card-float {
    position: absolute;
    padding: 16px 22px;
    text-align: center;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(8px);
    background: rgba(255,253,249,0.92);
}

.hero-card-1 {
    top: 10px;
    right: -10px;
    animation-delay: 0s;
}

.hero-card-2 {
    bottom: 30px;
    left: -10px;
    animation-delay: 3s;
}

.float-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--teal-600);
    display: block;
}

.float-label {
    font-size: 0.75rem;
    color: var(--warm-500);
}

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

/* Paw decorations */
.paw-deco {
    position: absolute;
    pointer-events: none;
}

.paw-deco svg {
    fill: var(--brown-300);
}

.paw-1 {
    bottom: 10%;
    right: 5%;
    width: 120px;
    transform: rotate(20deg);
    animation: pawFade 8s ease-in-out infinite;
}

.paw-2 {
    top: 20%;
    left: 3%;
    width: 80px;
    transform: rotate(-30deg);
    animation: pawFade 8s ease-in-out infinite 4s;
}

@keyframes pawFade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background: var(--parchment-dark);
}

/* Scissors divider between sections */
.section::before {
    content: '✂ · · · · · · · · · · · · · · · · · · · · ·';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 0.75rem;
    color: var(--warm-300);
    letter-spacing: 3px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 3;
}

/* No divider on the first section after hero */
#servizi::before {
    content: none;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-flex;
    padding: 5px 14px;
    background: var(--teal-100);
    color: var(--teal-700);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid var(--teal-200);
}

.section-header h2,
.about-content h2,
.contact-info h2,
.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--brown-800);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-header h2 em,
.about-content h2 em,
.contact-info h2 em,
.cta-content h2 em {
    color: var(--teal-600);
    font-style: italic;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--warm-500);
    line-height: 1.6;
}

/* ===== PROMO BAND ===== */
.promo-band {
    background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
    color: #fff;
    padding: 14px 0;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 999;
    overflow: hidden;
}

.promo-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(120deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 20px);
}

.promo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.promo-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-icon svg {
    color: #fff;
}

.promo-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin: 0 0 4px;
    font-weight: 600;
}

.promo-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.92;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    border: 1px solid var(--warm-200);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-400), var(--teal-300));
    opacity: 0;
    transition: var(--transition);
}

/* Subtle gradient overlay on hover */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(91,158,158,0.04) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.service-card:hover {
    animation: droplet 0.6s ease forwards;
    box-shadow: 0 16px 40px rgba(62,39,35,0.1), 0 0 0 1px var(--teal-200);
    border-color: var(--teal-200);
}

@keyframes droplet {
    0%   { transform: scale(1) translateY(0); }
    20%  { transform: scale(1.04, 0.96) translateY(2px); }
    40%  { transform: scale(0.97, 1.04) translateY(-8px); }
    60%  { transform: scale(1.02, 0.98) translateY(-4px); }
    80%  { transform: scale(0.99, 1.01) translateY(-6px); }
    100% { transform: scale(1) translateY(-6px); }
}

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

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

.service-card.featured {
    background: var(--brown-800);
    border-color: var(--brown-800);
    color: white;
    background-image: linear-gradient(135deg, var(--brown-800) 0%, var(--brown-700) 50%, var(--brown-800) 100%);
}

.service-card.featured::before {
    background: linear-gradient(90deg, var(--caramel), #E8BF8E);
    opacity: 1;
}

.service-card.featured::after {
    background: radial-gradient(ellipse at bottom left, rgba(212,165,116,0.08) 0%, transparent 60%);
    opacity: 1;
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: rgba(212,165,116,0.25);
    color: var(--caramel);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    color: var(--teal-600);
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(239,249,249,0.96) 0%, rgba(219,240,240,0.72) 100%);
    border: 1px solid rgba(116,179,179,0.24);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-2px) scale(1.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 10px 20px rgba(91,158,158,0.12);
    border-color: rgba(91,158,158,0.34);
}

.service-card.featured .service-icon {
    color: #DDF4F4;
    background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
    border-color: rgba(255,255,255,0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.service-icon svg {
    width: 38px;
    height: 38px;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--brown-800);
    position: relative;
    z-index: 1;
}

.service-card.featured h3 {
    color: white;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--warm-500);
    position: relative;
    z-index: 1;
}

.service-card.featured p {
    color: var(--brown-200);
}

/* ===== ABOUT ===== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-card-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-stat-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    border: 1px solid var(--warm-200);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-stat-card:hover {
    transform: translateY(-4px) rotate(-1deg);
    box-shadow: var(--shadow-md);
}

.about-stat-card.accent {
    background: var(--brown-800);
    background-image: linear-gradient(135deg, var(--brown-800) 0%, var(--brown-700) 100%);
    color: white;
    border-color: var(--brown-800);
    grid-column: 1 / -1;
}

.about-stat-card.warm {
    background: var(--caramel);
    background-image: linear-gradient(135deg, var(--caramel) 0%, #E0B88A 100%);
    border-color: var(--caramel);
    grid-column: 1 / -1;
}

.about-stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-stat-card.accent .about-stat-num {
    color: white;
}

.about-stat-label {
    font-size: 0.85rem;
    color: var(--warm-500);
    line-height: 1.3;
}

.about-stat-card.accent .about-stat-label {
    color: var(--brown-200);
}

.about-stat-card.warm .about-stat-label {
    color: var(--brown-900);
}

.about-content .section-tag {
    display: inline-flex;
}

/* Decorative drop cap for first paragraph */
.about-content p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    float: left;
    color: var(--teal-600);
    line-height: 0.8;
    margin: 4px 10px 0 0;
    padding-top: 4px;
}

.about-content p {
    font-size: 1rem;
    color: var(--warm-500);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateX(4px);
}

.feature-check {
    width: 28px;
    height: 28px;
    background: var(--teal-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-600);
    flex-shrink: 0;
    transition: var(--transition);
}

.about-feature:hover .feature-check {
    background: var(--teal-500);
    color: white;
    transform: scale(1.1);
}

.feature-check svg {
    width: 14px;
    height: 14px;
}

.about-feature span {
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--warm-700);
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

/* Gallery overlay with pet name on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42,26,18,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: var(--radius-lg);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item.large {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--warm-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--warm-300);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-placeholder:hover {
    background: var(--teal-50);
    color: var(--teal-400);
}

.gallery-placeholder svg {
    width: 48px;
    height: 48px;
}

.gallery-placeholder span {
    font-size: 0.82rem;
    font-weight: 500;
}

/* ===== PRICING / LISTINO TABLE ===== */
.pricing-grid {
    /* Container — no longer a CSS grid of cards */
}

.listino-wrap {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--warm-200);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.listino-scroll-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--teal-50);
    color: var(--teal-700);
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    transition: opacity 0.3s;
}

.listino-overflow {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--warm-300) transparent;
}
.listino-overflow::-webkit-scrollbar { height: 6px; }
.listino-overflow::-webkit-scrollbar-track { background: transparent; }
.listino-overflow::-webkit-scrollbar-thumb { background: var(--warm-300); border-radius: 3px; }

.listino-table {
    width: 100%;
    min-width: 640px;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.92rem;
}

/* Header */
.listino-th-service,
.listino-th-taglia {
    padding: 20px 16px 16px;
    text-align: center;
    vertical-align: bottom;
    border-bottom: 2px solid var(--brown-800);
    background: linear-gradient(to bottom, var(--parchment-dark) 0%, var(--card-bg) 100%);
    position: sticky;
    top: 0;
    z-index: 1;
}
.listino-th-service {
    text-align: left;
    padding-left: 28px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--warm-400);
    min-width: 180px;
    position: sticky;
    left: 0;
    z-index: 2;
}

.listino-taglia-nome {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brown-800);
    line-height: 1.2;
}
.listino-taglia-desc {
    display: block;
    font-size: 0.78rem;
    color: var(--warm-400);
    font-weight: 400;
    margin-top: 2px;
}

/* Body rows */
.listino-row {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: var(--row-delay, 0ms);
}
.listino-row-in {
    opacity: 1;
    transform: translateY(0);
}

.listino-td-service {
    padding: 14px 16px 14px 28px;
    font-weight: 500;
    color: var(--warm-700);
    white-space: nowrap;
    border-bottom: 1px solid var(--warm-100);
    position: sticky;
    left: 0;
    background: var(--card-bg);
    z-index: 1;
}

.listino-row:last-child .listino-td-service,
.listino-row:last-child .listino-td-price {
    border-bottom: none;
}

.listino-row:hover .listino-td-service,
.listino-row:hover .listino-td-price {
    background: var(--teal-50);
}

.listino-td-price {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid var(--warm-100);
    background: var(--card-bg);
    transition: background 0.15s;
}

.listino-euro {
    font-weight: 700;
    color: var(--brown-800);
    font-size: 0.95rem;
    font-variant-numeric: tabular-nums;
}
.listino-na {
    color: var(--warm-300);
    font-size: 0.9rem;
}

/* Gatto section */
.listino-gatto {
    margin-top: 32px;
    padding: 24px;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--warm-200);
}

.listino-gatto-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brown-800);
    margin: 0 0 16px;
}

.listino-gatto-title svg {
    color: var(--teal-500);
}

.listino-gatto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.listino-gatto-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    background: var(--warm-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--warm-100);
}

.listino-gatto-servizio {
    font-weight: 600;
    color: var(--brown-700);
    font-size: 0.95rem;
}

.listino-gatto-note {
    font-size: 0.82rem;
    color: var(--warm-500);
    font-style: italic;
}

/* Disclaimer nota prezzi */
/* ===== MOBILE PRICING CUBE ===== */
.listino-cube-wrap {
    display: none;
}

@media (max-width: 768px) {
    .listino-cube-wrap {
        display: block;
    }
}

.listino-cube-viewport {
    perspective: 1000px;
    height: 340px;
    overflow: hidden;
    position: relative;
}

.listino-cube-spinner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.listino-cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--warm-200);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.listino-cube-taglia {
    text-align: center;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--brown-800);
}

.listino-cube-taglia-nome {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--brown-800);
}

.listino-cube-taglia-desc {
    display: block;
    font-size: 0.78rem;
    color: var(--warm-400);
    margin-top: 2px;
}

.listino-cube-prezzi {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.listino-cube-prezzi::-webkit-scrollbar {
    display: none;
}

.listino-cube-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 4px;
    border-bottom: 1px solid var(--warm-100);
}

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

.listino-cube-servizio {
    font-size: 0.88rem;
    color: var(--warm-600);
    font-weight: 500;
}

.listino-cube-prezzo {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brown-800);
}

.listino-cube-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.listino-cube-dot {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--warm-200);
    background: var(--card-bg);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--warm-500);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.listino-cube-dot.active {
    background: var(--brown-800);
    color: var(--parchment);
    border-color: var(--brown-800);
}

/* Tap hint on cube */
.listino-cube-viewport::after {
    content: 'Tocca per espandere';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.72rem;
    color: var(--warm-400);
    pointer-events: none;
    opacity: 0.7;
}

/* ===== EXPLODED VIEW ===== */
.listino-exploded {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.listino-exploded.visible {
    opacity: 1;
    transform: scale(1);
}

.listino-exploded-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--warm-200);
    padding: 24px 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: explode-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes explode-in {
    0% { transform: scale(0.6) rotateX(30deg); opacity: 0; }
    50% { transform: scale(1.03) rotateX(-2deg); }
    100% { transform: scale(1) rotateX(0); opacity: 1; }
}

.listino-exploded-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--warm-400);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s, transform 0.2s;
}

.listino-exploded-close:hover {
    color: var(--brown-800);
    transform: scale(1.2);
}

.listino-exploded-prezzi {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 60vh;
    overflow-y: auto;
}

.listino-exploded-prezzi .listino-cube-row {
    padding: 10px 4px;
}

.listino-exploded-prezzi .listino-cube-prezzo {
    font-size: 1.15rem;
}

.listino-exploded-note {
    display: block;
    font-size: 0.72rem;
    color: var(--warm-400);
    font-style: italic;
    margin-top: 2px;
}

.listino-disclaimer {
    margin-top: 20px;
    text-align: center;
}

.listino-disclaimer p {
    display: inline-block;
    font-size: 0.82rem;
    color: var(--warm-400);
    font-style: italic;
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
}

/* Inline note on service name */
.listino-note-inline {
    display: block;
    font-size: 0.75rem;
    color: var(--warm-400);
    font-weight: 400;
    font-style: italic;
    margin-top: 2px;
}

/* CTA below table */
.listino-footer {
    text-align: center;
    margin-top: 28px;
}
.btn-listino {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--brown-800);
    color: var(--parchment);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 4px 0 var(--brown-900), 0 6px 20px rgba(62,39,35,0.15);
}
.btn-listino:hover {
    background: var(--brown-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--brown-900), 0 10px 28px rgba(62,39,35,0.2);
}
.btn-listino:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 var(--brown-900), 0 4px 12px rgba(62,39,35,0.15);
}

/* Alternating row tint for readability */
.listino-row:nth-child(even) .listino-td-service,
.listino-row:nth-child(even) .listino-td-price {
    background: var(--warm-50);
}
.listino-row:nth-child(even):hover .listino-td-service,
.listino-row:nth-child(even):hover .listino-td-price {
    background: var(--teal-50);
}

/* ===== REVIEWS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--warm-200);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

/* Handwritten card rotation effect */
.review-card:nth-child(1) { transform: rotate(-1.5deg); }
.review-card:nth-child(2) { transform: rotate(0.8deg); }
.review-card:nth-child(3) { transform: rotate(-0.5deg); }

.review-card:hover {
    transform: rotate(0deg) translateY(-6px) !important;
    box-shadow: var(--shadow-lg);
}

/* Paper texture on quotes */
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--teal-100);
    line-height: 1;
    pointer-events: none;
}

.review-stars {
    color: var(--caramel);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-shadow: 0 1px 2px rgba(212,165,116,0.2);
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--warm-600);
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-100) 0%, var(--teal-200) 100%);
    color: var(--teal-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.review-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--warm-800);
}

.review-pet {
    display: block;
    font-size: 0.78rem;
    color: var(--warm-400);
}

/* ===== CTA BAND ===== */
.cta-band {
    background: var(--brown-800);
    /* Leather texture gradient */
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,0.01) 2px,
            rgba(255,255,255,0.01) 4px
        ),
        linear-gradient(135deg, #3E2723 0%, #4E342E 30%, #3E2723 60%, #4E342E 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(91,158,158,0.08);
}

.cta-band::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(212,165,116,0.06);
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.cta-content h2 em {
    color: var(--teal-400);
}

.cta-content p {
    color: var(--brown-200);
    font-size: 1rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--parchment);
    color: var(--brown-800);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 4px 0 rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.1);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 rgba(0,0,0,0.15), var(--shadow-xl);
    background: white;
}

.btn-cta:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.15);
}

/* ===== CONTACT ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-tag {
    display: inline-flex;
}

.contact-info > p {
    font-size: 1rem;
    color: var(--warm-500);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(4px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--teal-50);
    color: var(--teal-600);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--teal-500);
    color: white;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-item strong {
    font-size: 0.9rem;
    color: var(--warm-800);
}

.contact-item span {
    font-size: 0.87rem;
    color: var(--warm-500);
}

/* Contact Form — Paper card with folded corner */
.contact-form-wrap {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 36px;
    border: 1px solid var(--warm-200);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

/* Folded corner effect */
.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent var(--parchment-dark) transparent transparent;
    z-index: 2;
}

.contact-form-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--warm-200) 50%, transparent 50%);
    z-index: 1;
    border-radius: 0 var(--radius-xl) 0 0;
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--brown-800);
}

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

.contact-form label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--warm-600);
    margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--warm-200);
    border-radius: var(--radius-md);
    background: var(--warm-50);
    color: var(--warm-800);
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px var(--teal-100);
    background: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--warm-400);
}

.contact-form select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2378716C' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.contact-form textarea {
    resize: vertical;
}

.servizi-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.servizi-checkboxes label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--warm-50);
    border: 1px solid var(--warm-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--brown-800);
    transition: all 0.2s;
}
.servizi-checkboxes label:hover {
    border-color: var(--teal-400);
    background: var(--teal-50);
}
.servizi-checkboxes input[type="checkbox"] {
    accent-color: var(--teal-600);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.servizi-checkboxes input[type="checkbox"]:checked + span {
    color: var(--teal-700);
    font-weight: 500;
}
@media (max-width: 480px) {
    .servizi-checkboxes { grid-template-columns: 1fr; }
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--warm-500);
    cursor: pointer;
    line-height: 1.5;
}
.privacy-check input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--teal-600);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.privacy-check a {
    color: var(--teal-600);
    text-decoration: underline;
}

.btn-form-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--brown-800);
    color: var(--parchment);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    box-shadow: 0 3px 0 var(--brown-900);
    position: relative;
}

.btn-form-submit:hover {
    background: var(--brown-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 0 var(--brown-900), var(--shadow-md);
}

.btn-form-submit:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 var(--brown-900);
}

.btn-form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--brown-900);
    background-image: linear-gradient(180deg, var(--brown-900) 0%, #1F110A 100%);
    color: var(--brown-200);
    padding-top: 60px;
    position: relative;
}

/* Vintage stamp decorative element */
.footer::before {
    content: '★ BARBER DOG ★';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--brown-400);
    background: var(--brown-900);
    padding: 6px 20px;
    border: 2px solid var(--brown-600);
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo img {
    height: 44px;
    width: auto;
    border-radius: 6px;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
}

.footer-brand p {
    font-size: 0.87rem;
    line-height: 1.6;
    color: var(--brown-300);
}

.footer-links h4 {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brown-300);
    margin-bottom: 16px;
}

.footer-links a,
.footer-links span {
    display: block;
    font-size: 0.87rem;
    color: var(--brown-200);
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--teal-400);
    transform: translateX(3px);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer-bottom span {
    font-size: 0.8rem;
    color: var(--brown-400);
}

/* ===== FACEBOOK BUTTON (footer) ===== */
.footer-fb-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 20px;
    background: #1877F2;
    color: #fff !important;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.footer-fb-btn:hover {
    background: #0d65d9;
    transform: translateY(-2px) !important;
    color: #fff !important;
}

/* ===== FLOATING BUTTONS ===== */
.float-buttons {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 90;
}

.whatsapp-float,
.facebook-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.whatsapp-float {
    background: #25D366;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.45);
}

.facebook-float {
    background: #1877F2;
    box-shadow: 0 4px 20px rgba(24,119,242,0.35);
}
.facebook-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(24,119,242,0.45);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}
.facebook-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* Pulse ring */
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.4);
    animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Review cards keep their rotation when revealed */
.review-card.reveal.visible:nth-child(1) { transform: rotate(-1.5deg); }
.review-card.reveal.visible:nth-child(2) { transform: rotate(0.8deg); }
.review-card.reveal.visible:nth-child(3) { transform: rotate(-0.5deg); }

/* ===== NAVBAR DARK ===== */
.nav-dark .nav-links a {
    color: rgba(245,237,224,0.85);
}

.nav-dark .nav-links a:hover {
    color: #F5EDE0;
}

.nav-dark .nav-hamburger span {
    background: #F5EDE0;
}

.nav-dark .nav-logo span {
    color: #F5EDE0;
}

/* ===== FOOTER LIGHT ===== */
.footer-light,
.footer-light .footer-brand p,
.footer-light .footer-links a,
.footer-light .footer-links span,
.footer-light .footer-links h4,
.footer-light .footer-logo span,
.footer-light .footer-bottom span,
.footer-light .footer-bottom a {
    color: var(--brown-800);
}

.footer-light .footer-links h4 {
    color: var(--brown-600);
}

.footer-light .footer-links a:hover {
    color: var(--teal-600);
}

.footer-light .footer-container {
    border-bottom-color: rgba(0,0,0,0.1);
}

.footer-light::before {
    color: var(--brown-400);
    background: inherit;
    border-color: var(--brown-200);
}

/* ===== CARD DARK ===== */
.card-dark,
.card-dark h3,
.card-dark h4,
.card-dark p,
.card-dark span,
.card-dark a {
    color: #F5EDE0;
}

.card-dark .service-icon {
    background: rgba(245,237,224,0.1);
    color: var(--teal-300);
}

.card-dark .service-badge {
    background: rgba(245,237,224,0.12);
    color: var(--teal-300);
}

.card-dark .review-stars {
    color: #F5C518;
}

.card-dark .review-text {
    color: rgba(245,237,224,0.85);
}

.card-dark .review-avatar {
    background: var(--teal-600);
    color: white;
}

.card-dark .review-pet {
    color: rgba(245,237,224,0.6);
}

.card-dark .contact-icon {
    background: rgba(116,179,179,0.2);
    color: var(--teal-300);
}

.card-dark .about-stat-num {
    color: var(--teal-300);
}

.card-dark .about-stat-label {
    color: rgba(245,237,224,0.7);
}

/* ===== SFONDO SCURO — testo chiaro ===== */
.dark-bg,
.dark-bg h2,
.dark-bg h3,
.dark-bg h4,
.dark-bg p,
.dark-bg span,
.dark-bg a,
.dark-bg li,
.dark-bg label,
.dark-bg .section-tag,
.dark-bg .section-header p,
.dark-bg .about-content p,
.dark-bg .about-feature span,
.dark-bg .about-stat-label,
.dark-bg .contact-info p,
.dark-bg .contact-info h2,
.dark-bg .contact-detail span {
    color: #F5EDE0;
}

.dark-bg h2 em,
.dark-bg .section-header h2 em,
.dark-bg .about-content h2 em,
.dark-bg .contact-info h2 em {
    color: var(--teal-300);
}

.dark-bg .section-tag {
    background: rgba(245,237,224,0.12);
    color: var(--teal-300);
    border-color: rgba(245,237,224,0.2);
}

.dark-bg .section::before,
.dark-bg::before {
    color: rgba(245,237,224,0.3);
}

.dark-bg .service-card {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
}

.dark-bg .service-card h3,
.dark-bg .service-card p {
    color: #F5EDE0;
}

.dark-bg .about-stat-card {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
}

.dark-bg .about-stat-card.accent {
    background: rgba(116,179,179,0.15);
    border-color: rgba(116,179,179,0.3);
}

.dark-bg .about-stat-card.warm {
    background: rgba(212,165,116,0.15);
    border-color: rgba(212,165,116,0.3);
}

.dark-bg .about-stat-num {
    color: var(--teal-300);
}

.dark-bg .about-stat-card.accent .about-stat-num {
    color: var(--teal-300);
}

.dark-bg .about-stat-card.warm .about-stat-num {
    color: var(--teal-300);
}

.dark-bg .about-stat-label {
    color: rgba(245,237,224,0.7);
}

.dark-bg .about-stat-card.accent .about-stat-label,
.dark-bg .about-stat-card.warm .about-stat-label {
    color: rgba(245,237,224,0.7);
}

.dark-bg .feature-check {
    background: rgba(116,179,179,0.2);
    color: var(--teal-300);
}

.dark-bg .review-card {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
}

.dark-bg .review-text,
.dark-bg .review-name,
.dark-bg .review-pet,
.dark-bg .review-stars {
    color: #F5EDE0;
}

.dark-bg .contact-card {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
}

.dark-bg .contact-card h3,
.dark-bg .contact-card a,
.dark-bg .contact-card span {
    color: #F5EDE0;
}

.dark-bg .contact-icon {
    background: rgba(116,179,179,0.2);
    color: var(--teal-300);
}

.dark-bg .gallery-item {
    border-color: rgba(255,255,255,0.12);
}

/* Hero dark */
.dark-bg.hero .hero-badge {
    background: rgba(245,237,224,0.1);
    color: var(--teal-300);
    border-color: rgba(245,237,224,0.2);
}

.dark-bg.hero .hero-content h1 {
    color: #F5EDE0;
}

.dark-bg.hero .hero-sub {
    color: rgba(245,237,224,0.75);
}

.dark-bg.hero .hero-phone-link {
    color: #F5EDE0;
    background: rgba(245,237,224,0.08);
    border-color: rgba(245,237,224,0.2);
}

.dark-bg.hero .hero-wa-link {
    background: #25D366;
    color: white;
}

.dark-bg.hero .hero-trust {
    color: rgba(245,237,224,0.6);
}

.dark-bg.hero .hero-trust .stars {
    color: #F5C518;
}

.dark-bg.hero .hero-card-float {
    background: rgba(245,237,224,0.1);
    border-color: rgba(245,237,224,0.15);
    color: #F5EDE0;
}

.dark-bg.hero .shape-1 {
    background: radial-gradient(circle, rgba(116,179,179,0.15) 0%, transparent 70%);
}

.dark-bg.hero .shape-2 {
    background: radial-gradient(circle, rgba(212,165,116,0.1) 0%, transparent 70%);
}

.dark-bg.hero::after {
    display: none;
}

/* Buttons in dark sections */
.dark-bg .btn-book {
    background: var(--teal-600);
    color: white;
}

.dark-bg .btn-secondary-outline {
    border-color: rgba(245,237,224,0.3);
    color: #F5EDE0;
}

.dark-bg .btn-secondary-outline:hover {
    background: rgba(245,237,224,0.1);
}

/* Listino in sfondo scuro */
/* Listino — sfondo scuro completo */
.dark-bg .listino-th-service,
.dark-bg .listino-th-taglia {
    background: rgba(255,255,255,0.06);
    border-bottom-color: rgba(255,255,255,0.2);
    color: #F5EDE0;
}

.dark-bg .listino-th-service {
    color: rgba(245,237,224,0.6);
}

.dark-bg .listino-taglia-nome {
    color: #F5EDE0;
}

.dark-bg .listino-taglia-desc {
    color: rgba(245,237,224,0.5);
}

.dark-bg .listino-td-service {
    color: #F5EDE0;
    border-bottom-color: rgba(255,255,255,0.08);
    background: transparent;
}

.dark-bg .listino-td-price {
    border-bottom-color: rgba(255,255,255,0.08);
    background: transparent;
}

.dark-bg .listino-euro {
    color: var(--teal-300);
}

.dark-bg .listino-na {
    color: rgba(245,237,224,0.3);
}

.dark-bg .listino-row:hover .listino-td-service,
.dark-bg .listino-row:hover .listino-td-price {
    background: rgba(255,255,255,0.06);
}

.dark-bg .listino-row:nth-child(even) .listino-td-service,
.dark-bg .listino-row:nth-child(even) .listino-td-price {
    background: rgba(255,255,255,0.03);
}

/* Gatto */
.dark-bg .listino-gatto {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
}

.dark-bg .listino-gatto-title {
    color: #F5EDE0;
}

.dark-bg .listino-gatto-card {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
}

.dark-bg .listino-gatto-servizio {
    color: #F5EDE0;
}

.dark-bg .listino-gatto-note {
    color: rgba(245,237,224,0.5);
}

/* Cube mobile */
.dark-bg .listino-cube-face {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
}

.dark-bg .listino-cube-taglia {
    border-bottom-color: rgba(255,255,255,0.2);
}

.dark-bg .listino-cube-taglia-nome {
    color: #F5EDE0;
}

.dark-bg .listino-cube-taglia-desc {
    color: rgba(245,237,224,0.5);
}

.dark-bg .listino-cube-servizio {
    color: #F5EDE0;
}

.dark-bg .listino-cube-prezzo {
    color: var(--teal-300);
}

.dark-bg .listino-cube-row {
    border-bottom-color: rgba(255,255,255,0.08);
}

.dark-bg .listino-cube-dot {
    background: rgba(255,255,255,0.2);
}

.dark-bg .listino-cube-dot.active {
    background: var(--teal-400);
}

/* Disclaimer e note */
.dark-bg .listino-disclaimer,
.dark-bg .listino-disclaimer p {
    color: rgba(245,237,224,0.5);
}

.dark-bg .listino-note-inline {
    color: rgba(245,237,224,0.5);
}

.dark-bg .listino-footer {
    color: rgba(245,237,224,0.5);
}

.dark-bg .btn-listino {
    background: var(--teal-600);
    color: white;
}

/* Scroll hint */
.dark-bg .listino-scroll-hint {
    color: rgba(245,237,224,0.5);
}

/* Exploded view */
.dark-bg .listino-exploded-card {
    background: var(--brown-800);
    border-color: rgba(255,255,255,0.15);
}

.dark-bg .listino-exploded-card .listino-cube-taglia-nome {
    color: #F5EDE0;
}

.dark-bg .listino-exploded-note {
    color: rgba(245,237,224,0.5);
}

/* CTA in sfondo scuro */
.dark-bg.section .cta-container {
    background: rgba(245,237,224,0.08);
    border-color: rgba(245,237,224,0.15);
}

.dark-bg .cta-content h2,
.dark-bg .cta-content p {
    color: #F5EDE0;
}

/* Contatti / form in sfondo scuro */
.dark-bg .contact-form {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
}

.dark-bg .contact-form .form-input,
.dark-bg .contact-form textarea,
.dark-bg .contact-form select {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: #F5EDE0;
}

.dark-bg .contact-form .form-input::placeholder,
.dark-bg .contact-form textarea::placeholder {
    color: rgba(245,237,224,0.4);
}

.dark-bg .contact-form label {
    color: rgba(245,237,224,0.7);
}

.dark-bg .booking-step-title {
    color: #F5EDE0;
}

.dark-bg .booking-progress-label {
    color: rgba(245,237,224,0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 2.8rem; }
    .hero-container { gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .listino-scroll-hint { display: flex; }
    .reviews-grid { grid-template-columns: 1fr; }
    .review-card:nth-child(1),
    .review-card:nth-child(2),
    .review-card:nth-child(3) { transform: none; }
    .review-card.reveal.visible:nth-child(1),
    .review-card.reveal.visible:nth-child(2),
    .review-card.reveal.visible:nth-child(3) { transform: none; }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-container { height: 56px; }
    .nav-logo img { height: 40px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    .nav-links.open {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: var(--parchment);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--warm-200);
        box-shadow: var(--shadow-lg);
        z-index: 99999;
    }

    .hero { padding-top: 56px; }
    .promo-band {
        top: 56px;
        padding: 8px 0;
    }
    .promo-band .promo-icon { display: none; }
    .promo-band .promo-container {
        overflow: hidden;
        mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    }
    .promo-band .promo-content {
        display: flex;
        gap: 16px;
        white-space: nowrap;
        animation: promo-scroll 12s linear infinite;
    }
    .promo-band .promo-content h3,
    .promo-band .promo-content p {
        font-size: 0.85rem;
        margin: 0;
    }
    .promo-band .promo-content h3::before {
        content: '\2B50 ';
    }
    .promo-band .promo-content p::after {
        content: ' \2B50';
    }

    @keyframes promo-scroll {
        0% { transform: translateX(100%); }
        100% { transform: translateX(-100%); }
    }

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

    .hero-content h1 { font-size: 2.4rem; }
    .hero-sub { margin: 0 auto 32px; }
    .hero-phone { justify-content: center; flex-wrap: wrap; }
    .hero-actions { justify-content: center; flex-wrap: wrap; }
    .hero-trust { justify-content: center; }
    .hero-visual { min-height: 280px; }
    .hero-photo { max-width: 320px; }
    .hero-card-float { display: none; }

    .section { padding: 60px 0; }
    .section-header h2,
    .about-content h2,
    .contact-info h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    /* Shorter scissors divider on mobile */
    .section::before {
        content: '✂ · · · · · · ·';
    }

    .services-grid { grid-template-columns: 1fr; }
    .about-layout { grid-template-columns: 1fr; }
    .about-visual { order: 2; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.large { grid-column: span 2; }
    .contact-layout { grid-template-columns: 1fr; }
    .cta-container { flex-direction: column; text-align: center; gap: 24px; }
    .footer { padding-top: 36px; }
    .footer::before { font-size: 0.6rem; top: -14px; padding: 4px 14px; }
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding-bottom: 16px;
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    .footer-brand .footer-logo { justify-content: center; }
    .footer-brand p { margin: 0 auto; font-size: 0.82rem; }
    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px 10px;
    }
    .footer-links h4 {
        grid-column: 1 / -1;
        margin-bottom: 4px;
        font-size: 0.78rem;
    }
    .footer-links a,
    .footer-links span { font-size: 0.82rem; margin-bottom: 2px; }
    /* Contatti: single column (long text) */
    .footer-links:last-child { grid-template-columns: 1fr; }
    .footer-bottom { padding: 10px 0; }
    .footer-bottom span { font-size: 0.72rem; }
    .float-buttons { bottom: 20px; right: 20px; gap: 10px; }
    .whatsapp-float, .facebook-float { width: 50px; height: 50px; }
    .whatsapp-float svg { width: 26px; height: 26px; }
    .facebook-float svg { width: 22px; height: 22px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.9rem; }
    .hero-phone { flex-direction: column; gap: 10px; }
    .hero-phone-link { font-size: 1.1rem; justify-content: center; width: 100%; }
    .hero-wa-link { justify-content: center; width: 100%; }
    .hero-actions { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; text-align: center; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: span 1; aspect-ratio: 1; }
    .about-content p:first-of-type::first-letter {
        font-size: 2.4rem;
    }
    .promo-container { flex-direction: column; text-align: center; }
}

/* ===== BOOKING FORM ===== */
.form-row-site {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 600px) {
    .form-row-site { grid-template-columns: 1fr; }
}

.btn-back {
    background: none;
    border: none;
    color: var(--teal-600);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 4px 0;
    margin-bottom: 12px;
    transition: var(--transition);
}
.btn-back:hover { color: var(--brown-800); transform: translateX(-3px); }

/* Booking Calendar */
.booking-calendar {
    margin-bottom: 16px;
}
.booking-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1rem;
}
.booking-cal-header button {
    background: none;
    border: 1px solid var(--warm-200);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.booking-cal-header button:hover {
    background: var(--teal-50);
    border-color: var(--teal-500);
}

.booking-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.cal-header {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--warm-400);
    padding: 6px 0;
}
.cal-day {
    text-align: center;
    padding: 10px 4px;
    border-radius: 8px;
    font-size: 0.87rem;
    cursor: pointer;
    transition: all 0.15s;
}
.cal-day:hover:not(.disabled):not(.empty) {
    background: var(--teal-50);
    color: var(--brown-800);
}
.cal-day.disabled {
    color: var(--warm-300);
    cursor: not-allowed;
}
.cal-day.empty {
    cursor: default;
}
.cal-day.selected {
    background: var(--teal-600);
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(91,158,158,0.3);
}

/* Slots */
.booking-slots {
    margin-bottom: 16px;
    min-height: 60px;
}
.slots-loading, .slots-closed, .slots-full, .slots-error {
    text-align: center;
    padding: 16px;
    font-size: 0.9rem;
    color: var(--warm-500);
}
.slots-closed { color: #C62828; }
.slots-full { color: #E65100; }
.slots-error { color: #C62828; }
.slots-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--warm-600);
}
.slots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.slot-btn {
    padding: 8px 16px;
    border: 1px solid var(--warm-200);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 0.87rem;
    font-weight: 500;
    transition: all 0.15s;
}
.slot-btn:hover {
    border-color: var(--teal-500);
    background: var(--teal-50);
}
.slot-btn.selected {
    background: var(--teal-600);
    color: white;
    border-color: var(--teal-600);
    box-shadow: 0 2px 8px rgba(91,158,158,0.3);
}

/* Booking Success */
.booking-success {
    text-align: center;
    padding: 24px 0;
}
.booking-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--teal-100);
    color: var(--teal-700);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    animation: successPop 0.5s ease both;
}

@keyframes successPop {
    0% { transform: scale(0); }
    70% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.booking-success h3 {
    color: var(--brown-800);
    margin-bottom: 8px;
}
.booking-success p {
    color: var(--warm-500);
    margin-bottom: 20px;
}

/* ===== POPUP AVVISO ===== */
.sito-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42, 26, 18, 0.45);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    opacity: 0;
    animation: sitoPopupFadeIn 0.25s ease forwards;
}
@keyframes sitoPopupFadeIn {
    to { opacity: 1; }
}
.sito-popup {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 36px 32px 28px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 24px 60px rgba(42, 26, 18, 0.18);
    text-align: center;
    transform: scale(0.92) translateY(12px);
    animation: sitoPopupSlideIn 0.3s 0.05s ease forwards;
    border: 1px solid var(--brown-100);
}
@keyframes sitoPopupSlideIn {
    to { transform: scale(1) translateY(0); }
}
.sito-popup-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.sito-popup-icon.warning {
    background: #FEF3C7;
    color: #D97706;
}
.sito-popup-icon.error {
    background: #FEE2E2;
    color: #DC2626;
}
.sito-popup-icon.info {
    background: var(--teal-100);
    color: var(--teal-700);
}
.sito-popup-icon svg {
    width: 28px;
    height: 28px;
}
.sito-popup h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--brown-800);
    margin-bottom: 8px;
}
.sito-popup p {
    color: var(--brown-400);
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 24px;
}
.sito-popup-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--teal-600);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: var(--font-body);
}
.sito-popup-btn:hover {
    background: var(--teal-700);
}
.sito-popup-btn.warning {
    background: #D97706;
}
.sito-popup-btn.warning:hover {
    background: #B45309;
}
.sito-popup-btn.error {
    background: #DC2626;
}
.sito-popup-btn.error:hover {
    background: #B91C1C;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--parchment); }
::-webkit-scrollbar-thumb { background: var(--warm-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--warm-400); }
