/* ============================================
   FARMACIA VENUTO - Custom Design System
   Colors: Green #28A745 | White #FFF | Blue #007BFF
   Fonts: Montserrat (headings) + Roboto (body)
   ============================================ */

:root {
    --green: #28A745;
    --green-dark: #1e7e34;
    --green-light: #d4edda;
    --green-50: rgba(40, 167, 69, 0.08);
    --blue: #007BFF;
    --blue-dark: #0056b3;
    --blue-light: #cce5ff;
    --white: #FFFFFF;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --text-primary: #1a1a2e;
    --text-secondary: #555770;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
    max-width: 100vw;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: var(--green);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--green-dark);
}

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

/* ====== NAVBAR ====== */
.navbar {
    padding: 12px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: var(--white) !important;
    transition: var(--transition);
}

.navbar.scrolled .navbar-brand {
    color: var(--green-dark) !important;
}

.brand-icon {
    font-size: 1.5rem;
    color: var(--green);
    filter: drop-shadow(0 0 10px rgba(40, 167, 69, 0.3));
}

.brand-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
    transition: var(--transition);
}

.navbar.scrolled .brand-logo {
    width: 32px;
    height: 32px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--text-primary) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--green) !important;
    background: var(--green-50);
}

.lang-toggle {
    padding: 6px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    margin-right: 8px;
    line-height: 1;
}

.navbar.scrolled .lang-toggle {
    background: var(--gray-100);
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.navbar.scrolled .navbar-toggler-icon {
    filter: none;
}

/* ====== HERO ====== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a2e1a 0%, #14532d 30%, #166534 60%, #1a4731 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(40, 167, 69, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 20%, rgba(0, 123, 255, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    contain: strict;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(40, 167, 69, 0.4);
    border-radius: 50%;
    animation: float-particle 15s infinite ease-in-out;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    50% { transform: translateY(-200px) translateX(30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 50px;
    color: #86efac;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    word-break: break-word;
    overflow-wrap: break-word;
}

.text-gradient {
    background: linear-gradient(135deg, #86efac, #4ade80, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-cross {
    font-size: 0.7em;
    display: inline-block;
    animation: pulse-cross 2s ease-in-out infinite;
}

.hero-logo-pulse {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(134, 239, 172, 0.5));
    animation: logo-blink 1.5s ease-in-out infinite;
}

@keyframes pulse-cross {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes logo-blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.1); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-bottom: 28px;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.badge-pill-accent {
    background: rgba(134, 239, 172, 0.15);
    border-color: rgba(134, 239, 172, 0.35);
    color: #86efac;
    font-weight: 600;
}

.badge-pill-link {
    text-decoration: none;
    color: inherit;
}

.badge-pill-link:hover {
    color: inherit;
    opacity: 0.85;
}

/* Hero mobile status indicator */
.hero-status-mobile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 50px;
    color: #86efac;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    margin-bottom: 16px;
}

.hero-status-mobile .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

.hero-status-mobile.closed {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.hero-status-mobile.closed .status-dot {
    background: #ef4444;
    animation: none;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Hide on desktop (already shown in card) */
@media (min-width: 992px) {
    .hero-status-mobile {
        display: none;
    }
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-cta {
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: var(--green) !important;
    border-color: var(--green) !important;
}

.btn-primary:hover {
    background: var(--green-dark) !important;
    border-color: var(--green-dark) !important;
}

/* Hero Visual Card */
.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Hero Tip Card */
.hero-tip-card {
    padding: 24px 28px;
    position: relative;
    overflow: hidden;
    border-left: 3px solid rgba(134, 239, 172, 0.5);
}

.hero-tip-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #86efac;
    font-weight: 600;
}

.hero-tip-header i {
    font-size: 1.1rem;
}

.hero-tip-title {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    overflow-wrap: break-word;
    word-break: break-word;
}

.hero-tip-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 12px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.hero-tip-link {
    color: #86efac;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
}

.hero-tip-link:hover {
    color: #fff;
    gap: 8px;
}

.hero-tip-clickable {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-tip-clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 32px;
}

.glass-card-solid {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.hero-card {
    padding: 40px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(40, 167, 69, 0.15);
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: #86efac;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 2s ease-in-out infinite;
}

.status-dot.closed-dot {
    background: #ef4444;
    animation: none;
}

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

.hero-card-info h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.hero-card-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-card-link {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color 0.2s;
}

.hero-card-link:hover {
    color: #fff;
}

.hero-card-info i {
    color: var(--green);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
    display: block;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ====== SECTIONS COMMON ====== */
.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: var(--green-50);
    color: var(--green);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ====== ABOUT ====== */
.about-image-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    padding: 20px;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-badge-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
}

.about-badge-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.about-feature i {
    font-size: 1.3rem;
    color: var(--green);
}

.about-feature span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* ====== SERVICES ====== */
.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 28px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green);
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.service-icon-accent {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.service-icon-green {
    background: linear-gradient(135deg, #059669, #047857);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 0;
}

/* ====== CONSIGLI DEL FARMACISTA ====== */
.consiglio-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    height: 100%;
    position: relative;
    border: 1px solid var(--border);
    transition: all 0.35s ease;
    text-align: center;
    overflow: hidden;
}

.consiglio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.consiglio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(20, 83, 45, 0.12);
    border-color: var(--green-light);
}

.consiglio-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.12), rgba(20, 83, 45, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--green);
    transition: all 0.3s ease;
}

.consiglio-card:hover .consiglio-icon-wrapper {
    background: var(--green);
    color: #fff;
    transform: scale(1.08);
}

.consiglio-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.consiglio-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Consiglio Featured (latest) */
.consiglio-featured {
    background: linear-gradient(135deg, #14532d 0%, #166534 60%, #15803d 100%);
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.consiglio-featured::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.consiglio-featured-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #86efac;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.consiglio-featured-body {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.consiglio-featured-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #86efac;
}

.consiglio-featured-content {
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.consiglio-featured-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.consiglio-featured-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Consiglio clickable cards */
.consiglio-card-clickable {
    cursor: pointer;
}

.consiglio-card-footer {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
}

.consiglio-detail-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.consiglio-card-clickable:hover .consiglio-detail-link {
    gap: 8px;
}

/* Featured clickable */
.consiglio-featured-clickable {
    cursor: pointer;
}

.consiglio-featured-footer {
    margin-top: 16px;
    text-align: right;
}

.consiglio-read-more {
    font-size: 0.88rem;
    font-weight: 600;
    color: #86efac;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.consiglio-featured-clickable:hover .consiglio-read-more {
    gap: 10px;
    color: #fff;
}

/* ====== CONSIGLIO DETAIL MODAL ====== */
.consiglio-modal-wrapper {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: transparent;
}

.consiglio-modal-content {
    display: flex;
    flex-direction: column;
}

.consiglio-modal-header {
    background: linear-gradient(135deg, #14532d 0%, #166534 60%, #15803d 100%);
    padding: 40px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.consiglio-modal-header::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.consiglio-modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #86efac;
}

.consiglio-modal-details {
    padding: 28px 32px;
    background: var(--white);
}

.consiglio-modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.consiglio-modal-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.consiglio-modal-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.consiglio-modal-divider {
    margin: 20px 0;
    border-color: var(--gray-100);
}

@media (max-width: 576px) {
    .consiglio-modal-details {
        padding: 20px;
    }
    .consiglio-modal-title {
        font-size: 1.25rem;
    }
    .consiglio-modal-header {
        padding: 28px 20px;
    }
    #consiglioDetailModal .modal-dialog {
        margin: 16px;
        max-width: calc(100vw - 32px);
    }
    #consiglioDetailModal .modal-body {
        overflow-x: hidden;
    }
    .consiglio-modal-text {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* ====== CONSIGLI PAGINATION ====== */
.consigli-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.consigli-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.consigli-page-btn:hover:not(:disabled) {
    background: var(--primary);
    color: white;
}

.consigli-page-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.consigli-page-info {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* ====== PROMOTIONS ====== */
.bg-gradient-green {
    background: linear-gradient(135deg, #14532d 0%, #166534 50%, #15803d 100%);
}

.promo-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.promo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.promo-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.promo-card-body {
    padding: 24px;
}

.promo-card-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.promo-card-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.promo-card-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #86efac;
    font-size: 0.8rem;
    margin-top: 12px;
}

/* ====== PROMO TABS ====== */
.promo-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.promo-tabs {
    display: inline-flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 4px;
    backdrop-filter: blur(10px);
}

.promo-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-tab:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
}

.promo-tab.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.promo-tab i {
    font-size: 1rem;
}

/* ====== PROMO CARDS MODERN ====== */
.promo-card-modern {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.promo-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.promo-card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--gray-50);
}

.promo-card-img-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.promo-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gray-300);
    background: var(--gray-50);
}

/* Badges */
.promo-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--white);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.promo-badge-discount {
    background: #f59e0b;
}

.promo-badge-new {
    background: var(--green);
}

.promo-badge-bestseller {
    background: var(--green);
}

/* Card body */
.promo-card-body-modern {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promo-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--green);
    margin-bottom: 6px;
}

.promo-card-title-modern {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.promo-card-text-modern {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
}

/* Pricing */
.promo-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
}

.promo-price-from {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.promo-price-current {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--green);
}

.promo-price-original {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

/* Clickable promo cards */
.promo-card-clickable {
    cursor: pointer;
}

.promo-card-footer-modern {
    padding: 0 20px 16px;
    text-align: center;
}

.promo-card-detail-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.promo-card-clickable:hover .promo-card-detail-link {
    color: var(--green-dark);
    text-decoration: underline;
}

/* ====== PROMO DETAIL MODAL ====== */
.promo-modal-wrapper {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.promo-modal-content {
    display: flex;
    flex-direction: column;
}

.promo-modal-image-wrapper {
    position: relative;
    width: 100%;
    max-height: 360px;
    overflow: hidden;
    background: var(--gray-50);
}

.promo-modal-image-wrapper .promo-badge {
    top: 16px;
    left: 16px;
    font-size: 0.9rem;
    padding: 8px 18px;
}

.promo-modal-image {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
    display: block;
}

.promo-modal-image-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--gray-300);
    background: var(--gray-50);
}

.promo-modal-details {
    padding: 28px 32px;
}

.promo-modal-category {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--green);
    margin-bottom: 8px;
    background: var(--green-light);
    padding: 4px 12px;
    border-radius: 50px;
}

.promo-modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.promo-modal-period {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    font-size: 0.88rem;
    color: var(--green-dark);
    margin-bottom: 16px;
}

.promo-modal-period i {
    font-size: 1rem;
}

.promo-modal-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.promo-modal-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
}

.promo-modal-price-from {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.promo-modal-price-current {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green);
}

.promo-modal-price-original {
    font-size: 1rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

.promo-modal-divider {
    margin: 20px 0;
    border-color: var(--gray-100);
}

.promo-modal-share {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promo-modal-share-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.promo-modal-share-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.promo-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.promo-share-fb {
    background: #1877F2;
    color: white;
}

.promo-share-fb:hover {
    background: #0d65d9;
    color: white;
}

.promo-share-wa {
    background: #25D366;
    color: white;
}

.promo-share-wa:hover {
    background: #1fb855;
    color: white;
}

.promo-share-ig {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.promo-share-ig:hover {
    opacity: 0.9;
    color: white;
}

.promo-share-ig.copied {
    background: var(--green-light);
    color: var(--green-dark);
}

.promo-share-copy {
    background: var(--gray-100);
    color: var(--text-primary);
    border: 1px solid var(--gray-200);
}

.promo-share-copy:hover {
    background: var(--gray-200);
    color: var(--text-primary);
}

.promo-share-copy.copied {
    background: var(--green-light);
    color: var(--green-dark);
    border-color: var(--green);
}

/* Modal responsive */
@media (max-width: 576px) {
    .promo-modal-details {
        padding: 20px;
    }
    .promo-modal-title {
        font-size: 1.25rem;
    }
    .promo-modal-share-buttons {
        flex-direction: column;
    }
    .promo-share-btn {
        justify-content: center;
    }
}

/* ====== HOURS ====== */
.hours-card {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.hours-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--green-light);
    color: var(--green-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.hours-status.closed {
    background: #fee2e2;
    color: #991b1b;
}

.hours-status.closed .status-dot {
    background: #ef4444;
    animation: none;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table tr.today-row {
    background: var(--green-50);
    border-radius: var(--radius-sm);
}

.hours-table tr.today-row .day-name {
    color: var(--green);
    font-weight: 700;
}

.hours-table td {
    padding: 14px 16px;
}

.day-name {
    font-weight: 500;
    color: var(--text-primary);
}

.day-hours {
    text-align: right;
    font-weight: 600;
    color: var(--text-secondary);
    font-family: 'Montserrat', sans-serif;
}

.closed-row .day-hours {
    color: #dc3545;
}

.hours-note {
    margin-top: 20px;
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hours-note i {
    color: var(--blue);
}

/* ====== CONTACT ====== */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-md);
    background: var(--green-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--green);
}

.contact-info-icon-fb {
    background: #e8f0fe;
    color: #1877f2;
}

.contact-info-icon-ig {
    background: #fce4ec;
    color: #e1306c;
}

.contact-info-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.contact-info-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.contact-info-item a {
    color: var(--green);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.form-control {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--green);
}

/* Phone input group with prefix */
.phone-input-group {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.phone-prefix-select {
    width: 110px;
    flex-shrink: 0;
    border: 1px solid var(--gray-200);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    padding: 12px 8px;
    font-size: 0.9rem;
    background-color: var(--white);
    transition: var(--transition);
    cursor: pointer;
}

.phone-prefix-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
    outline: none;
}

.phone-input-group .form-floating .form-control {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.phone-input-group + .invalid-feedback {
    display: none;
    margin-top: 4px;
}

/* Validation states */
.form-control.is-invalid {
    border-color: #dc3545;
}

.form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.form-control.is-valid {
    border-color: var(--green);
}

.form-control.is-valid:focus {
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
}

.phone-input-group .form-control.is-invalid {
    border-color: #dc3545;
}

.phone-input-group .form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 4px;
}

.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ====== GALLERY ====== */
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

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

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.gallery-item-caption {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.gallery-video-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ====== NEWSLETTER ====== */
.bg-gradient-blue {
    background: linear-gradient(135deg, #1e3a5f 0%, #0056b3 50%, #007BFF 100%);
}

/* ====== FOOTER ====== */
.site-footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand i {
    color: var(--green);
    font-size: 1.5rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--green);
    transform: translateY(-3px);
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--green);
    padding-left: 5px;
}

.footer-contacts {
    list-style: none;
    padding: 0;
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contacts i {
    color: var(--green);
    font-size: 0.9rem;
}

.footer-contacts a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contacts a:hover {
    color: var(--green);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0 20px;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--green);
}

/* ====== WHATSAPP FAB ====== */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    display: none;
}

@media (min-width: 768px) {
    .whatsapp-tooltip {
        display: block;
    }
}

.whatsapp-fab:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ====== COOKIE BANNER ====== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 37, 41, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
}

.cookie-content .cookie-text {
    flex: 1;
}

.cookie-content .cookie-link-text {
    margin-top: 4px;
}

.cookie-content .cookie-link-text a {
    color: var(--green);
    text-decoration: underline;
    font-size: 0.85rem;
}

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

/* ====== POLICY MODALS ====== */
.policy-modal {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.policy-modal .modal-header {
    background: var(--green);
    color: #fff;
    border-bottom: none;
    padding: 20px 24px;
}

.policy-modal .modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.policy-modal .modal-title {
    font-weight: 700;
    font-size: 1.2rem;
}

.policy-body {
    padding: 24px;
    max-height: 70vh;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.policy-body h6 {
    color: var(--gray-900);
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 1rem;
}

.policy-body h6:first-child {
    margin-top: 0;
}

.policy-body ul {
    padding-left: 20px;
}

.policy-body ul li {
    margin-bottom: 6px;
}

.policy-body a {
    color: var(--green);
    text-decoration: underline;
}

.policy-body .table {
    font-size: 0.85rem;
}

.policy-body .table th {
    background: var(--gray-100);
    font-weight: 600;
    font-size: 0.82rem;
}

/* ====== ANIMATIONS ====== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 991.98px) {
    /* Disable horizontal transforms on mobile to prevent overflow */
    [data-animate="fade-left"],
    [data-animate="fade-right"] {
        transform: translateY(30px);
    }

    .hero-content {
        padding-top: 120px;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 28px;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        padding: 16px;
        margin-top: 12px;
        box-shadow: var(--shadow-lg);
    }

    .navbar-collapse .nav-link {
        color: var(--text-primary) !important;
    }

    .navbar-collapse .nav-link:hover {
        background: var(--green-50);
        color: var(--green) !important;
    }

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

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

    /* Hero visual on mobile */
    .hero-visual {
        margin-top: 24px;
    }

    .hero-card {
        padding: 24px;
    }

    .glass-card {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .hero-card-info h3 {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }

    .hero-card-link,
    .hero-card-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-logo-pulse {
        width: 40px;
        height: 40px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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

    /* Hide hero card on mobile — info already in badges/CTA */
    .hero-card {
        display: none;
    }

    /* Reduce gap for tip card on mobile */
    .hero-visual {
        gap: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-info-card {
        margin-bottom: 24px;
    }

    .hours-table td {
        padding: 12px 8px;
        font-size: 0.9rem;
    }

    .whatsapp-fab {
        bottom: 80px;
    }

    .gallery-item img,
    .gallery-item video {
        height: 180px;
    }

    /* Consigli mobile */
    .consiglio-featured {
        padding: 24px 20px;
    }

    .consiglio-featured-body {
        flex-direction: column;
        gap: 16px;
    }

    .consiglio-featured-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .consiglio-featured-title {
        font-size: 1.1rem;
    }

    .hero-tip-card {
        padding: 18px 20px;
    }

    .hero-tip-title {
        font-size: 0.95rem;
    }

    .hero-tip-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 24px 20px 20px;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 24px;
    }

    /* Reduce hero particle animation complexity on small screens */
    .hero-particle {
        animation-duration: 20s !important;
    }

    .hero-overlay {
        background: radial-gradient(ellipse at 30% 50%, rgba(40, 167, 69, 0.1) 0%, transparent 50%);
    }

    /* Reduce navbar blur on mobile for scroll performance */
    .navbar.scrolled {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

/* ====== PLACEHOLDER SVG STYLES ====== */
.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--green-light), var(--gray-100));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 3rem;
    border-radius: var(--radius-xl);
}

/* ====== LIGHTBOX ====== */
#mediaLightbox .modal-content {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

#lightboxContent img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

#lightboxContent video {
    max-width: 100%;
    max-height: 80vh;
}

/* ====== LOADING STATES ====== */
.skeleton {
    background: var(--gray-200);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.skeleton::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, var(--gray-100), transparent);
    animation: skeleton-loading 1.5s infinite;
    will-change: transform;
}

@keyframes skeleton-loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ====== SERVICE CARD CLICKABLE ====== */
.service-card-clickable {
    cursor: pointer;
    position: relative;
}

.service-card-clickable:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 4px;
}

.service-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green);
    transition: var(--transition);
}

.service-card-clickable:hover .service-card-cta {
    color: var(--green-dark);
    transform: translateX(4px);
}

/* ====== DELIVERY BANNER ====== */
.delivery-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--green-light) 0%, #e8f5e9 100%);
    border: 1px solid var(--green);
    border-radius: var(--radius-xl);
    padding: 24px 32px;
    margin-top: 0;
}

.delivery-banner-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
}

.delivery-banner-text {
    flex: 1;
}

.delivery-banner-text h4 {
    margin: 0 0 4px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.delivery-banner-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.delivery-banner .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .delivery-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .delivery-banner .btn {
        width: 100%;
    }
}

/* ====== PRODUCT MODALS ====== */
.product-modal-content {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 100%;
}

.product-modal-header {
    position: relative;
    padding: 40px 32px 28px;
    color: white;
    text-align: center;
    flex-shrink: 0;
}

.product-modal-header .btn-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
}

.product-modal-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    margin: 0 auto 16px;
    font-size: 1.8rem;
}

.product-modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 8px;
}

.product-modal-header p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Header gradient variants */
.product-header-green {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}
.product-header-pink {
    background: linear-gradient(135deg, #e91e8c 0%, #ff6b9d 100%);
}
.product-header-teal {
    background: linear-gradient(135deg, #0891b2 0%, #22d3ee 100%);
}
.product-header-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
}
.product-header-blue {
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
}
.product-header-amber {
    background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%);
}
.product-header-rose {
    background: linear-gradient(135deg, #e11d48 0%, #fb7185 100%);
}
.product-header-gold {
    background: linear-gradient(135deg, #b8860b 0%, #ffd700 100%);
}

.product-modal-body {
    padding: 28px 32px;
    overflow-y: auto;
    flex: 1 1 auto;
}

.product-subcategory {
    margin-bottom: 16px;
}

.product-subcategory:last-child {
    margin-bottom: 0;
}

.product-subcategory h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--gray-100);
}

.product-subcategory h5 i {
    color: var(--green);
    font-size: 1.1rem;
}

.product-subcategory-note {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    padding-left: 4px;
}

.product-subcategory-desc {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Brand pills */
.brand-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.brand-pills-large {
    gap: 10px;
}

.brand-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}

.brand-pill:hover {
    background: var(--green-light);
    border-color: var(--green);
    color: var(--green-dark);
    transform: translateY(-1px);
}

.brand-pill-featured {
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    background: white;
    border: 1px solid var(--gray-200);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    text-decoration: none;
    color: var(--gray-700);
    gap: 8px;
    cursor: pointer;
    min-height: 48px;
    justify-content: center;
}

.brand-pill-featured:hover {
    background: var(--green-light);
    border-color: var(--green);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.15);
    color: var(--green-dark);
    text-decoration: none;
}

.brand-pill-featured .brand-logo-img {
    height: 22px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-pill-new {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: var(--green);
    color: var(--green-dark);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 20px;
    text-decoration: none;
    gap: 8px;
    cursor: pointer;
    min-height: 48px;
    justify-content: center;
}

.brand-pill-new:hover {
    text-decoration: none;
    color: var(--green-dark);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.15);
}

.brand-pill-new .brand-logo-img {
    height: 22px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-pill-highlight {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
    font-weight: 600;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: var(--green);
    color: white;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-left: 6px;
    vertical-align: middle;
}

/* Service list (for Analisi) */
.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
}

.service-list-item:hover {
    background: var(--green-light);
}

.service-list-item i {
    color: var(--green);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-list-item .badge-new {
    margin-left: auto;
}

/* Modal note banner */
.product-modal-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #86efac;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--green-dark);
    margin-top: 20px;
}

.product-modal-note i {
    color: #f59e0b;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Modal footer */
.product-modal-footer {
    padding: 16px 32px 24px;
    text-align: center;
    border-top: 1px solid var(--gray-100);
    flex-shrink: 0;
}

.product-modal-footer .btn {
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
}

/* Responsive for product modals */
@media (max-width: 576px) {
    .product-modal-header {
        padding: 28px 20px 20px;
    }
    .product-modal-header h3 {
        font-size: 1.3rem;
    }
    .product-modal-body {
        padding: 20px;
    }
    .product-modal-footer {
        padding: 12px 20px 20px;
    }
    .brand-pill {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    .brand-pill-featured {
        font-size: 0.85rem;
        padding: 8px 14px;
        min-height: 42px;
    }
    .brand-pill-featured .brand-logo-img {
        height: 24px;
    }
    .service-list {
        grid-template-columns: 1fr;
    }
}
