/* =====================================================
   OTTICA BOERIS — Design System
   ===================================================== */

/* ── Google Fonts ──────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────── */
:root {
    --ivory: #FAF7F2;
    --ivory-dark: #F5F0E8;
    --gold: #B8923E;
    --gold-light: #C9A55A;
    --gold-dark: #9A7A34;
    --gold-bg: #F0E6D3;
    --dark: #2D2D2D;
    --dark-footer: #1A1A1A;
    --text: #4A4A4A;
    --text-light: #7A7A7A;
    --white: #FFFFFF;
    --border: #E5DDD0;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-lg: rgba(0, 0, 0, 0.12);

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;

    --container: 1280px;
    --section-padding: clamp(60px, 10vh, 100px) 0;
    --section-padding-sm: clamp(40px, 6vh, 60px) 0;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    /* ── Brand Soul Extensions ── */
    --lens-glow: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    --savoy-corner-size: 24px;
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--ivory);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul,
ol {
    list-style: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* ── Container ─────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 5vw;
}

@media (min-width: 1280px) {
    .container {
        padding: 0 40px;
    }
}

/* ── Global Utilities ──────────────────────────── */
.display-serif {
    font-family: var(--font-serif);
    font-weight: 400;
}

.display-serif em {
    font-style: italic;
    color: var(--gold);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.display-serif em::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--lens-glow);
    opacity: 0.4;
}

.section-label-gold {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.divider-gold-center {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 30px auto;
    opacity: 0.6;
}

/* ── Typography ────────────────────────────────── */
h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    color: var(--dark);
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

h2 {
    font-size: clamp(1.3rem, 2.8vw, 2rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
}

em,
.accent {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
    letter-spacing: -0.01em;
}

/* ── Signature Motif: Lens Glow Rule ── */
.lens-rule {
    width: 100%;
    height: 1px;
    background: var(--lens-glow);
    margin: 40px 0;
    opacity: 0.6;
    position: relative;
}

.lens-rule::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-light);
}

/* ── Signature Motif: Savoy Frame ── */
.savoy-frame {
    position: relative;
    padding: 20px;
}

.savoy-frame::before,
.savoy-frame::after {
    content: '';
    position: absolute;
    width: var(--savoy-corner-size);
    height: var(--savoy-corner-size);
    border-color: var(--gold);
    border-style: solid;
    opacity: 0.5;
    transition: var(--transition);
}

/* Top Left */
.savoy-frame::before {
    top: 0;
    left: 0;
    border-width: 1px 0 0 1px;
}

/* Bottom Right */
.savoy-frame::after {
    bottom: 0;
    right: 0;
    border-width: 0 1px 1px 0;
}

.savoy-frame:hover::before,
.savoy-frame:hover::after {
    opacity: 1;
    width: calc(var(--savoy-corner-size) + 10px);
    height: calc(var(--savoy-corner-size) + 10px);
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.text-gold {
    color: var(--gold);
}

/* ── Spacing Utilities ─────────────────────────── */
.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.p-4 {
    padding: 2rem;
}

.p-5 {
    padding: 3rem;
}

/* ── Typography Utilities ──────────────────────── */
.ts-small {
    font-size: 0.85rem;
}

.ts-normal {
    font-size: 1rem;
}

.ts-large {
    font-size: 1.1rem;
}

/* ── Brands Carousel Section ──────────────────── */
.brands-section {
    padding: 40px 0 0 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.brands-label {
    margin-bottom: 30px;
}

.brands-track-wrapper {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    /* touch-action: pan-y allows page scroll but we handle x ourselves */
    touch-action: pan-y;
}

.brands-track-wrapper:active {
    cursor: grabbing;
}

.brands-track {
    display: flex;
    gap: 15px;
    align-items: center;
    width: max-content;
    will-change: transform;
}

.brand-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 160px;
    opacity: 0.65;
    transition: opacity 0.3s, transform 0.3s;
    padding: 10px;
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    pointer-events: none;
    transform: scale(2.5);
}

.brand-item span {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    white-space: nowrap;
}

/* ── Buttons ───────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

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

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 146, 62, 0.3);
}

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

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

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

.btn-dark:hover {
    background: #444;
    transform: translateY(-2px);
}

.btn-arrow::after {
    content: '→';
    font-size: 1.1em;
    transition: transform 0.3s;
}

.btn-arrow:hover::after {
    transform: translateX(4px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

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

.link-gold:hover {
    gap: 8px;
    color: var(--gold-dark);
}

.link-gold::after {
    content: '→';
}

.link-underline {
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-dark);
    border-bottom: 1px solid var(--gold-dark);
    padding-bottom: 2px;
    transition: var(--transition);
}

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

/* ── Sections ──────────────────────────────────── */
.section {
    padding: var(--section-padding);
}

.section-ivory {
    background: var(--ivory);
}

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

.section-cream {
    background: var(--ivory-dark);
}

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

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

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

/* ── Grid ──────────────────────────────────────── */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
}

.grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.mobile-title-only {
    display: none;
}

/* ── Aspect Ratio Helpers ──────────────────────── */
.aspect-video {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.aspect-square {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.aspect-portrait {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.aspect-landscape {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

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

/* ── Header / Navbar ───────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--ivory);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(250, 247, 242, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo img {
    height: 128px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .navbar-logo img {
    height: 100px;
}

.navbar-logo-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}

.navbar-logo-text span {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: -2px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.navbar-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    padding: 4px 0;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    width: 100%;
}

.navbar-menu a:hover {
    color: var(--dark);
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-cta .btn {
    padding: 10px 24px;
    font-size: 0.8rem;
}

/* Hide Nav CTA on small mobile to avoid overlap */
@media (max-width: 500px) {
    .navbar-cta .btn {
        display: none;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 28px;
    padding: 4px 0;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero (legacy pages) ───────────────────────── */
.hero {
    padding: 140px 0 80px;
    position: relative;
}

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

/* ════════════════════════════════════════════════
   HERO IMMERSIVE — Luxury Pivot
   ════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════
   HERO V4 — Glassmorphism Centered
   ════════════════════════════════════════════════ */

.hero-v5 {
    position: relative;
    width: 100%;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #060502;
    --mx: 0px;
    --my: 0px;
}

.hero-v5-bg {
    position: absolute;
    inset: -50px;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: translate(calc(var(--mx) * -0.02), calc(var(--my) * -0.02)) scale(1.05);
    transition: transform 0.2s cubic-bezier(0.1, 0, 0.3, 1);
}

.hero-v5-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%),
        linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.4) 100%);
}

/* ── Optic Orbs ── */
.optic-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 3;
    opacity: 0.25;
    pointer-events: none;
    animation: orbFloat 20s infinite alternate ease-in-out;
}

.orb-1 {
    background: var(--gold);
    top: 10%;
    left: 15%;
    transform: translate(calc(var(--mx) * 0.05), calc(var(--my) * 0.05));
    animation-delay: 0s;
}

.orb-2 {
    background: #fff;
    bottom: 15%;
    right: 10%;
    width: 500px;
    height: 500px;
    transform: translate(calc(var(--mx) * -0.03), calc(var(--my) * -0.03));
    animation-delay: -5s;
    opacity: 0.15;
}

.orb-3 {
    background: #4a90e2;
    /* Light Blue/Optic touch */
    top: 40%;
    right: 20%;
    width: 300px;
    height: 300px;
    transform: translate(calc(var(--mx) * 0.08), calc(var(--my) * 0.08));
    animation-delay: -10s;
    opacity: 0.1;
}

@keyframes orbFloat {
    from {
        margin-top: -20px;
        margin-left: -20px;
    }

    to {
        margin-top: 20px;
        margin-left: 20px;
    }
}

@keyframes luxuryZoom {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.0);
    }
}

.hero-v4-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-v5-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

.hero-v5-text-wrapper {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: heroEnterV6 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

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

/* Clean up unused V5 glass fragments */
.hero-glass-card::after,
.hero-glass-card::before {
    display: none;
}

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

.hero-v4-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
    background: linear-gradient(90deg, #d4af37 0%, #fff 50%, #d4af37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 6s linear infinite;
}

@keyframes goldShimmer {
    to {
        background-position: 200% center;
    }
}

.hero-v4-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-v4-title em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 400;
}

.hero-v4-sub {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-v4 {
    background: var(--gold);
    color: #fff;
    padding: 16px 45px;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-v4:hover {
    background: #fff;
    color: #000 !important;
    transform: translateY(-5px) scale(1.05);
}

.btn-v4-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 16px 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-v4-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

@media (max-width: 768px) {
    .hero-glass-card {
        padding: 40px 20px;
        margin: 0 20px;
        border-radius: 30px;
    }

    .hero-v4-cta {
        flex-direction: column;
        gap: 15px;
    }

    .btn-v4,
    .btn-v4-ghost {
        width: 100%;
    }
}

/* ── CTA Row ── */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFade 0.9s 0.75s ease forwards;
}

/* Ghost button — sits on dark bg */
.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 26px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}

.btn-hero-ghost::after {
    content: '→';
    font-size: 1em;
    transition: transform 0.3s;
}

.btn-hero-ghost:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

.btn-hero-ghost:hover::after {
    transform: translateX(5px);
}

/* WhatsApp CTA button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    /* same as .btn-lg */
    background: #10642f;
    color: #fff;
    border-radius: 50px;
    /* same pill shape as all .btn */
    font-weight: 600;
    font-size: 1rem;
    /* same as .btn-lg */
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(16, 100, 47, 0.30);
}

.btn-whatsapp:hover {
    background: #104122;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(16, 100, 47, 0.45);
    color: #fff;
}

/* ── Stats Ribbon ── */
.hero-ribbon {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(8, 6, 2, 0.60);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(184, 146, 62, 0.20);
    padding: 20px 40px;
    opacity: 0;
    animation: heroFade 1s 1s ease forwards;
}

.hero-ribbon-item {
    flex: 1;
    text-align: center;
    padding: 6px 24px;
}

.hero-ribbon-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 0.3px;
}

.hero-ribbon-item span {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* Dot separator */
.hero-ribbon-dot {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(184, 146, 62, 0.45);
    flex-shrink: 0;
}

/* Google stars */
.hero-stars {
    color: var(--gold-light);
    font-size: 0.7em;
    letter-spacing: 1px;
    margin-right: 4px;
}

/* ── Entrance animation ── */
@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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


/* ── Font Awesome icon sizing overrides ─────────── */
.card-icon i,
.service-card .card-icon i,
.method-card .card-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

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

.contact-icon i {
    font-size: 1rem;
    color: var(--gold);
}

.service-option-icon i {
    font-size: 1.2rem;
}

.footer-contact-item .icon i {
    font-size: 0.9rem;
    color: var(--gold);
}

.timeslots-label .icon i {
    font-size: 1rem;
    color: var(--gold);
}

/* ── Hero badge (kept for potential reuse) ─────── */
.hero-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 14px 20px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px var(--shadow);
}

.hero-badge-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.hero-badge-text {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Hero full-width (Chi Siamo) */
.hero-full {
    position: relative;
    height: 400px;
    display: flex;
    align-items: flex-end;
    padding: 0 0 60px;
    margin-top: 72px;
    overflow: hidden;
}

.hero-full-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-full-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
}

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

.hero-full h1 {
    color: var(--white);
    margin-bottom: 8px;
}

.hero-full .gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-top: 16px;
}

/* Hero centered (Servizi, Lenti) */
.hero-centered {
    text-align: center;
    padding: 140px 0 60px;
    background: var(--ivory-dark);
}

.hero-centered h1 {
    margin-bottom: 20px;
}

.hero-centered p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-light);
}

/* ── Stats Bar ─────────────────────────────────── */
.stats-bar {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.stats-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

/* ── Cards ─────────────────────────────────────── */
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.card:hover {
    border-color: var(--gold-bg);
    box-shadow: 0 8px 30px var(--shadow);
    transform: translateY(-4px);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--ivory-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--gold);
}

.card h3 {
    margin-bottom: 12px;
}

.card p {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

/* Service card (home) */
.service-card {
    text-align: left;
}

.service-card .card-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-bg);
    border-radius: var(--radius);
}

/* Method card — Quiet Luxury Redesign */
.method-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02) !important;
}

.method-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08) !important;
    border-color: var(--gold-bg) !important;
}

.method-card .card-icon {
    margin: 0 auto 30px;
    background: var(--ivory);
    color: var(--gold);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.5s ease;
}

.method-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gold) !important;
    color: #fff !important;
}

/* ── Services V7 (Refined Minimalism) ────── */
.serv-hero-minimal {
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    min-height: 50vh;
}

.serv-hero-minimal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.serv-hero-minimal .container {
    position: relative;
    z-index: 5;
    max-width: 800px;
}

.services-grid-minimal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 0 40px;
}

.service-card-minimal {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.service-card-minimal:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    border-color: var(--gold-light);
}

.service-card-min-img {
    height: 240px;
    overflow: hidden;
}

.service-card-min-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.service-card-minimal:hover .service-card-min-img img {
    transform: scale(1.05);
}

.service-card-min-body {
    padding: 35px;
    text-align: center;
}

.service-card-min-body h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card-min-body p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .services-grid-minimal {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ── Collection Editorial V7 ── */
.collection-editorial {
    background: var(--white);
}

.coll-hero {
    position: relative;
    height: 50vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.coll-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: transform 0.8s ease;
}

.coll-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 12, 10, 0.3), rgba(15, 12, 10, 0.7));
}

.coll-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
}

.coll-hero-content h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    margin: 20px 0;
}

.luxury-hero-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto;
}

.catalog-grid-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    padding: 80px 0;
}

.sticky-sidebar {
    position: sticky;
    top: 120px;
}

.filter-section {
    margin-bottom: 50px;
}

.filter-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 25px;
}

.filter-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.filter-links a {
    color: var(--text-light);
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.filter-links a:hover,
.filter-links a.active {
    color: var(--dark);
    font-weight: 600;
    transform: translateX(10px);
}

.filter-links a.active {
    color: var(--gold);
}

.products-grid-refined {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 60px 40px;
}

.product-card-luxury {
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    padding-bottom: 20px;
}

.product-card-luxury:hover {
    transform: translateY(-12px);
}

.prod-img-box {
    position: relative;
    aspect-ratio: 1/1;
    background: #fdfdfd;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    max-width: 450px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card-luxury:hover .prod-img-box {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.08);
}

.p-img {
    max-width: 85%;
    max-height: 280px;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card-luxury:hover .p-img {
    transform: scale(1.08);
}

.prod-brand-overlay {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--dark);
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
    z-index: 5;
}

.product-card-luxury:hover .prod-brand-overlay {
    opacity: 1;
    transform: translateX(0);
}

.prod-quick-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white) !important;
    padding: 20px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 6;
    text-decoration: none;
}

.product-card-luxury:hover .prod-quick-cta {
    transform: translateY(0);
}

.prod-quick-cta:hover {
    background: var(--gold);
}

.prod-details {
    padding: 10px 0;
}

.prod-cat {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 1.5px;
}

.prod-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.product-card-luxury:hover .prod-name {
    color: var(--gold);
}

.prod-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 991px) {
    .catalog-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sticky-sidebar {
        position: static;
    }
}

/* ── Brand Grid & Collection V8 (Unification) ────── */
.marchi-unified-v8 {
    padding-bottom: 0;
}

.marchi-hero {
    padding: 160px 0 100px;
    text-align: center;
    background: var(--white);
}

.marchi-hero h1 {
    letter-spacing: -2px;
    line-height: 1.1;
    margin: 30px 0;
}

.brand-grid-refined {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    margin: 50px 0 120px;
}

.brand-item-minimal {
    background: #fdfdfd;
    border: 1px solid var(--border-light);
    aspect-ratio: 3/2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.brand-item-minimal::before {
    content: attr(data-brand);
    position: absolute;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-dark);
    opacity: 0.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 0;
}

.brand-item-minimal:hover {
    border-color: var(--gold);
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.brand-item-minimal img {
    max-width: 110px;
    max-height: 45px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.4;
    transition: all 0.4s ease;
}

.brand-item-minimal:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Feature Unification V8 */
.unified-collections {
    padding: 120px 0;
    background: var(--section-ivory);
}

.collections-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.showcase-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
    text-decoration: none;
    display: block;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.5) 30%,
            rgba(0, 0, 0, 0.1) 70%,
            transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: #fff;
    transition: background 0.5s ease;
}

.showcase-item:hover .showcase-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.6) 40%,
            rgba(0, 0, 0, 0.2) 80%,
            transparent 100%);
}

.showcase-overlay h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
    letter-spacing: -1px;
}

.showcase-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    max-width: 80%;
}

.showcase-overlay .link-underline {
    display: inline-block;
    padding: 8px 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.showcase-item:hover .link-underline {
    border-bottom-color: var(--gold);
    color: var(--gold) !important;
}

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

    .showcase-item {
        height: 350px;
    }
}

/* Scroll Reveal Core Fix */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

@media (max-width: 1100px) {
    .service-luxury-inner {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .service-luxury-info {
        max-width: 800px;
        margin: 0 auto;
    }

    .service-luxury-img {
        height: 450px;
    }

    .service-row-luxury {
        padding: 100px 0;
    }
}

/* Product category card */
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--ivory-dark);
    padding: 0;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card-body {
    padding: 20px 24px;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.product-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

/* ── News Cards ─────────────────────────────────── */
.news-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.news-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
    border-color: var(--gold-bg);
}

.news-card-image {
    height: 240px;
    background: var(--ivory-dark);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.news-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-card:hover .news-card-image::after {
    opacity: 1;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-card:hover .news-card-image img {
    transform: scale(1.08);
}

.news-card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--dark);
    transition: color 0.3s ease;
}

.news-card:hover .news-card-title {
    color: var(--gold);
}

.news-card-excerpt {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.news-card-date {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.news-read-more {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.news-card:hover .news-read-more {
    gap: 10px;
    transform: translateX(3px);
}

/* News featured card (page 1) */
.news-featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 56px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-featured-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    border-color: var(--gold-bg);
}

.news-featured-img {
    height: 480px;
    overflow: hidden;
    position: relative;
}

.news-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.news-featured-content {
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-featured-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--dark);
}

.news-featured-excerpt {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 32px;
}

@media (max-width: 1024px) {
    .news-featured-card {
        grid-template-columns: 1fr;
    }

    .news-featured-img {
        height: 320px;
    }

    .news-featured-content {
        padding: 40px;
    }
}

/* News tag badges */
.news-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.news-tag-gold {
    background: var(--gold-light);
    color: var(--gold-dark);
}

.news-tag-dark {
    background: var(--dark);
    color: var(--white);
}

.news-tag-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

/* News list grid (news.php) */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Pagination */
.news-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 64px;
}

.news-pag-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-decoration: none;
}

.news-pag-btn:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.news-pag-active {
    background: var(--gold);
    color: var(--white) !important;
    border-color: var(--gold);
}

.news-pag-disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* ── Article Detail Page ────────────────────────── */

/* Breadcrumb */
.article-breadcrumb {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.article-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.article-breadcrumb a {
    color: var(--text-light);
    transition: color 0.2s;
    text-decoration: none;
}

.article-breadcrumb a:hover {
    color: var(--gold);
}

.article-breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.4;
}

.article-breadcrumb span {
    color: var(--dark);
    font-weight: 600;
}

/* Hero image */
.article-hero-img {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 700px;
    overflow: hidden;
    background: var(--ivory-dark);
}

.article-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Article layout */
.article-page {
    padding: 80px 0;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.article-main {
    max-width: 800px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.article-date {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.article-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 32px;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.article-lead {
    font-size: 1.25rem;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 48px;
    font-family: var(--font-serif);
    font-style: italic;
    opacity: 0.9;
    padding-left: 28px;
    border-left: 4px solid var(--gold);
}

.article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 28px;
}

.article-back {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.sidebar-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--dark);
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.sidebar-related {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-article-item {
    display: flex;
    gap: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-article-item:hover .sidebar-article-title {
    color: var(--gold);
}

.sidebar-article-img {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-article-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}

.sidebar-article-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
    transition: color 0.3s;
}

.sidebar-article-date {
    font-size: 0.75rem;
    color: var(--text-light);
}

.sidebar-cta-widget {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    border: none;
    color: var(--white);
    text-align: center;
}

.sidebar-cta-widget p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1100px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .article-sidebar {
        position: static;
        max-width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .article-hero-img {
        height: 40vh;
        min-height: 300px;
    }

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

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

    .article-back {
        flex-direction: column;
    }

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



/* Review card */
.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border);
    position: relative;
}

.review-card::before {
    content: '"';
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--gold-bg);
    position: absolute;
    top: 10px;
    left: 24px;
    line-height: 1;
}

.review-card p {
    font-size: 0.92rem;
    font-style: italic;
    margin-bottom: 16px;
}

.review-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gold);
}

.review-author::before {
    content: '— ';
}

/* Team card */
.team-card {
    text-align: left;
}

.team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.team-card h3 {
    font-size: 1.15rem;
    margin-bottom: 2px;
}

.team-card .role {
    font-size: 0.82rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 0.88rem;
    color: var(--text-light);
}

/* ── Service Block (numbered, servizi page) ────── */
.service-block {
    padding: 80px 0;
}

.service-block:nth-child(even) .grid-2 {
    direction: rtl;
}

.service-block:nth-child(even) .grid-2>* {
    direction: ltr;
}

.service-block .service-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
    color: var(--gold-bg);
    line-height: 1;
    margin-bottom: 8px;
}

.service-block h2 {
    margin-bottom: 16px;
}

.service-block p {
    margin-bottom: 20px;
}

.service-block img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.service-bullets {
    margin-bottom: 24px;
}

.service-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    font-size: 0.92rem;
    font-weight: 500;
}

.service-bullet::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}

/* ── Guarantee badges ──────────────────────────── */
.guarantee-bar {
    padding: 60px 0;
    background: var(--ivory-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.guarantee-item {
    text-align: center;
    padding: 20px;
}

.guarantee-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.guarantee-item h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.guarantee-item p {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ── FAQ Accordion ─────────────────────────────── */
.faq-section {
    padding: 80px 0;
    background: var(--ivory-dark);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold-bg);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    transition: var(--transition);
    background: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-toggle {
    font-size: 1.4rem;
    color: var(--gold);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ── Brand Carousel ────────────────────────────── */
.brands-section {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.brands-section .section-label {
    text-align: center;
    margin-bottom: 12px;
}

.brands-track {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.brands-track img {
    height: 32px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition);
}

.brands-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ── Reviews Section ───────────────────────────── */
.reviews-section {
    padding: var(--section-padding);
}

.reviews-header {
    text-align: center;
    margin-bottom: 48px;
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.reviews-score {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
}

.reviews-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

.reviews-count {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ── Lenti Section (split) ─────────────────────── */
.lenti-split {
    padding: 80px 0;
}

.lenti-split:nth-child(even) {
    background: var(--white);
}

.lenti-split .grid-2 {
    gap: 60px;
}

.lenti-split h2 {
    margin-bottom: 16px;
}

.lenti-split p {
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.lenti-split img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* ── Lens brands (non sai da dove iniziare) ────── */
.lens-brands {
    padding: 60px 0;
    text-align: center;
}

.lens-brands h2 {
    margin-bottom: 40px;
}

.lens-brand-card {
    text-align: center;
    padding: 24px;
}

.lens-brand-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-sans);
}

.lens-brand-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ── Montature Grid ────────────────────────────── */
.montature-section {
    padding: 80px 0;
}

.montature-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

/* ── CTA Banner ────────────────────────────────── */
.cta-banner {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
    color: var(--white);
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.cta-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 8, 4, 0.95) 0%, rgba(184, 146, 62, 0.2) 100%);
}

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

.cta-banner h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 24px;
    color: var(--white);
    line-height: 1.1;
}

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

.cta-banner .btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* ── Timeline ──────────────────────────────────── */
.timeline {
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold-bg);
}

.timeline-item {
    margin-bottom: 32px;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -28px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--ivory);
}

.timeline-year {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 2px;
}

.timeline-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.timeline-text {
    font-size: 0.88rem;
    color: var(--text-light);
}

/* ── Contact / Map Section ─────────────────────── */
.map-section {
    padding: 0;
    overflow: hidden;
}

.map-section .grid-2 {
    gap: 0;
}

.map-container {
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-info {
    padding: 48px;
    background: var(--ivory-dark);
}

.contact-info h2 {
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.92rem;
}

.contact-icon {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.hours-grid {
    margin-top: 24px;
}

.hours-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 0.9rem;
}

.hours-day {
    font-weight: 600;
    color: var(--dark);
}

.hours-time {
    color: var(--text-light);
}

/* ── Footer ────────────────────────────────────── */
.footer {
    background: #0a0804;
    color: rgba(255, 255, 255, 0.6);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(184, 146, 62, 0.3), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand .footer-logo img {
    transition: var(--transition);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(184, 146, 62, 0.4);
}

.footer h4 {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-links a {
    display: block;
    padding: 8px 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    font-size: 0.85rem;
}

/* ── Cookie Banner ─────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 20px;
    right: 20px;
    background: rgba(10, 8, 4, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(184, 146, 62, 0.2);
    border-radius: 16px;
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    visibility: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.cookie-banner.visible {
    bottom: 30px;
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.cookie-icon {
    font-size: 2rem;
    color: var(--gold);
}

.cookie-content p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.cookie-content a {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 600;
}

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

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

    .cookie-banner .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer {
        padding: 60px 0 30px;
    }
}

/* ── Booking Page ──────────────────────────────── */
.booking-page {
    display: flex;
    min-height: 100vh;
}

.booking-left {
    width: 45%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px;
    color: var(--white);
}

.booking-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
}

.booking-left * {
    position: relative;
    z-index: 1;
}

.booking-left .section-label {
    color: var(--gold-light);
}

.booking-left h1 {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.booking-left p {
    font-size: 0.95rem;
    opacity: 0.85;
}

.booking-right {
    width: 55%;
    margin-left: 45%;
    min-height: 100vh;
    background: var(--ivory);
    padding: 48px 60px;
    display: flex;
    flex-direction: column;
}

/* Progress bar */
.booking-progress {
    margin-bottom: 32px;
}

.booking-step-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.booking-step-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.progress-bar-track {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.booking-percent {
    font-size: 0.78rem;
    color: var(--text-light);
    text-align: right;
    margin-top: 4px;
}

/* ── Horizontal Day Picker ─────────────────────── */
.day-picker-container {
    margin-bottom: 40px;
    position: relative;
}

.day-picker-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 5px 60px;
    /* Increased bottom padding for arrows */
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.day-picker-scroll::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar */
}


.day-card {
    flex: 0 0 100px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.day-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.day-card.selected {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    /* Changed from var(--text-dark) to var(--white) for better contrast */
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(184, 146, 62, 0.3);
}

.day-card .day-name {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.day-card.selected .day-name {
    color: rgba(255, 255, 255, 0.8);
}

.day-card .day-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.day-card .day-month {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
}

.day-card.selected .day-month {
    color: rgba(255, 255, 255, 0.9);
}

/* Day Nav Arrows ATTACHED under card */
.day-nav-arrows {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.day-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(184, 146, 62, 0.3);
}

.day-nav-btn:hover:not(:disabled) {
    background: var(--gold-dark);
    transform: scale(1.1);
}

.day-nav-btn:disabled {
    opacity: 0.3;
    pointer-events: none;
}

@media (max-width: 576px) {
    .day-card {
        flex: 0 0 85px;
        padding: 15px 5px;
    }

    .day-card .day-number {
        font-size: 1.5rem;
    }
}

/* Step content */
.booking-step {
    display: none;
    flex: 1;
    flex-direction: column;
}

.booking-step.active {
    display: flex;
}

.booking-step h2 {
    margin-bottom: 8px;
}

.booking-step>p {
    color: var(--text-light);
    margin-bottom: 32px;
}

/* Service selection cards */
.service-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.service-option:hover,
.service-option.selected {
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(184, 146, 62, 0.15);
}

.service-option-icon {
    width: 48px;
    height: 48px;
    background: var(--ivory-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}

.service-option.selected .service-option-icon {
    background: var(--gold);
    color: var(--white);
}

.service-option-info {
    flex: 1;
}

.service-option-name {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.service-option-desc {
    font-size: 0.85rem;
    color: var(--text-light);
}

.service-option-duration {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
}

/* ── Calendar Widget ─────────────────────────────── */
.cal-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 20px 20px;
    margin-bottom: 20px;
}

/* Header */
.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.cal-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.cal-nav {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text-light);
    font-size: 0.7rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cal-nav:hover:not(:disabled) {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.cal-nav:disabled {
    opacity: 0.25;
    cursor: default;
}

/* Ghost / disabled */
.cal-day--ghost {
    opacity: 0.3;
    pointer-events: none;
}

.cal-day--empty {
    visibility: hidden;
    pointer-events: none;
}

.cal-day--disabled {
    opacity: 0.2;
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.02);
}

/* Weekday row */
.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 4px;
}

.cal-weekdays span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 4px 0;
}

/* Day grid */
.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.cal-day {
    position: relative;
    width: 100%;
    max-width: 40px;
    height: 36px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.82rem;
    font-weight: 500;
    border: none;
    background: transparent;
    color: var(--dark);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.cal-day:hover:not(.cal-day--disabled):not(.cal-day--ghost) {
    background: var(--gold-bg);
    color: var(--gold);
}

/* Today ring */
.cal-day--today {
    font-weight: 700;
    color: var(--gold);
}

.cal-day--today::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    pointer-events: none;
}

/* Selected */
.cal-day--selected,
.cal-day--selected.cal-day--today {
    background: var(--gold);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(184, 146, 62, .3);
}

.cal-day--selected::after {
    display: none;
}

/* Ghost / disabled */
.cal-day--disabled,
.cal-day--ghost {
    color: var(--border);
    cursor: default;
    font-weight: 400;
}

/* Time slots */
.timeslots-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 16px;
}

.timeslots-label .icon {
    color: var(--gold);
}

.timeslots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.timeslot {
    padding: 14px;
    text-align: center;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.timeslot.selected {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.timeslot.disabled {
    opacity: 0.4;
    cursor: default;
}

/* Booking buttons */
.booking-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 32px;
}

.booking-actions .btn {
    flex: 1;
    justify-content: center;
}

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

.btn-back:hover {
    background: var(--ivory-dark);
}

/* Booking form (step 3) */
.booking-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--dark);
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 146, 62, 0.1);
}

textarea.form-input {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-summary {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}

.booking-summary h3 {
    font-size: 1rem;
    margin-bottom: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
}

.summary-label {
    color: var(--text-light);
}

.summary-value {
    font-weight: 600;
    color: var(--dark);
}

/* ── Booking Footer ────────────────────────────── */
.booking-footer {
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ── Scroll Animations ─────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ── Mobile Menu Overlay ───────────────────────── */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 72px;
    background: var(--ivory);
    z-index: 999;
    padding: 40px 24px;
    flex-direction: column;
    gap: 0;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu .btn {
    margin-top: 24px;
    text-align: center;
    justify-content: center;
}

/* ── Admin Styles ──────────────────────────────── */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ivory);
}

.admin-login-box {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px var(--shadow);
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.admin-login-box h1 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.admin-login-box p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.admin-login-box .form-group {
    text-align: left;
}

.admin-login-box .btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.admin-error {
    color: #c0392b;
    font-size: 0.88rem;
    margin-bottom: 16px;
    background: #fdf0ef;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
    .grid-2 {
        gap: 32px;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .navbar-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .mobile-title-only {
        display: block !important;
    }

    .desktop-title-only {
        display: none !important;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    /* Mobile Carousel for home */
    .mobile-carousel {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        margin-right: -20px;
        margin-left: -20px;
        padding-left: 20px;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .mobile-carousel::-webkit-scrollbar {
        display: none;
    }

    .mobile-carousel>* {
        flex: 0 0 250px;
        scroll-snap-align: start;
        max-width: 250px;
    }

    .brands-label {
        font-size: 1rem !important;
        margin-bottom: 20px !important;
    }

    .news-card-image {
        height: 160px;
    }

    .news-card-image img {
        height: 100%;
        object-fit: cover;
    }

    .news-card-body {
        padding: 12px;
    }

    .news-card-body h3 {
        font-size: 1.05rem;
        line-height: 1.3;
        margin-top: 5px;
        margin-bottom: 8px;
    }

    .news-card-body p {
        font-size: 0.85rem;
        margin-bottom: 5px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .review-card {
        padding: 12px;
        margin-right: 5px;
    }

    .mobile-carousel .review-card {
        flex: 0 0 220px;
        max-width: 220px;
    }

    .review-stars {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }

    .review-author-name {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 2px;
    }

    .review-verified {
        font-size: 0.65rem;
        color: #34a853;
        margin-bottom: 8px;
    }

    .review-text {
        font-size: 0.8rem;
        line-height: 1.3;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

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

    .grid-2x2 {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 100px 0 60px;
    }

    /* Hero V5 (home) */
    .hero-v5 {
        min-height: 100vh;
    }

    .hero-v5-content {
        padding: 0 16px;
    }

    .hero-full {
        height: 300px;
    }

    /* Hero Immersive responsive */
    .hero-immersive {
        min-height: 85vh;
    }

    .hero-panel {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

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

    .hero-ribbon {
        padding: 14px 16px;
    }

    .hero-ribbon-item {
        padding: 4px 10px;
    }

    .hero-ribbon-item strong {
        font-size: 0.85rem;
    }

    .service-block:nth-child(even) .grid-2 {
        direction: ltr;
    }

    .service-block img {
        height: 260px;
    }

    .stats-bar .container {
        justify-content: space-between;
    }

    .stat-item {
        flex: 0 0 calc(50% - 10px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* ── Story rows (Chi Siamo) ── */
    .story-row,
    .story-row.story-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 32px;
        margin-bottom: 80px;
    }

    .story-row.story-reverse>* {
        direction: ltr;
    }

    .story-image-wrap {
        height: 280px;
        box-shadow: none;
    }

    .story-text {
        padding: 0;
    }

    .story-text h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .story-text p {
        font-size: 1rem;
    }

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

    /* ── About hero ── */
    .about-hero {
        min-height: 50vh;
        height: 50vh;
    }

    /* ── Intro glass card (Chi Siamo / Servizi) ── */
    .intro-glass-card {
        padding: 40px 24px;
    }

    /* ── Contact section (Chi Siamo) ── */
    .contact-details-side {
        padding: 40px 24px;
    }

    /* ── Lenti split section (index) ── */
    .section#lenti .p-5 {
        padding: 2rem 1.5rem;
    }

    /* ── News featured card ── */
    .news-featured-content {
        padding: 30px 24px;
    }

    /* ── Booking responsive ── */
    .booking-page {
        flex-direction: column;
    }

    .booking-left {
        width: 100%;
        position: relative;
        height: 300px;
        padding: 32px 24px;
    }

    .booking-right {
        width: 100%;
        margin-left: 0;
        padding: 32px 24px;
        min-height: auto;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        text-align: center;
        justify-content: center;
    }

    /* Hero ribbon — 480px: 2×2 grid */
    .hero-ribbon {
        flex-wrap: wrap;
        padding: 12px 16px;
    }

    .hero-ribbon-item {
        flex: 0 0 calc(50% - 1px);
    }

    .hero-ribbon-dot {
        display: none;
    }

    .stats-bar .container {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        flex: none;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .brands-track {
        gap: 24px;
    }

    .booking-left h1 {
        font-size: 1.6rem;
    }

    /* ── Story rows further compact ── */
    .story-row,
    .story-row.story-reverse {
        gap: 20px;
        margin-bottom: 60px;
    }

    .story-image-wrap {
        height: 220px;
    }

    /* ── Team grid single column ── */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* ── Service card body padding ── */
    .service-card-min-body {
        padding: 24px 20px;
    }

    /* ── Contact card ── */
    .contact-premium-card {
        border-radius: 0;
    }

    .contact-details-side {
        padding: 32px 16px;
    }

    .map-side {
        min-height: 280px;
    }

    /* ── Legal ── */
    .legal-card {
        padding: 24px 16px;
    }

    .legal-content {
        margin: 40px auto;
    }
}

/* ── Desktop Carousels (News/Reviews) ─────────────────────────── */
@media (min-width: 769px) {
    .desktop-carousel {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 30px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .desktop-carousel::-webkit-scrollbar {
        display: none;
    }

    .desktop-carousel>* {
        flex: 0 0 380px;
        scroll-snap-align: start;
        max-width: 380px;
    }

    .desktop-carousel .review-card {
        flex: 0 0 340px;
        max-width: 340px;
    }
}

/* ── Google Reviews Section (Manual Fallback) ── */
.reviews-section {
    background: var(--white);
    padding: 100px 0;
}

.reviews-header {
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.reviews-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    margin-top: 24px;
}

.google-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.google-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: #fbbc04;
    /* Google Star Color */
    font-weight: 700;
}

.google-stars span {
    color: var(--dark);
    margin-left: 4px;
}

.google-source {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
}

.review-card {
    background: var(--ivory-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-bg);
}

.review-stars {
    color: #fbbc04;
    font-size: 0.8rem;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.review-card p.review-text {
    font-size: 0.8rem;
    line-height: 1.3;
    color: var(--text-dark);
    font-style: italic;
    flex: 1;
}

.review-author-name {
    font-weight: 700;
    font-size: 0.90rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.review-verified {
    font-size: 0.65rem;
    font-weight: 600;
    color: #34a853;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* ── Animation Helpers ─────────────────────────── */
.js-enabled .animate-up,
.js-enabled .grid-animate>*,
.js-enabled .hero-content>* {
    opacity: 0;
    will-change: transform, opacity;
}

/* Fallback if JS fails or for initial reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

@media (prefers-reduced-motion: reduce) {

    .animate-up,
    .reveal,
    .grid-animate>* {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 768px) {
    .reviews-google-badge {
        flex-direction: column;
        text-align: center;
        border-radius: var(--radius);
        padding: 20px;
    }

    .google-info {
        align-items: center;
        margin-top: 8px;
    }
}


/* ── Premium Layouts (Used in Chi Siamo, Servizi) ── */
.about-hero {
    position: relative;
    height: 70vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 72px;
    box-shadow: inset 0 -100px 100px rgba(0, 0, 0, 0.2);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/shop-interior-1.jpg');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    z-index: 0;
    transform: scale(1.1);
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Disable fixed attachment on iOS/mobile (causes rendering bugs) */
@media (max-width: 768px) {
    .about-hero-bg {
        background-attachment: scroll;
        transform: none;
    }

    .coll-hero-bg {
        background-attachment: scroll;
    }
}

.about-hero:hover .about-hero-bg {
    transform: scale(1.05);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(26, 26, 26, 0.2) 0%,
            rgba(26, 26, 26, 0.6) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 5vw;
}

.about-hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -2px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.about-hero-content h1 em {
    color: var(--gold);
    font-style: italic;
}

.about-hero-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 40px auto 0;
    opacity: 0.8;
}

/* ── Zigzag Storytelling / Service Rows ── */
/* ── Story Section Redesign ── */
.story-row {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 10vw;
    align-items: center;
    margin-bottom: 180px;
    padding: 0;
}

.story-row.story-reverse {
    grid-template-columns: 0.85fr 1.15fr;
    direction: rtl;
}

.story-row.story-reverse>* {
    direction: ltr;
}

.story-image-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 750px;
    box-shadow: 60px 60px 120px rgba(0, 0, 0, 0.04);
}

.story-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.story-row:hover .story-image-wrap img {
    transform: scale(1.08);
}

.story-text {
    padding: 0 40px;
}

.story-year {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: block;
    font-style: italic;
}

.story-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--dark);
    margin-bottom: 35px;
    line-height: 1;
}

.story-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-light);
    font-weight: 300;
}

.service-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--text);
}

.service-features-list i {
    color: var(--gold);
}

/* ── Intro Glass Card ── */
.intro-glass-card {
    background: var(--white);
    padding: 80px 60px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-light);
    max-width: 900px;
    margin: 0 auto;
}

.intro-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 30px;
}

/* ── Process Steps ── */
.process-section {
    padding: 120px 0;
    background: #0a0804;
}

.process-step {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    /* More editorial */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
    border-color: var(--gold);
}

.step-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 20px;
}

.process-step h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* ── FAQ Refinement ── */
.faq-item {
    border: none;
    background: var(--ivory);
    margin-bottom: 15px;
    border-radius: 15px;
}

.faq-question {
    background: transparent;
    padding: 25px 30px;
    border-radius: 15px;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
}

.faq-toggle i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ── Premium Team Grid ── */
.team-section {
    background: #111;
    padding: 120px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    background: transparent;
    border: none;
}

.team-portrait {
    position: relative;
    aspect-ratio: 4/5;
    background: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
}

.team-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: all 0.4s ease;
}

.team-info-hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    margin-top: 15px;
}

.team-portrait:hover img {
    transform: scale(1.08);
    filter: grayscale(40%) brightness(0.6);
}

.team-portrait:hover .team-overlay {
    background: rgba(184, 146, 62, 0.85);
    backdrop-filter: blur(5px);
}

.team-portrait:hover .team-info-hidden {
    max-height: 200px;
    opacity: 1;
}

.team-name {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.1;
    transition: transform 0.4s ease;
}

.team-role {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 600;
}

.team-portrait:hover .team-name {
    transform: translateY(0);
}

.team-portrait:hover .team-role {
    color: #fff;
}

.team-bio {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ── Premium Contact Section (Vieni a Trovarci) ── */
.contact-premium-card {
    background: var(--white);
    border-radius: 4px;
    /* Editorial sharp corners */
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-details-side {
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-bottom: 35px;
}

.contact-info-item i {
    color: var(--gold);
    font-size: 1.3rem;
    margin-top: 4px;
    width: 24px;
    text-align: center;
}

.contact-info-text strong {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-info-text span {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 300;
}

.hours-card-minimal {
    background: var(--ivory);
    padding: 35px;
    border-radius: 2px;
    margin-top: 20px;
    border-left: 2px solid var(--gold-bg);
}

.hours-card-minimal strong.hours-title {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
    color: var(--dark);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 1rem;
}

.hours-day {
    color: var(--text-light);
    font-weight: 300;
}

.hours-time {
    color: var(--dark);
    font-weight: 600;
}

.map-side {
    position: relative;
    min-height: 600px;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.5s ease;
}

.map-side:hover {
    filter: grayscale(0%) contrast(1);
}

@media (max-width: 991px) {
    .contact-premium-card {
        grid-template-columns: 1fr;
    }

    .map-side {
        min-height: 400px;
    }
}

/* ── Legal Pages ───────────────────────────────── */
.legal-hero {
    background: var(--ivory-dark);
    padding: 100px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
    color: var(--dark);
}

.legal-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.legal-card {
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--dark);
    border-bottom: 2px solid var(--gold-bg);
    display: inline-block;
    padding-bottom: 4px;
}

.legal-section p,
.legal-section ul {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-section ul {
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .legal-card {
        padding: 30px 20px;
    }
}

/* ════════════════════════════════════════════════════
   MARCHI E-COMMERCE — Landing Page (marchi.php)
   ════════════════════════════════════════════════════ */

/* ── Hero ── */
.marchi-ec-hero {
    padding: 120px 0 80px;
    background: var(--ivory);
    overflow: hidden;
    position: relative;
}

.marchi-ec-hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 5vw;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1280px) {
    .marchi-ec-hero-inner {
        padding: 0 40px;
    }
}

.marchi-ec-eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.marchi-ec-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 28px;
}

.marchi-ec-title em {
    font-style: italic;
    color: var(--gold);
}

.marchi-ec-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 300;
}

.marchi-ec-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── Hero Decoration ── */
.marchi-ec-hero-deco {
    position: relative;
    width: 280px;
    height: 280px;
    flex-shrink: 0;
}

.marchi-ec-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
}

.marchi-ec-orb-1 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, var(--gold-bg) 0%, transparent 70%);
    top: 0;
    left: 0;
    animation: orbFloat1 6s ease-in-out infinite;
}

.marchi-ec-orb-2 {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
    bottom: 0;
    right: 0;
    opacity: 0.3;
    animation: orbFloat2 8s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(15px) scale(1.1);
    }
}

.marchi-ec-hero-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border: 1.5px solid rgba(184, 146, 62, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
}

.marchi-ec-hero-frame::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 1px dashed rgba(184, 146, 62, 0.2);
    border-radius: 50%;
    animation: frameSpin 20s linear infinite;
}

@keyframes frameSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.marchi-ec-frame-inner {
    text-align: center;
}

.marchi-ec-frame-icon {
    font-size: 2.5rem;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.marchi-ec-frame-inner span {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* ── Brand Sections Head ── */
.marchi-ec-brands {
    padding: 80px 0 100px;
}

.marchi-ec-section-head {
    text-align: center;
    margin-bottom: 60px;
}

.marchi-ec-section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-top: 10px;
    margin-bottom: 16px;
}

.marchi-ec-section-sub {
    color: var(--text-light);
    font-size: 1rem;
}

/* ── Brand Mosaic Grid ── */
.brand-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.brand-mosaic-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.brand-mosaic-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-light);
}

.brand-mosaic-logo-wrap {
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 28px;
    min-height: 160px;
    transition: var(--transition);
}

.brand-mosaic-card:hover .brand-mosaic-logo-wrap {
    background: var(--gold-bg);
}

.brand-mosaic-logo {
    max-height: 70px;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(40%);
    transition: filter 0.4s, transform 0.4s;
}

.brand-mosaic-card:hover .brand-mosaic-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.brand-mosaic-info {
    padding: 20px 22px 16px;
    flex: 1;
    border-top: 1px solid var(--border);
}

.brand-mosaic-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.brand-mosaic-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.brand-mosaic-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(184, 146, 62, 0.0) 0%,
            rgba(184, 146, 62, 0.88) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 28px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.brand-mosaic-card:hover .brand-mosaic-hover {
    opacity: 1;
}

.brand-mosaic-cta {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.marchi-empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}

.marchi-empty-state i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--border);
    display: block;
}

/* ── Collections Split CTA ── */
.marchi-ec-collections {
    padding: 80px 0 100px;
    background: var(--ivory);
}

.marchi-ec-coll-head {
    margin-bottom: 50px;
}

.marchi-ec-coll-split {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 0;
}

.marchi-coll-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    transition: var(--transition);
}

.marchi-coll-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.marchi-coll-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.marchi-coll-card:hover .marchi-coll-bg {
    transform: scale(1.05);
}

.marchi-coll-bg-vista {
    background-color: #2a3240;
    background-image:
        radial-gradient(ellipse at 30% 60%, rgba(184, 146, 62, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 20%, rgba(100, 120, 160, 0.4) 0%, transparent 50%);
}

.marchi-coll-bg-sole {
    background-color: #2d2418;
    background-image:
        radial-gradient(ellipse at 60% 40%, rgba(184, 146, 62, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(210, 160, 80, 0.25) 0%, transparent 50%);
}

.marchi-coll-bg-lenti {
    background-color: #1a2e2d;
    background-image:
        radial-gradient(ellipse at 40% 30%, rgba(60, 160, 140, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(184, 146, 62, 0.2) 0%, transparent 50%);
}

.marchi-coll-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.marchi-coll-content {
    position: relative;
    z-index: 2;
    padding: 36px;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
}

.marchi-coll-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(184, 146, 62, 0.25);
    border: 1px solid rgba(184, 146, 62, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 18px;
    backdrop-filter: blur(6px);
}

.marchi-coll-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.marchi-coll-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 14px;
}

.marchi-coll-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 320px;
}

.marchi-coll-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 4px;
    transition: border-color 0.3s, gap 0.3s;
}

.marchi-coll-card:hover .marchi-coll-cta {
    border-color: var(--gold-light);
    gap: 14px;
}


/* ════════════════════════════════════════════════════
   BRAND PAGE E-COMMERCE — Single Brand (marchio.php)
   ════════════════════════════════════════════════════ */

.brand-page-ec {
    padding-top: 72px;
    /* navbar height */
}

/* ── Brand Hero ── */
.brand-page-hero {
    background: var(--ivory-dark);
    padding: 60px 0 50px;
    position: relative;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

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

.brand-page-hero-grid-deco {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184, 146, 62, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 146, 62, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.brand-page-breadcrumb {
    margin-bottom: 32px;
}

.brand-bc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: gap 0.3s;
}

.brand-bc-link:hover {
    gap: 12px;
    color: var(--gold-dark);
}

.brand-page-hero-content {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.brand-page-logo-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 120px;
    flex-shrink: 0;
    box-shadow: 0 4px 20px var(--shadow);
}

.brand-page-logo {
    max-height: 70px;
    max-width: 200px;
    object-fit: contain;
}

.brand-page-name {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.brand-page-desc {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.brand-page-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand-stat {
    text-align: center;
}

.brand-stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.brand-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.brand-stat-sep {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ── Catalog Section ── */
.brand-page-catalog {
    padding: 48px 0 80px;
}

/* ── Filter Bar ── */
.brand-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.brand-filter-tabs {
    position: relative;
    display: inline-flex;
    background: var(--ivory-dark);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 4px;
    gap: 0;
}

.brand-tab {
    position: relative;
    z-index: 1;
    background: transparent;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.brand-tab.active {
    color: var(--dark);
    font-weight: 600;
}

.brand-tab-count {
    font-size: 0.72rem;
    background: var(--border);
    border-radius: 10px;
    padding: 1px 7px;
    color: var(--text-light);
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}

.brand-tab.active .brand-tab-count {
    background: var(--gold);
    color: var(--white);
}

/* Sliding pill indicator */
.brand-tab-indicator {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: 0;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.brand-filter-results {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ── Product Grid (Brand Page) ── */
.brand-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.brand-product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.brand-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
    border-color: var(--gold-light);
}

.brand-card-hidden {
    display: none !important;
}

.brand-prod-img-wrap {
    position: relative;
    background: var(--ivory);
    aspect-ratio: 4/3;
    overflow: hidden;
}

.brand-prod-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
}

.brand-prod-badge-vista {
    background: rgba(45, 65, 100, 0.85);
    color: #fff;
}

.brand-prod-badge-sole {
    background: rgba(184, 120, 30, 0.85);
    color: #fff;
}

.brand-prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.brand-product-card:hover .brand-prod-img {
    transform: scale(1.06);
}

.brand-prod-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    opacity: 0;
    transition: opacity 0.35s;
}

.brand-product-card:hover .brand-prod-overlay {
    opacity: 1;
}

.brand-prod-cta-btn {
    background: var(--gold);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 11px 22px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s, transform 0.3s;
    transform: translateY(8px);
}

.brand-product-card:hover .brand-prod-cta-btn {
    transform: translateY(0);
}

.brand-prod-cta-btn:hover {
    background: var(--gold-dark);
}

.brand-prod-details {
    padding: 20px 22px 24px;
}

.brand-prod-meta {
    margin-bottom: 6px;
}

.brand-prod-type {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
}

.brand-prod-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.brand-prod-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.brand-prod-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s, color 0.3s;
}

.brand-prod-link:hover {
    gap: 10px;
    color: var(--gold-dark);
}

/* ── No Results ── */
.brand-no-results {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}

.brand-no-results-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--ivory-dark);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--text-light);
}

.brand-no-results h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 8px;
}

/* ── Prenota CTA Section ── */
.brand-page-prenota {
    background: var(--ivory-dark);
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.brand-prenota-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.brand-prenota-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 10px;
}

.brand-prenota-text p {
    color: var(--text-light);
    margin: 0;
}

.brand-prenota-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}


/* ════════════════════════════════════════════════════
   COLLEZIONE E-COMMERCE (collezione.php)
   ════════════════════════════════════════════════════ */

.coll-ec {
    padding-top: 72px;
}

/* ── Hero Slim ── */
.coll-ec-hero {
    background: var(--ivory-dark);
    border-bottom: 1px solid var(--border);
    padding: 36px 0 32px;
}

.coll-ec-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.coll-ec-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-light);
}

.coll-ec-breadcrumb a {
    color: var(--gold);
    font-weight: 500;
    text-decoration: none;
}

.coll-ec-breadcrumb a:hover {
    color: var(--gold-dark);
}

.coll-bc-sep {
    font-size: 0.6rem;
    color: var(--border);
}

.coll-ec-hero-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.coll-ec-hero-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--gold-bg);
    border: 1px solid rgba(184, 146, 62, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.coll-ec-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 400;
    color: var(--dark);
    margin: 0;
}

/* ── Body Layout ── */
.coll-ec-body {
    padding: 0 0 80px;
}

.coll-ec-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
    padding-top: 36px;
}

/* ── Sidebar ── */

.coll-sidebar-sticky {
    position: sticky;
    top: 88px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.coll-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--ivory);
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    user-select: none;
}

.coll-sidebar-header i {
    color: var(--gold);
}

.coll-sidebar-chevron {
    color: var(--text-light);
    font-size: 0.75rem;
    transition: transform 0.3s;
    transform: rotate(180deg);
}

.coll-sidebar-body {
    padding: 8px 0 16px;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    max-height: 2000px;
    opacity: 1;
    overflow: hidden;
}

.coll-sidebar-body.coll-sidebar-collapsed {
    max-height: 0;
    opacity: 0;
    padding: 0;
}

/* Active Filters Chips */
.coll-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
}

.coll-chip-remove {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--gold-bg);
    color: var(--gold-dark);
    border: 1px solid rgba(184, 146, 62, 0.3);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.coll-chip-remove:hover {
    background: var(--border);
}

.coll-reset-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    font-size: 0.76rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.coll-reset-link:hover {
    color: var(--dark);
}

/* Filter Groups */
.coll-filter-group {
    padding: 16px 20px 10px;
    border-bottom: 1px solid var(--ivory-dark);
}

.coll-filter-group:last-of-type {
    border-bottom: none;
}

.coll-filter-title {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 12px;
}

.coll-filter-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.coll-filter-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--text);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.coll-filter-link:hover {
    background: var(--ivory);
    color: var(--dark);
}

.coll-filter-link.active {
    background: var(--gold-bg);
    color: var(--gold-dark);
    font-weight: 600;
}

.coll-filter-link i {
    width: 16px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

.coll-filter-link.active i {
    color: var(--gold);
}

/* Brand filter with logo */
.coll-filter-brand {
    padding: 6px 10px;
}

.coll-brand-mini-logo {
    height: 20px;
    width: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Sidebar CTA */
.coll-sidebar-cta {
    padding: 16px 20px 4px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}

.coll-sidebar-cta p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

/* ── Main Catalog ── */
.coll-ec-main {
    min-width: 0;
}

/* Toolbar */
.coll-ec-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 0 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.coll-ec-count {
    font-size: 0.9rem;
    color: var(--text-light);
}

.coll-ec-count strong {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 700;
}

.coll-ec-count-cat {
    color: var(--gold);
    font-weight: 500;
}

.coll-ec-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-bg);
    color: var(--gold-dark);
    border: 1px solid rgba(184, 146, 62, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.coll-ec-brand-badge:hover {
    background: var(--border);
}

/* Product Grid */
.coll-ec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.coll-ec-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.coll-ec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
    border-color: var(--gold-light);
}

.coll-ec-card-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--ivory);
    overflow: hidden;
}

.coll-ec-cat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.coll-ec-cat-badge-vista {
    background: rgba(45, 65, 100, 0.85);
    color: #fff;
}

.coll-ec-cat-badge-sole {
    background: rgba(184, 120, 30, 0.85);
    color: #fff;
}

.coll-ec-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.coll-ec-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 22px;
    opacity: 0;
    transition: opacity 0.35s;
}

.coll-ec-card:hover .coll-ec-card-overlay {
    opacity: 1;
}

.coll-ec-card-cta {
    background: var(--gold);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transform: translateY(8px);
    transition: background 0.3s, transform 0.3s;
}

.coll-ec-card:hover .coll-ec-card-cta {
    transform: translateY(0);
}

.coll-ec-card-cta:hover {
    background: var(--gold-dark);
}

.coll-ec-card-body {
    padding: 18px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.coll-ec-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.coll-ec-brand-name {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.coll-ec-type-name {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-light);
    background: var(--ivory);
    padding: 2px 8px;
    border-radius: 10px;
}

.coll-ec-card-name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.coll-ec-card-desc {
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
    flex: 1;
}

.coll-ec-card-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s, color 0.3s;
    margin-top: auto;
}

.coll-ec-card-link:hover {
    gap: 10px;
    color: var(--gold-dark);
}

/* Empty State */
.coll-ec-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}

.coll-ec-empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--ivory-dark);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--text-light);
}

.coll-ec-empty h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 8px;
}


/* ════════════════════════════════════════════════════
   RESPONSIVE — All New Sections
   ════════════════════════════════════════════════════ */

/* container-large helper */
.container-large {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
}

@media (min-width: 1280px) {
    .container-large {
        padding: 0 40px;
    }
}

/* ── marchi hero ── */
@media (max-width: 860px) {
    .marchi-ec-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .marchi-ec-hero-deco {
        display: none;
    }

    .marchi-ec-title {
        font-size: clamp(2.4rem, 8vw, 3.5rem);
    }
}

/* ── brand mosaic grid ── */
@media (max-width: 640px) {
    .brand-mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .brand-mosaic-logo-wrap {
        padding: 24px 16px;
        min-height: 120px;
    }
}

@media (max-width: 380px) {
    .brand-mosaic-grid {
        grid-template-columns: 1fr;
    }
}

/* ── collections split ── */
@media (max-width: 1024px) {
    .marchi-ec-coll-split {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 3rd card goes full width below the 2 */
    .marchi-ec-coll-split> :nth-child(3) {
        grid-column: 1 / -1;
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    .marchi-ec-coll-split {
        grid-template-columns: 1fr;
    }

    .marchi-ec-coll-split> :nth-child(3) {
        grid-column: auto;
    }

    .marchi-coll-card {
        min-height: 300px;
    }
}

/* ── brand page hero ── */
@media (max-width: 700px) {
    .brand-page-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .brand-page-logo-wrap {
        min-width: auto;
        width: 100%;
    }

    .brand-page-stats {
        gap: 16px;
    }
}

/* ── brand product grid ── */
@media (max-width: 960px) {
    .brand-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .brand-products-grid {
        grid-template-columns: 1fr;
    }

    .brand-filter-tabs {
        overflow-x: auto;
        max-width: 100%;
    }

    .brand-filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── brand prenota ── */
@media (max-width: 700px) {
    .brand-prenota-inner {
        flex-direction: column;
        gap: 24px;
    }
}

/* ── collezione layout ── */
@media (max-width: 1023px) {
    .coll-ec-layout {
        grid-template-columns: 1fr;
    }

    .coll-sidebar-sticky {
        position: static;
    }

    .coll-sidebar-chevron {
        transform: rotate(0deg);
    }
}

@media (max-width: 640px) {
    .coll-ec-hero-content {
        flex-wrap: wrap;
        gap: 14px;
    }

    .coll-ec-hero-icon {
        display: none;
    }

    .coll-ec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 420px) {
    .coll-ec-grid {
        grid-template-columns: 1fr;
    }
}


/* ════════════════════════════════════════════════════
   LENTI GRADUATE PAGE (lenti-graduate.php)
   ════════════════════════════════════════════════════ */

.lg-page {
    padding-top: 72px;
}

/* ── Hero ── */
.lg-hero {
    position: relative;
    padding: 80px 0 90px;
    background: var(--ivory);
    overflow: hidden;
}

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

.lg-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184, 146, 62, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 146, 62, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
}

.lg-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.lg-hero-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(60, 160, 140, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -80px;
    animation: orbFloat1 7s ease-in-out infinite;
}

.lg-hero-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-bg) 0%, transparent 70%);
    bottom: -50px;
    left: -60px;
    opacity: 0.6;
    animation: orbFloat2 9s ease-in-out infinite;
}

.lg-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 44px;
}

.lg-breadcrumb a {
    color: var(--gold);
    font-weight: 500;
    text-decoration: none;
}

.lg-breadcrumb a:hover {
    color: var(--gold-dark);
}

.lg-breadcrumb i {
    font-size: 0.6rem;
    color: var(--border);
}

.lg-hero-content {
    max-width: 680px;
    position: relative;
    z-index: 1;
}

.lg-hero-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-bg), rgba(60, 160, 140, 0.15));
    border: 1.5px solid rgba(184, 146, 62, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.lg-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--dark);
    margin: 12px 0 20px;
}

.lg-hero-title em {
    color: var(--gold);
    font-style: italic;
}

.lg-hero-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.75;
    max-width: 560px;
    font-weight: 300;
    margin-bottom: 36px;
}

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

/* ── Intro — Come Funzionano ── */
.lg-intro {
    padding: 80px 0;
}

.lg-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lg-intro-text h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin: 12px 0 20px;
}

.lg-intro-text p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Lens Zone Diagram */
.lg-intro-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lg-lens-diagram {
    position: relative;
    width: 260px;
    height: 340px;
    display: flex;
    flex-direction: column;
}

.lg-lens-frame {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(184, 146, 62, 0.3);
    border-radius: 50% 50% 45% 45% / 40% 40% 60% 60%;
    pointer-events: none;
    box-shadow: 0 0 0 6px rgba(184, 146, 62, 0.06), inset 0 0 40px rgba(184, 146, 62, 0.04);
}

.lg-lens-zone {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    transition: background 0.3s;
    cursor: default;
}

.lg-lens-zone:first-child {
    border-radius: 50% 50% 0 0 / 40% 40% 0 0;
    flex: 1.1;
}

.lg-lens-zone:last-child {
    border-radius: 0 0 45% 45% / 0 0 60% 60%;
    flex: 0.9;
}

.lg-zone-lontano {
    background: rgba(45, 65, 100, 0.08);
    border-bottom: 1px dashed rgba(184, 146, 62, 0.2);
}

.lg-zone-intermedio {
    background: rgba(60, 160, 140, 0.06);
    border-bottom: 1px dashed rgba(184, 146, 62, 0.2);
}

.lg-zone-vicino {
    background: rgba(184, 146, 62, 0.08);
}

.lg-zone-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.lg-zone-icon {
    color: var(--gold);
    font-size: 1.1rem;
    opacity: 0.7;
}

.lg-lens-zone:hover {
    background: rgba(184, 146, 62, 0.12) !important;
}

/* ── Section Head common ── */
.lg-section-head {
    margin-bottom: 52px;
}

.lg-section-head h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    margin-top: 10px;
}

/* ── Benefits Grid ── */
.lg-benefits {
    padding: 80px 0;
}

.lg-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lg-benefit-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
}

.lg-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow);
    border-color: var(--gold-light);
}

.lg-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gold-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.lg-benefit-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.lg-benefit-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ── Tipologie Grid ── */
.lg-types {
    padding: 80px 0;
}

.lg-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lg-type-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.lg-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px var(--shadow-lg);
}

.lg-type-featured {
    border-color: var(--gold);
    background: linear-gradient(160deg, var(--white) 0%, var(--gold-bg) 100%);
    box-shadow: 0 4px 20px rgba(184, 146, 62, 0.12);
}

.lg-type-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.lg-type-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--ivory);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.lg-type-featured .lg-type-icon {
    background: var(--white);
    border-color: rgba(184, 146, 62, 0.3);
}

.lg-type-name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.lg-type-desc {
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 14px;
}

.lg-type-features {
    list-style: none;
    margin: 0 0 4px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lg-type-features li {
    font-size: 0.82rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 7px;
}

.lg-type-features li i {
    color: var(--gold);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ── Brand Chips ── */
.lg-brands {
    padding: 60px 0;
}

.lg-brands-track {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.lg-brand-chip {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lg-brand-chip:hover {
    border-color: var(--gold-light);
    box-shadow: 0 4px 16px var(--shadow);
}

.lg-brand-chip img {
    height: 36px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(50%);
    transition: filter 0.3s;
}

.lg-brand-chip:hover img {
    filter: grayscale(0%);
}

/* ── Process Steps ── */
.lg-process {
    padding: 80px 0;
}

.lg-process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 48px;
}

.lg-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.lg-step-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 12px;
}

.lg-step h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.lg-step p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.lg-step-arrow {
    color: var(--gold);
    opacity: 0.4;
    font-size: 1.2rem;
    padding-top: 8px;
    flex-shrink: 0;
}

/* ── CTA Finale ── */
.lg-cta-final {
    background: var(--dark-footer);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.lg-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184, 146, 62, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 146, 62, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
}

.lg-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.lg-cta-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 12px;
    color: var(--white);
}

.lg-cta-text p {
    margin: 0;
}

.lg-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .lg-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .lg-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lg-intro-visual {
        display: none;
    }

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

    .lg-process-steps {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .lg-step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 640px) {
    .lg-benefits-grid {
        grid-template-columns: 1fr;
    }

    .lg-types-grid {
        grid-template-columns: 1fr;
    }

    .lg-cta-inner {
        flex-direction: column;
        gap: 28px;
    }

    .lg-hero-title {
        font-size: clamp(2.2rem, 9vw, 3rem);
    }
}

/* ── WYSIWYG Editor Content Styling ── */
.ql-editor-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
}

.ql-editor-content p {
    margin-bottom: 1.5em;
}

.ql-editor-content h2,
.ql-editor-content h3,
.ql-editor-content h4 {
    color: var(--dark);
    margin-top: 2em;
    margin-bottom: 0.8em;
    font-family: var(--font-serif);
}

.ql-editor-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 2em 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ql-editor-content blockquote {
    border-left: 4px solid var(--gold);
    padding-left: 1.5em;
    margin: 1.5em 0;
    font-style: italic;
    color: var(--text-light);
    background: var(--ivory);
    padding: 1.5em;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.ql-editor-content ul,
.ql-editor-content ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.ql-editor-content li {
    margin-bottom: 0.5em;
}

.ql-editor-content strong {
    font-weight: 700;
    color: var(--dark);
}

.ql-editor-content a {
    color: var(--gold);
    text-decoration: underline;
}