/* ═══════════════════════════════════════════════════
   ALBERTO PREVEDI — Bodybuilding Prep Coach
   Design System & Styles
   ═══════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════
   FONTS
   ═══════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
    /* Primary palette — azzurro chiaro */
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-200: #bae6fd;
    --primary-300: #7dd3fc;
    --primary-400: #38bdf8;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --primary-800: #075985;
    --primary-900: #0c4a6e;

    /* Neutrals — Light theme */
    --dark-950: #f8fafc;
    --dark-900: #f1f5f9;
    --dark-800: #e2e8f0;
    --dark-700: #cbd5e1;
    --dark-600: #94a3b8;
    --dark-500: #64748b;
    --dark-400: #475569;
    --dark-300: #334155;
    --dark-200: #1e293b;
    --dark-100: #0f172a;
    --white: #0f172a;

    /* Accent */
    --accent: #0891b2;
    --accent-glow: rgba(8, 145, 178, 0.2);

    /* Glass */
    --glass-bg: rgba(14, 165, 233, 0.05);
    --glass-border: rgba(14, 165, 233, 0.15);
    --glass-bg-hover: rgba(14, 165, 233, 0.09);

    /* Typography */
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --font-accent: 'Bacalisties', cursive;

    /* Spacing */
    --section-py: clamp(4rem, 8vw, 7rem);
    --container-px: clamp(1.25rem, 4vw, 3rem);
    --container-max: 1200px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-base: 0.35s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);

    /* Border radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

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

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

body {
    font-family: var(--font-body);
    background: #f0f7ff;
    color: #334155;
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--primary-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-800);
}

ul {
    list-style: none;
}

/* ── Utilities ── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.section {
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

.section--coaching-cta {
    padding-top: calc(var(--section-py) * 0.68);
    padding-bottom: calc(var(--section-py) * 0.68);
}

.section--results-gallery {
    padding-bottom: calc(var(--section-py) * 0.68);
}

.section--gallery-page {
    padding-top: calc(var(--section-py) + 4rem);
}

.section--contacts-page {
    padding-top: calc(var(--section-py) + 4rem);
}

.section--about-page {
    padding-top: calc(var(--section-py) + 2.5rem);
}

.section--about-page .about-grid {
    align-items: start;
}

.about-page-media {
    display: flex;
    flex-direction: column;
    align-self: start;
}

.about-copy-card {
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(148, 163, 184, 0.12);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-700);
    margin-bottom: 1rem;
    padding: 0.35rem 1rem;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.18);
    border-radius: var(--radius-full);
    width: fit-content;
}

.section-label svg {
    width: 1.2em;
    height: 1.2em;
    stroke: var(--primary-500);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.section-title span {
    background: linear-gradient(135deg, var(--primary-600), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-400), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: background var(--transition-base), padding var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
    background: rgba(240, 247, 255, 0.9);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    padding: 0.6rem 0;
    box-shadow: 0 1px 8px rgba(14, 165, 233, 0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    font-weight: 400;
    color: #0f172a;
    text-decoration: none;
    letter-spacing: 0;
}

.navbar-brand span {
    color: var(--primary-500);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-400), var(--accent));
    border-radius: 2px;
    transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-700);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1e293b;
    border-radius: 2px;
    transition: var(--transition-base);
    transform-origin: center;
}

.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);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        padding: max(5.5rem, env(safe-area-inset-top)) 1.5rem max(1.5rem, env(safe-area-inset-bottom));
        background: #eef5fd;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        z-index: 1000;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity var(--transition-base), visibility var(--transition-base);
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .nav-links .nav-cart-link {
        width: auto;
        min-width: 3rem;
        height: 3rem;
        padding: 0 1rem;
    }

    .nav-links .nav-cart-link .nav-cart-icon {
        width: 1.35rem;
        height: 1.35rem;
    }

    .nav-cart-empty-label {
        font-size: 0.95rem;
    }
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(14, 165, 233, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 100%, rgba(34, 211, 238, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Animated floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-orb--1 {
    width: 400px;
    height: 400px;
    background: var(--primary-200);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.hero-orb--2 {
    width: 300px;
    height: 300px;
    background: var(--primary-300);
    bottom: -5%;
    right: -5%;
    animation-delay: -3s;
    opacity: 0.3;
}

@keyframes float {

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

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 15px) scale(0.95);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: -8vh;
    /* Sposta il blocco più in alto verso la navbar */
}

/* Hero side images (desktop only) */
.hero-side-media {
    display: none;
    position: absolute;
    bottom: 0;
    height: 85%;
    z-index: 1;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 85%);
    mask-image: linear-gradient(to bottom, black 20%, transparent 85%);
}

.hero-side-media img {
    max-width: none;
    width: auto;
    height: 100%;
}

.hero-side-media--left {
    left: 0;
    height: 95%;
}

.hero-side-media--right {
    right: 0;
}

@media (min-width: 1024px) {
    .hero-side-media {
        display: block;
    }
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-700);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding: 0.4rem 1.25rem;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.18);
    border-radius: var(--radius-full);
    animation: fadeInDown 0.8s var(--ease-out) 0.2s both;
}

.hero h1 {
    font-family: var(--font-accent);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 400;
    line-height: normal;
    margin-bottom: 2rem;
    color: #0f172a;
    animation: fadeInDown 0.8s var(--ease-out) 0.4s both;
}

.hero h1 span {
    display: block;
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.22em;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-600), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.3rem;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #475569;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    animation: fadeInDown 0.8s var(--ease-out) 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInDown 0.8s var(--ease-out) 0.8s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

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

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: var(--white);
    box-shadow: 0 4px 24px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.45);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-700);
    border: 1.5px solid rgba(14, 165, 233, 0.35);
}

.btn-outline:hover {
    background: rgba(14, 165, 233, 0.08);
    border-color: var(--primary-500);
    color: var(--primary-800);
    transform: translateY(-2px);
}

.shop-card-actions [data-add-to-cart]:disabled,
.pdp-actions [data-add-to-cart]:disabled {
    background: #dbe4ee;
    color: #6b7a8f;
    border: 1px solid #c5d1de;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 1;
    pointer-events: none;
}

.shop-card-actions [data-add-to-cart]:disabled:hover,
.pdp-actions [data-add-to-cart]:disabled:hover {
    transform: none;
    box-shadow: none;
    color: #6b7a8f;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: pulse 2.5s ease-in-out infinite;
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-400);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(6px);
    }
}

/* ═══════════════════════════════════════════════════
   ABOUT (Chi Sono)
   ═══════════════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
}

.about-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
}

.about-image-glow {
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--primary-500), var(--accent));
    opacity: 0.15;
    filter: blur(30px);
    z-index: -1;
}

.about-text p {
    margin-bottom: 1.25rem;
    color: #475569;
    font-size: 1.02rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.stat-card:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-600);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }

    .about-text {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .stat-card {
        padding: 0.85rem 0.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }
}

/* ═══════════════════════════════════════════════════
   METHOD (Metodo di Lavoro)
   ═══════════════════════════════════════════════════ */
.method-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    position: relative;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.step-card:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.08);
}

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

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(14, 165, 233, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    color: var(--primary-600);
}

.step-icon svg {
    width: 24px;
    height: 24px;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .method-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════
   CLIENTS (Chi Seguo)
   ═══════════════════════════════════════════════════ */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.client-card {
    padding: 2.5rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.client-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent));
    transition: width var(--transition-base);
}

.client-card:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.08);
}

.client-card:hover::after {
    width: 60%;
}

.client-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(34, 211, 238, 0.08));
    border-radius: var(--radius-lg);
    margin: 0 auto 1.5rem;
    color: var(--primary-600);
}

.client-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
}

.path-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    /* Turns black into #0284c7 (primary-600) */
    filter: brightness(0) saturate(100%) invert(39%) sepia(91%) saturate(2206%) hue-rotate(178deg) brightness(97%) contrast(96%);
    transition: transform var(--transition-base), filter var(--transition-base);
}

.client-card:hover .path-icon {
    transform: scale(1.1);
    /* Turns black into #0ea5e9 (primary-500) */
    filter: brightness(0) saturate(100%) invert(51%) sepia(93%) saturate(1354%) hue-rotate(174deg) brightness(98%) contrast(93%);
}

.client-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.client-card p {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.7;
}

.client-federations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    margin-top: 1rem;
}

.federation-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════
   GALLERY — Horizontal Scroll Carousel
   ═══════════════════════════════════════════════════ */
.gallery-wrapper {
    position: relative;
    margin-top: 2rem;
}

.gallery-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0 1.5rem;
    -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar */
.gallery-scroll::-webkit-scrollbar {
    height: 6px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: rgba(14, 165, 233, 0.06);
    border-radius: 3px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-400);
    border-radius: 3px;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--primary-500);
}

.gallery-item {
    position: relative;
    flex: 0 0 280px;
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-base);
    scroll-snap-align: start;
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 240px;
        height: 320px;
    }
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.12);
    border-color: var(--primary-500);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

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

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

.gallery-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 48px;
    height: 48px;
    background: rgba(14, 165, 233, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    transition: all var(--transition-base);
}

.gallery-item:hover .gallery-zoom-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Nav arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-600);
    font-size: 1.25rem;
    transition: all var(--transition-fast);
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.gallery-nav:hover {
    background: var(--primary-500);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.gallery-nav--prev {
    left: -22px;
}

.gallery-nav--next {
    right: -22px;
}

@media (max-width: 768px) {
    .gallery-nav {
        display: none;
    }
}

/* Placeholder styling */
.gallery-placeholder {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 3rem;
}

/* Empty state */
.gallery-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    transition: transform var(--transition-base);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.5rem;
    transition: all var(--transition-fast);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.25rem;
    transition: all var(--transition-fast);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

/* ═══════════════════════════════════════════════════
   PARTNERS (Integratori & Abbigliamento)
   ═══════════════════════════════════════════════════ */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    padding: 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent));
}

.partner-card:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.08);
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.partner-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.hero-content h1 span {
    display: block;
    color: var(--primary-500);
    margin-top: -1rem;
    font-size: 0.7em;
    font-family: var(--font-accent);
}

.partner-role {
    font-size: 0.9rem;
    color: var(--primary-600);
    margin-bottom: 1rem;
    font-weight: 500;
}

.partner-card>p {
    color: #475569;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.discount-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(14, 165, 233, 0.06);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    margin-top: auto;
}

.discount-percent {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-600);
    white-space: nowrap;
}

.discount-details {
    font-size: 0.85rem;
    color: #475569;
}

.discount-code {
    display: inline-block;
    font-family: monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-700);
    background: rgba(14, 165, 233, 0.08);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    margin-top: 0.25rem;
}

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

/* ═══════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.contact-method:hover {
    background: var(--glass-bg-hover);
    transform: translateX(4px);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary-600);
}

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

.contact-method h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-method p {
    color: #64748b;
    font-size: 0.9rem;
}

.contact-method a {
    color: var(--primary-600);
    font-weight: 500;
}

/* Contact form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #334155;
}

.form-group input,
.form-group textarea,
.form-group select {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    background: rgba(14, 165, 233, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: #1e293b;
    outline: none;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

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

.consent-check {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.55rem;
    align-items: start;
    color: #334155;
    font-size: 0.85rem;
    line-height: 1.5;
}

.consent-check input[type="checkbox"] {
    margin-top: 0.15rem;
}

.consent-check a {
    color: var(--primary-700);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-feedback {
    display: none;
    margin-top: -0.5rem;
    font-size: 0.84rem;
    color: var(--primary-700);
}

.contact-feedback.is-visible {
    display: block;
}

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

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

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    font-weight: 400;
    color: #0f172a;
}

.footer-brand span {
    color: var(--primary-500);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: #475569;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: rgba(14, 165, 233, 0.12);
    border-color: var(--primary-500);
    color: var(--primary-600);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-legal-links {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 0.35rem;
}

.footer-legal-links a {
    color: #475569;
    font-size: 0.84rem;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.footer-legal-links a:hover {
    color: var(--primary-700);
    border-color: rgba(2, 132, 199, 0.35);
}

.footer-copy {
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(14, 165, 233, 0.06);
}

/* ═══════════════════════════════════════════════════
   DIVIDERS
   ═══════════════════════════════════════════════════ */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

/* ═══════════════════════════════════════════════════
   Background Mesh Gradient
   ═══════════════════════════════════════════════════ */
.bg-mesh {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
    max-width: 100%;
}

.bg-mesh::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.04;
    background: var(--primary-500);
}

.section:nth-child(even) .bg-mesh::before {
    right: -200px;
    top: -100px;
}

.section:nth-child(odd) .bg-mesh::before {
    left: -200px;
    bottom: -100px;
}

/* ═══════════════════════════════════════════════════
   PRICING (ACQUISTA PERCORSI)
   ═══════════════════════════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: linear-gradient(135deg, #f8fafc, #f0f9ff);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.1);
    border-color: var(--primary-400);
}

.pricing-card.popular {
    border: 2px solid var(--primary-500);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.15);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--primary-500), var(--accent));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 2.5rem;
}

.pricing-features ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: var(--primary-500);
    flex-shrink: 0;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.promo-link {
    font-size: 0.85rem;
    color: var(--primary-600);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all var(--transition-fast);
    line-height: 1.5;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .promo-link {
        white-space: normal;
    }
}

.promo-link:hover {
    color: var(--primary-800);
    text-decoration-color: currentColor;
}

/* Program Options (Accordion) */
.program-options {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(14, 165, 233, 0.15);
    animation: fadeInOptions 0.3s ease-out;
}

.program-options.open {
    display: flex;
}

/* Coaching nested sub-group */
.coaching-sub-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.coaching-sub-toggle {
    justify-content: space-between !important;
}

.coaching-sub-options {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 0.75rem;
    border-left: 2px solid rgba(14, 165, 233, 0.25);
    animation: fadeInOptions 0.25s ease-out;
}

.coaching-sub-options.open {
    display: flex;
}

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

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

.btn-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(14, 165, 233, 0.05);
    color: var(--primary-700);
    border: 1px solid rgba(14, 165, 233, 0.2);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.btn-option:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: var(--primary-500);
    color: var(--primary-800);
    transform: translateY(-2px);
}

.toggle-icon {
    font-size: 0.75rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.program-toggle-btn .toggle-icon {
    font-size: 1rem;
}

.program-toggle-btn.open .toggle-icon {
    transform: rotate(180deg);
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.program-card {
    background: linear-gradient(135deg, #f8fafc, #f0f9ff);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(14, 165, 233, 0.08);
    border-color: var(--primary-400);
}

.program-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.program-card p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.program-card.hidden {
    display: none;
}

/* Responsive Pricing and Programs */
@media (max-width: 992px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* ===================================================
   SHOP FLOW (Listing / PDP / Cart / Checkout State)
   =================================================== */
.shop-page {
    padding-top: clamp(6.5rem, 10vw, 8rem);
}

.legal-page-section {
    padding-top: clamp(6.5rem, 10vw, 8rem);
}

.legal-page-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: clamp(1.2rem, 3vw, 2rem);
    max-width: 940px;
    margin: 0 auto;
}

.legal-updated {
    color: #64748b;
    font-size: 0.85rem;
    margin-top: -0.5rem;
    margin-bottom: 1.35rem;
}

.legal-content h2 {
    margin-top: 1.4rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.legal-content p {
    color: var(--dark-400);
    line-height: 1.65;
    margin-bottom: 0.65rem;
}

.legal-content ul {
    margin: 0.35rem 0 1rem;
    padding-left: 1.2rem;
    list-style: disc;
}

.legal-content li {
    color: var(--dark-400);
    line-height: 1.6;
}

.legal-content a {
    color: var(--primary-700);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.shop-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.shop-heading p {
    color: var(--dark-400);
}

.shop-pricing-pill {
    margin-top: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.45rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(14, 165, 233, 0.22);
    background: rgba(14, 165, 233, 0.08);
}

.shop-pricing-pill span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-700);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(14, 165, 233, 0.16);
    border-radius: var(--radius-full);
    padding: 0.3rem 0.7rem;
}

.shop-intro-copy {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.shop-inline-tooltip {
    position: relative;
    display: inline-flex;
}

.shop-tooltip-trigger {
    border: 1px solid rgba(14, 165, 233, 0.24);
    background: rgba(255, 255, 255, 0.75);
    color: var(--primary-700);
    border-radius: var(--radius-full);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.18rem 0.58rem;
    cursor: help;
}

.shop-tooltip-box {
    position: absolute;
    left: 0;
    bottom: calc(100% + 0.4rem);
    min-width: 210px;
    padding: 0.5rem 0.6rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid rgba(14, 165, 233, 0.22);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
    opacity: 0;
    transform: translateY(4px);
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.shop-inline-tooltip:hover .shop-tooltip-box,
.shop-inline-tooltip:focus-within .shop-tooltip-box {
    opacity: 1;
    transform: translateY(0);
}

.shop-filter-dropdown {
    margin-top: 0.95rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
    position: relative;
    vertical-align: middle;
    text-align: left;
}

.shop-filter-summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-bottom: 1px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    user-select: none;
}

.shop-filter-summary::-webkit-details-marker {
    display: none;
}

.shop-filter-summary svg {
    width: 1rem;
    height: 1rem;
    transition: transform var(--transition-fast);
}

.shop-filter-dropdown[open] .shop-filter-summary svg {
    transform: rotate(180deg);
}

.shop-filter-menu {
    position: absolute;
    top: auto;
    bottom: calc(100% + 0.35rem);
    left: 0;
    min-width: 180px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
    padding: 0.55rem 0.7rem;
    display: grid;
    gap: 0.5rem;
    z-index: 60;
}

.shop-filter-section {
    display: grid;
    gap: 0.45rem;
}

.shop-filter-section-title {
    margin: 0;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.shop-filter-check {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-300);
}

.shop-filter-check input[type="checkbox"] {
    width: 0.95rem;
    height: 0.95rem;
    accent-color: var(--primary-600);
    cursor: pointer;
}

.shop-filter-check span {
    line-height: 1;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.shop-card {
    background: linear-gradient(135deg, #f8fafc, #f0f9ff);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.shop-card-cover-link {
    display: block;
    background: #e2f2fe;
    aspect-ratio: 4 / 5;
}

.shop-card-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.shop-card-category {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-700);
    font-weight: 700;
}

.shop-card h3 {
    font-family: var(--font-heading);
    color: #0f172a;
    line-height: 1.25;
    font-size: 1.14rem;
}

.shop-card p {
    color: var(--dark-400);
    font-size: 0.92rem;
    line-height: 1.55;
}

.shop-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
}

.shop-price {
    font-family: var(--font-heading);
    color: #0f172a;
    font-size: 1.35rem;
    line-height: 1;
}

.shop-price-note {
    font-size: 0.78rem;
    color: var(--dark-500);
}

.shop-card-actions {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.shop-card-actions .btn {
    justify-content: center;
    padding: 0.62rem 0.8rem;
    font-size: 0.9rem;
}

.nav-links .nav-cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    border: 1px solid rgba(14, 165, 233, 0.25);
    background: rgba(14, 165, 233, 0.08);
    color: var(--primary-700);
    position: relative;
    gap: 0.45rem;
    padding: 0 0.75rem 0 0.65rem;
    transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

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

.nav-links .nav-cart-link:hover {
    transform: translateY(-1px);
    border-color: var(--primary-500);
    background: rgba(14, 165, 233, 0.14);
    color: var(--primary-800);
}

.nav-links .nav-cart-link.active {
    border-color: var(--primary-500);
    background: rgba(14, 165, 233, 0.16);
}

.nav-cart-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.nav-cart-empty-label {
    display: none;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1;
}

.mobile-cart-fab {
    display: none;
}

.cart-badge {
    min-width: 1.15rem;
    height: 1.15rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.2rem;
    position: absolute;
    right: -0.28rem;
    top: -0.32rem;
    box-shadow: 0 0 0 2px #f0f7ff;
}

.cart-dropdown {
    position: fixed;
    width: min(340px, calc(100vw - 24px));
    border: 1px solid rgba(14, 165, 233, 0.22);
    background: rgba(255, 255, 255, 0.99);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
    padding: 0.75rem;
    z-index: 1300;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.cart-dropdown.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cart-dropdown-header {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--primary-700);
    margin-bottom: 0.5rem;
}

.cart-dropdown-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.cart-dropdown-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0.55rem;
    align-items: center;
}

.cart-dropdown-item img {
    width: 44px;
    height: 54px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.cart-dropdown-item strong {
    display: block;
    font-size: 0.84rem;
    color: #0f172a;
    line-height: 1.25;
}

.cart-dropdown-item span,
.cart-dropdown-more {
    font-size: 0.75rem;
    color: #64748b;
}

.cart-dropdown-empty {
    margin: 0 0 0.65rem;
    font-size: 0.86rem;
    color: #475569;
}

.cart-dropdown-footer {
    border-top: 1px solid rgba(14, 165, 233, 0.18);
    margin-top: 0.65rem;
    padding-top: 0.65rem;
    display: grid;
    gap: 0.55rem;
}

.cart-dropdown-footer p {
    display: flex;
    justify-content: space-between;
    margin: 0;
    font-size: 0.82rem;
    color: #475569;
}

.cart-dropdown-footer strong {
    color: #0f172a;
}

.cart-dropdown-cta {
    width: 100%;
    justify-content: center;
    font-size: 0.86rem;
    padding: 0.58rem 0.8rem;
}

.shop-back-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-700);
}

.pdp-layout {
    display: grid;
    grid-template-columns: minmax(340px, 520px) minmax(0, 1fr);
    gap: 2.25rem;
    align-items: start;
}

.pdp-media {
    align-self: start;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(14, 165, 233, 0.24);
    box-shadow: 0 16px 36px rgba(14, 165, 233, 0.14);
}

.pdp-media img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: auto;
    object-fit: contain;
}

.pdp-content {
    background: linear-gradient(135deg, #f8fafc, #f0f9ff);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-xl);
    padding: clamp(1.2rem, 2.4vw, 1.8rem);
}

.pdp-content h1 {
    font-family: var(--font-heading);
    color: #0f172a;
    line-height: 1.2;
    margin-top: 0.45rem;
    font-size: clamp(1.5rem, 2.7vw, 2.2rem);
}

.pdp-description {
    color: var(--dark-300);
    margin-top: 1rem;
}

.pdp-features {
    margin-top: 1.1rem;
    display: grid;
    gap: 0.4rem;
}

.pdp-features li {
    color: var(--dark-300);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.1rem;
}

.pdp-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent));
}

.pdp-price-box {
    margin-top: 1.3rem;
}

.pdp-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-top: 1.15rem;
}

.pdp-meta-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--primary-700);
    border: 1px solid rgba(14, 165, 233, 0.2);
    background: rgba(14, 165, 233, 0.08);
    border-radius: var(--radius-md);
    padding: 0.75rem 0.9rem;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1.6fr minmax(280px, 0.9fr);
    gap: 1.5rem;
    align-items: start;
}

.cart-items,
.cart-summary,
.shop-empty-state {
    background: linear-gradient(135deg, #f8fafc, #f0f9ff);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-xl);
    padding: clamp(1rem, 2vw, 1.4rem);
}

.cart-items h1 {
    font-family: var(--font-heading);
    color: #0f172a;
    line-height: 1.2;
}

.cart-subtitle {
    margin-top: 0.3rem;
    color: var(--dark-400);
    font-size: 0.95rem;
}

.cart-item-list {
    margin-top: 1rem;
    display: grid;
    gap: 0.75rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 92px 1fr auto;
    gap: 0.8rem;
    align-items: center;
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.7);
    padding: 0.55rem;
}

.cart-item img {
    width: 92px;
    height: 110px;
    border-radius: 0.45rem;
    object-fit: cover;
    border: 1px solid rgba(14, 165, 233, 0.14);
}

.cart-item-main h3 {
    font-family: var(--font-heading);
    color: #0f172a;
    font-size: 1rem;
    line-height: 1.2;
    margin-top: 0.25rem;
}

.cart-item-main p {
    color: var(--dark-400);
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

.cart-item-controls {
    display: grid;
    gap: 0.4rem;
    justify-items: end;
}

.cart-item-controls button {
    border: 1px solid var(--primary-300);
    background: rgba(14, 165, 233, 0.08);
    color: var(--primary-800);
    min-width: 2rem;
    height: 2rem;
    border-radius: 0.45rem;
    font-weight: 700;
    cursor: pointer;
}

.cart-item-controls span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
}

.cart-item-controls .cart-remove {
    height: auto;
    min-width: 0;
    padding: 0.22rem 0.55rem;
    font-size: 0.78rem;
    font-weight: 600;
}

.cart-summary h2 {
    font-family: var(--font-heading);
    color: #0f172a;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.58rem 0;
    border-bottom: 1px solid rgba(14, 165, 233, 0.14);
    color: var(--dark-300);
    font-size: 0.93rem;
}

.cart-summary-row strong {
    color: #0f172a;
}

.cart-summary-row.cart-total {
    font-size: 1.04rem;
    border-bottom: none;
    margin-top: 0.35rem;
}

.cart-pack-box {
    margin: 0.8rem 0 1rem;
    padding: 0.72rem 0.8rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(14, 165, 233, 0.18);
    background: rgba(14, 165, 233, 0.07);
}

.cart-pack-box p {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-700);
}

.cart-pack-box ul {
    margin-top: 0.45rem;
    display: grid;
    gap: 0.24rem;
}

.cart-pack-box li {
    font-size: 0.86rem;
    color: var(--dark-400);
}

.cart-summary .btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.45rem;
}

.checkout-feedback {
    display: none;
    margin-top: 0.5rem;
    font-size: 0.84rem;
    color: var(--primary-700);
}

.checkout-feedback.is-visible {
    display: block;
}

.shop-empty-state {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.shop-empty-state h1,
.shop-empty-state h2 {
    font-family: var(--font-heading);
    color: #0f172a;
    line-height: 1.2;
}

.shop-empty-state p {
    margin-top: 0.7rem;
    color: var(--dark-400);
}

.shop-empty-state .cart-empty-cta {
    margin-top: 0.65rem;
    color: #ffffff;
}

.shop-empty-state .cart-empty-cta:hover {
    color: #ffffff;
}

.shop-inline-actions {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.checkout-state-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media (max-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pdp-layout {
        grid-template-columns: 1fr;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }
}

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

    .shop-pricing-pill {
        border-radius: var(--radius-lg);
    }

    .shop-filter-dropdown {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .shop-intro-copy {
        display: flex;
        justify-content: center;
    }

    .shop-inline-tooltip {
        width: 100%;
        justify-content: center;
    }

    .shop-tooltip-box {
        left: 50%;
        min-width: min(210px, calc(100vw - 2rem));
        transform: translate(-50%, 4px);
    }

    .shop-inline-tooltip:hover .shop-tooltip-box,
    .shop-inline-tooltip:focus-within .shop-tooltip-box {
        transform: translate(-50%, 0);
    }

    .cart-dropdown {
        width: calc(100vw - 20px);
    }

    .cart-item {
        grid-template-columns: 74px 1fr;
    }

    .cart-item img {
        width: 74px;
        height: 92px;
    }

    .cart-item-controls {
        grid-column: 1 / -1;
        grid-template-columns: repeat(4, auto);
        justify-content: start;
        align-items: center;
    }

    .cart-item-controls .cart-remove {
        margin-left: 0.4rem;
    }
}

@media (max-width: 768px) {
    .mobile-cart-fab {
        position: fixed;
        right: 0.9rem;
        bottom: calc(0.9rem + env(safe-area-inset-bottom));
        width: 3rem;
        height: 3rem;
        border-radius: 999px;
        border: 1px solid rgba(14, 165, 233, 0.32);
        background: rgba(255, 255, 255, 0.98);
        color: var(--primary-700);
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        z-index: 980;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(8px);
        transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    }

    .mobile-cart-fab .nav-cart-icon {
        width: 1.35rem;
        height: 1.35rem;
    }

    .mobile-cart-fab .cart-badge {
        box-shadow: 0 0 0 2px #ffffff;
    }

    .mobile-cart-fab.is-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
}

/* ===================================================
   CHECKOUT DETAILS PAGE
   =================================================== */
.checkout-layout {
    display: grid;
    grid-template-columns: minmax(270px, 0.95fr) 1.45fr;
    gap: 1.5rem;
    align-items: start;
}

.checkout-summary-panel,
.checkout-form-panel {
    background: linear-gradient(135deg, #f8fafc, #f0f9ff);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-xl);
    padding: clamp(1rem, 2.2vw, 1.4rem);
}

.checkout-summary-panel h2,
.checkout-form-panel h1 {
    font-family: var(--font-heading);
    color: #0f172a;
    line-height: 1.2;
}

.checkout-summary-panel h2 {
    margin-top: 0.35rem;
}

.checkout-summary-list {
    margin-top: 0.9rem;
    display: grid;
    gap: 0.55rem;
}

.checkout-summary-item {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.15);
    padding-bottom: 0.5rem;
    color: #334155;
    font-size: 0.92rem;
}

.checkout-summary-item strong {
    color: #0f172a;
}

.checkout-summary-totals {
    margin-top: 0.75rem;
}

.checkout-summary-total {
    font-size: 1rem;
    border-bottom: none;
    padding-bottom: 0;
}

.checkout-form {
    margin-top: 0.95rem;
    display: grid;
    gap: 0.8rem;
}

.checkout-form .form-group {
    margin-bottom: 0;
}

.checkout-form-row-3 {
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
}

.checkout-privacy-check {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.55rem;
    align-items: start;
    color: #334155;
    font-size: 0.85rem;
    line-height: 1.5;
}

.checkout-privacy-check input[type="checkbox"] {
    margin-top: 0.15rem;
}

.checkout-privacy-check a {
    color: var(--primary-700);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

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

@media (max-width: 720px) {
    .checkout-form-row-3 {
        grid-template-columns: 1fr;
    }
}

/* Shared shell additions */
.footer-shell {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-shell-top {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}

.footer-shell-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-brand-block {
      padding: 1.5rem;
      background: transparent;
      border: 0;
      border-radius: 0;
  }

.footer-brand-copy {
      margin-top: 0.85rem;
      color: #64748b;
      font-size: 0.95rem;
  }
  
.footer-brand-block .social-links {
      margin-top: 1.35rem;
      flex-wrap: wrap;
  }

.footer-card {
      padding: 1.5rem;
      background: rgba(14, 165, 233, 0.05);
      border: 1px solid rgba(14, 165, 233, 0.14);
      border-radius: var(--radius-xl);
  }

.footer-card-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-700);
    margin-bottom: 1rem;
}

.footer-partner-link {
      display: flex;
      gap: 0.75rem;
      align-items: center;
      color: inherit;
  }
  
.footer-partner-list {
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
  }
  
.footer-partner-logo-wrap {
      width: 72px;
      height: 72px;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(14, 165, 233, 0.16);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 255, 0.92));
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0.6rem;
      flex-shrink: 0;
  }
  
.footer-partner-logo-wrap--dark {
      background: linear-gradient(135deg, #0f172a, #111827);
      border-color: rgba(14, 165, 233, 0.22);
  }
  
.footer-partner-logo {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
  }
  
.footer-partner-copy {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
      color: #475569;
      font-size: 0.9rem;
  }
  
.footer-partner-copy strong {
      color: #0f172a;
      font-family: var(--font-heading);
      font-size: 0.92rem;
  }

.footer-payment-row {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      align-items: flex-start;
  }
  
.payment-logo-card {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 92px;
      min-height: 52px;
      padding: 0.7rem 0.95rem;
      border-radius: 18px;
      border: 1px solid rgba(14, 165, 233, 0.18);
      background: rgba(255, 255, 255, 0.88);
  }
  
.payment-logo {
      display: block;
      width: auto;
      height: 22px;
      max-width: 100%;
      object-fit: contain;
  }
  
.payment-logo--visa {
      height: 42px;
  }
  
.payment-logo--mastercard {
      height: 30px;
  }
  
.payment-logo--paypal {
      height: 24px;
  }

.footer-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-menu-links a {
    color: #475569;
}

.footer-menu-links a:hover {
    color: var(--primary-700);
}

.page-hero {
    position: relative;
    padding: calc(7rem + 40px) 0 4.5rem;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.18), transparent 40%),
        radial-gradient(circle at bottom right, rgba(8, 145, 178, 0.14), transparent 35%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.page-hero-content p {
    font-size: 1.04rem;
    color: #475569;
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.75rem;
}

.single-page-layout .page-hero {
    padding: calc(6.1rem + 20px) 0 1.85rem;
}

.single-page-layout .page-hero::before {
    background:
        radial-gradient(ellipse 62% 48% at 50% 2%, rgba(14, 165, 233, 0.12), transparent 72%),
        radial-gradient(circle at 12% 18%, rgba(14, 165, 233, 0.1), transparent 28%),
        radial-gradient(circle at 88% 24%, rgba(125, 211, 252, 0.16), transparent 26%);
}

.single-page-layout .page-hero-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 2.2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(14, 165, 233, 0.14);
    border-radius: 2rem;
    box-shadow: 0 18px 42px rgba(148, 163, 184, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.single-page-layout .page-hero .section-label {
    margin: 0 auto 1rem;
}

.single-page-layout .page-hero .section-title {
    margin-bottom: 0.85rem;
    font-size: clamp(2.7rem, 6vw, 4.4rem);
    line-height: 0.95;
}

.single-page-layout .page-hero-content p {
    max-width: 40rem;
    margin: 0 auto;
    font-size: 1.08rem;
}

.single-page-layout .page-hero-actions {
    justify-content: center;
    margin-top: 1.4rem;
}

.single-page-layout .section {
    padding: calc(var(--section-py) * 0.84) 0;
}

.single-page-layout .page-hero + .section {
    padding-top: calc(var(--section-py) * 0.52);
}

.single-page-layout .page-grid {
    gap: 2.25rem;
    align-items: start;
}

.single-page-layout .text-card,
.single-page-layout .info-card,
.single-page-layout .content-card,
.single-page-layout .contact-form {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(14, 165, 233, 0.14);
    border-radius: var(--radius-xl);
    box-shadow: 0 18px 38px rgba(148, 163, 184, 0.08);
}

.single-page-layout .pricing-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(240, 249, 255, 0.84));
    border-color: rgba(14, 165, 233, 0.16);
    box-shadow: 0 18px 38px rgba(148, 163, 184, 0.08);
}

.single-page-layout .coaching-focus-card,
.single-page-layout .service-tile,
.single-page-layout .contact-method {
    background: rgba(255, 255, 255, 0.74);
    border-color: rgba(14, 165, 233, 0.14);
    box-shadow: 0 16px 32px rgba(148, 163, 184, 0.07);
}

.single-page-layout .gallery-wrapper {
    margin-top: 1.25rem;
}

.single-page-layout .gallery-page-copy {
    max-width: 760px;
}

.single-page-about .page-hero .container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.25rem;
}

.single-page-about .page-hero-content {
    grid-column: 1;
    max-width: none;
    width: 100%;
    margin: 0;
}

.single-page-about .page-hero-content p {
    max-width: none;
}

.single-page-about .section--about-intro {
    padding-top: calc(6.15rem + 26px);
}

.single-page-about .page-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.25rem;
    align-items: start;
}

.single-page-about .about-media-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.single-page-about .about-media-stack .about-stats {
    margin-top: 1rem;
}

.single-page-about .page-hero-content--inline {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 1.35rem 1.7rem 1.15rem;
    border-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 12px 28px rgba(148, 163, 184, 0.06);
}

.single-page-about .about-image-wrapper {
    margin-top: 0;
}

.single-page-about .page-hero-content--inline .section-label {
    margin-bottom: 0.7rem;
}

.single-page-about .page-hero-content--inline .section-title {
    margin-bottom: 0.55rem;
    font-size: clamp(1.95rem, 3.6vw, 2.9rem);
    line-height: 0.96;
}

.single-page-about .page-hero-content--inline p {
    font-size: 0.94rem;
}

.single-page-about .about-image-wrapper {
    margin-top: 0;
}

.single-page-about .about-image {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.single-page-about .page-hero-content--inline .section-title {
    font-size: clamp(2.25rem, 4.6vw, 3.55rem);
}

.page-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: stretch;
}

.text-card,
.info-card,
.content-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: var(--radius-xl);
}

.bio-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bio-stack p,
.content-card p,
.info-card p {
    color: #475569;
}

.content-card p + p {
    margin-top: 1rem;
}

.cta-banner {
    padding: 2.2rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(8, 145, 178, 0.12));
    border: 1px solid rgba(14, 165, 233, 0.18);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cta-banner-copy {
    max-width: 640px;
}

.cta-banner-copy p {
    color: #475569;
    margin-top: 0.65rem;
}

.cta-banner--coaching {
    position: relative;
    overflow: hidden;
    padding: 2.8rem 2.9rem;
    border-radius: 2rem;
    border: 1px solid rgba(14, 165, 233, 0.22);
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.85), transparent 28%),
        radial-gradient(circle at 82% 28%, rgba(14, 165, 233, 0.12), transparent 22%),
        linear-gradient(135deg, rgba(188, 220, 246, 0.9), rgba(210, 232, 248, 0.96));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 22px 44px rgba(87, 139, 180, 0.12);
    gap: 2rem;
}

.cta-banner--coaching::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 30%, transparent 70%, rgba(255, 255, 255, 0.08)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 38%);
    pointer-events: none;
}

.cta-banner-accent {
    position: absolute;
    width: 22rem;
    height: 22rem;
    right: -8rem;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, rgba(14, 165, 233, 0.08) 38%, transparent 72%);
    filter: blur(14px);
    pointer-events: none;
}

.cta-banner--coaching .cta-banner-copy,
.cta-banner--coaching .cta-banner-side {
    position: relative;
    z-index: 1;
}

.cta-banner--coaching .section-label {
    margin-bottom: 1.25rem;
    background: rgba(14, 165, 233, 0.12);
    border-color: rgba(14, 165, 233, 0.2);
}

.cta-banner--coaching .section-title {
    margin-bottom: 1rem;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 0.95;
}

.cta-banner--coaching .section-title span {
    background: linear-gradient(135deg, #0791cf, #1297cf 48%, #0b7fc0);
    -webkit-background-clip: text;
    background-clip: text;
}

.cta-banner--coaching .cta-banner-copy p {
    max-width: 40rem;
    font-size: 1.08rem;
    color: #546579;
}

.cta-banner-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.cta-side-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(14, 165, 233, 0.2);
    background: rgba(255, 255, 255, 0.38);
    color: var(--primary-700);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-banner-button {
    min-width: 13rem;
    justify-content: center;
    gap: 0.65rem;
    min-height: 3.9rem;
    padding-inline: 1.75rem;
    font-size: 1.08rem;
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(14, 165, 233, 0.22);
}

.cta-banner-button svg {
    transition: transform var(--transition-fast);
}

.cta-banner-button:hover svg {
    transform: translateX(2px);
}

.service-subnav {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.65rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(14, 165, 233, 0.14);
    border-radius: var(--radius-full);
}

.service-subnav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(14, 165, 233, 0.08);
    color: var(--primary-700);
    font-weight: 600;
    font-size: 0.92rem;
}

.service-anchor-section {
    scroll-margin-top: 110px;
}

.section--services-intro {
    padding-bottom: calc(var(--section-py) * 0.18);
}

.section--services-coaching {
    padding-top: calc(var(--section-py) * 0.22);
}

.section--services-coaching .container {
    position: relative;
}

.section--services-coaching .container::before {
    content: '';
    display: block;
    width: min(760px, 100%);
    height: 1px;
    margin: 0 auto 1.4rem;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.42), transparent);
    box-shadow: 0 0 18px rgba(14, 165, 233, 0.12);
}

.service-anchor-section + .service-anchor-section {
    margin-top: 2rem;
}

.section--services-programs {
    padding-top: calc(var(--section-py) * 0.38);
}

.placeholder-note {
    margin-top: 1rem;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(14, 165, 233, 0.28);
    background: rgba(14, 165, 233, 0.06);
    color: #475569;
    font-size: 0.92rem;
}

.service-coaching-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 2rem;
    box-shadow: 0 18px 42px rgba(136, 176, 214, 0.12);
}

.service-coaching-card:hover {
    transform: none;
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 18px 42px rgba(136, 176, 214, 0.12);
}

.service-coaching-card .pricing-header h3 {
    font-size: clamp(2rem, 4vw, 2.35rem);
    margin-bottom: 1rem;
}

.service-coaching-card .pricing-header p {
    max-width: 35rem;
    margin-bottom: 2.15rem;
}

.service-coaching-card .pricing-features {
    margin-bottom: 0;
}

.service-coaching-card .pricing-features ul {
    gap: 1.15rem;
    margin-bottom: 1.15rem;
}

.service-coaching-card .pricing-features li {
    font-size: 0.98rem;
}

.service-coaching-intro {
    margin-top: 0;
}

.service-coaching-overview {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 1.25rem;
    align-items: start;
}

.service-coaching-copy h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3vw, 2.25rem);
    color: #0f172a;
    margin-bottom: 0.8rem;
}

.service-coaching-copy p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.65;
}

.service-coaching-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.service-coaching-feature {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.12);
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.55;
}

.service-coaching-feature svg {
    width: 18px;
    height: 18px;
    color: var(--primary-500);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.service-coaching-meta-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 0.9rem;
    margin-top: 1rem;
}

.service-page-hero {
    max-width: 940px;
    text-align: center;
    margin: 0 auto;
}

.service-page-hero .section-label {
    margin: 0 auto 1rem;
}

.service-page-hero .section-title {
    font-size: clamp(1.5rem, 3.2vw, 2.1rem);
    margin-bottom: 1rem;
}

.service-page-hero .coaching-hero-copy {
    max-width: 44rem;
    margin: 0 auto;
}

.service-note {
    margin-top: 0;
    padding: 0.9rem 1.1rem;
    border-style: solid;
    border-color: rgba(14, 165, 233, 0.22);
    background: rgba(14, 165, 233, 0.08);
    color: var(--primary-700);
}

.service-selection-copy {
    color: #475569;
}

.service-selection-copy > p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.85rem;
}

.service-selection-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-selection-list li {
    margin: 0.35rem 0;
}

.service-selection-list li::before {
    content: '- ';
}

.service-coaching-divider {
    width: 100%;
    height: 1px;
    margin: 2rem 0 1.35rem;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.28), transparent);
}

.service-pricing-actions {
    gap: 0.7rem;
}

.service-pricing-actions--compact {
    margin-top: 1.5rem;
}

.service-pricing-actions--inline {
    margin-top: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
}

.service-pricing-actions--inline .service-info-link,
.service-pricing-actions--inline .service-promo-link {
    flex: 1 1 280px;
    width: auto;
    margin-top: 0;
}

.service-purchase-control {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.service-toggle-btn,
.service-info-link,
.service-option-link {
    width: 100%;
    justify-content: space-between;
    min-height: 3.35rem;
    padding: 0.95rem 1.15rem;
    border-radius: 0.95rem;
    background: rgba(14, 165, 233, 0.06);
    border: 1px solid rgba(14, 165, 233, 0.24);
    color: var(--primary-700);
}

.service-toggle-btn {
    font-size: 0.98rem;
}

.service-toggle-btn.open {
    border-color: #0f172a;
    box-shadow: inset 0 0 0 1px #0f172a;
}

.service-purchase-options {
    gap: 0.5rem;
    margin-top: 0;
    padding-top: 0.55rem;
    border-top: none;
}

.service-option-link {
    justify-content: center;
    font-size: 0.98rem;
}

.service-info-link {
    justify-content: center;
    font-size: 0.98rem;
}

.service-start-btn {
    width: 100%;
    min-height: 3.9rem;
    justify-content: center;
    gap: 0.7rem;
    font-size: 1.02rem;
    box-shadow: 0 14px 34px rgba(14, 165, 233, 0.28);
}

.service-start-btn .toggle-icon,
.service-toggle-btn .toggle-icon {
    margin-left: 0;
}

.service-start-btn.open .toggle-icon,
.service-toggle-btn.open .toggle-icon {
    transform: rotate(180deg);
}

.service-promo-link {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 0.35rem;
    text-align: center;
    white-space: normal;
    text-decoration: none;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    padding: 1.25rem;
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.14);
    border-radius: var(--radius-lg);
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 0.45rem;
}

.coaching-focus-grid,
.service-tile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.coaching-focus-card,
.service-tile {
    display: block;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(14, 165, 233, 0.16);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(255, 255, 255, 0.9));
    color: inherit;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.coaching-focus-card img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    margin-bottom: 1.2rem;
}

.coaching-focus-card h3,
.service-tile h3 {
    font-family: var(--font-heading);
    color: #0f172a;
    margin-bottom: 0.65rem;
}

.coaching-focus-card p,
.service-tile p {
    color: #475569;
}

.service-tile:hover,
.coaching-focus-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-500);
    box-shadow: 0 16px 34px rgba(14, 165, 233, 0.12);
}

.sticky-page-cta {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
    box-shadow: 0 18px 36px rgba(14, 165, 233, 0.18);
}

.contact-form-shell {
    max-width: 760px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.gallery-page-copy {
    max-width: 720px;
}

@media (max-width: 960px) {
    .footer-shell-top,
    .page-grid,
    .coaching-focus-grid,
    .service-tile-grid,
    .feature-list,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-banner--coaching {
        padding: 2.25rem 1.8rem;
    }

    .cta-banner-side {
        width: 100%;
        align-items: flex-start;
    }

    .single-page-about .page-hero .container {
        display: block;
    }
}

@media (max-width: 768px) {
    .sticky-page-cta {
        right: 1rem;
        left: 1rem;
        text-align: center;
        justify-content: center;
    }

    .footer-payment-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.7rem;
        align-items: center;
    }

    .payment-logo-card {
        width: 100%;
        min-width: 0;
        min-height: 44px;
        padding: 0.5rem 0.65rem;
        border-radius: 16px;
    }

    .payment-logo--visa {
        height: 30px;
    }

    .payment-logo--mastercard {
        height: 22px;
    }

    .payment-logo--paypal {
        height: 18px;
    }

    .footer-menu-links {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.45rem 0;
    }

    .footer-menu-links a {
        display: inline-flex;
        align-items: center;
    }

    .footer-menu-links a:not(:last-child)::after {
        content: "|";
        margin: 0 0.7rem;
        color: rgba(71, 85, 105, 0.55);
    }

    .service-subnav {
        width: 100%;
        border-radius: var(--radius-xl);
    }

    .cta-banner--coaching .section-title {
        font-size: clamp(2.1rem, 10vw, 3.2rem);
    }

    .cta-banner-button {
        width: 100%;
    }

    .single-page-layout .page-hero {
        padding: calc(5.6rem + 12px) 0 1rem;
    }

    .single-page-layout .page-hero-content {
        padding: 1.45rem 1.2rem;
        border-radius: 1.4rem;
    }

    .single-page-layout .page-hero .section-title {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }

    .single-page-layout .page-hero + .section {
        padding-top: calc(var(--section-py) * 0.42);
    }

    .single-page-layout .text-card,
    .single-page-layout .info-card,
    .single-page-layout .content-card,
    .single-page-layout .contact-form,
    .single-page-layout .pricing-card,
    .single-page-layout .coaching-focus-card,
    .single-page-layout .service-tile,
    .single-page-layout .contact-method {
        padding: 1.4rem;
    }
}

.text-emphasis {
    color: var(--primary-700);
    font-weight: 700;
}

.about-intro-copy {
    font-size: 1.05rem;
    color: #334155;
    margin-bottom: 1.35rem;
}

.section--coaching-page {
    padding-top: calc(var(--section-py) + 3.5rem);
}

#metodo.section {
    padding-bottom: calc(var(--section-py) * 0.52);
}

#chi-seguo.section {
    padding-top: calc(var(--section-py) * 0.52);
    padding-bottom: calc(var(--section-py) * 0.52);
}

#metodo .method-steps,
#chi-seguo .clients-grid {
    margin-top: 2rem;
}

.coaching-hero-card {
    max-width: 940px;
    margin: 0 auto;
    padding: 2.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(14, 165, 233, 0.18);
    background:
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(240, 249, 255, 0.86));
    box-shadow: 0 18px 44px rgba(136, 176, 214, 0.12);
}

.coaching-hero-copy {
    color: #475569;
    font-size: 1.02rem;
    max-width: 52rem;
}

.coaching-hero-copy + .coaching-hero-copy {
    margin-top: 1rem;
}

.coaching-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.65rem;
}

.coaching-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    background: rgba(255, 255, 255, 0.72);
    color: var(--primary-700);
    font-size: 0.9rem;
    font-weight: 600;
}

.coaching-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.coaching-process-card {
    padding: 1.6rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(14, 165, 233, 0.15);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 34px rgba(148, 163, 184, 0.08);
}

.coaching-process-step {
    width: 2.6rem;
    height: 2.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.12);
    color: var(--primary-700);
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.coaching-process-card h2 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #0f172a;
    margin-bottom: 0.55rem;
}

.coaching-process-card p {
    color: #475569;
}

.coaching-path-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
    margin-top: 3rem;
}

.coaching-path-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 1.75rem;
    border: 1px solid rgba(14, 165, 233, 0.18);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 42px rgba(148, 163, 184, 0.12);
}

.coaching-path-media {
    position: relative;
    height: 560px;
    min-height: 560px;
}

.coaching-path-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.72));
}

.coaching-path-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coaching-path-body {
    padding: 1.75rem;
}

.coaching-path-tag {
    display: inline-flex;
    margin-bottom: 0.8rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-700);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.coaching-path-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 0.85rem;
}

.coaching-path-body p {
    color: #475569;
}

.coaching-path-body .btn {
    margin-top: 1.4rem;
}

.coaching-direct-note {
    max-width: 720px;
    margin: 1.5rem auto 0;
}

.service-note--soft {
    color: #334155;
    background: rgba(255, 255, 255, 0.82);
}

.service-coaching-path-grid {
    margin-top: 2rem;
}

.coaching-path-actions {
    margin-top: 1.35rem;
}

.service-path-duration-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.service-duration-link {
    justify-content: center;
    min-height: 3.35rem;
}

.coaching-path-bullets {
    list-style: none;
    margin: 1.1rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.coaching-path-bullets li {
    position: relative;
    padding-left: 1.4rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.55;
}

.coaching-path-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: var(--primary-500);
}

.coaching-hero-note {
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    text-align: center;
}

.coaching-hero-actions {
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.gallery-preview-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    border-radius: 1.6rem;
    border: 1px solid rgba(14, 165, 233, 0.18);
    box-shadow: 0 18px 40px rgba(148, 163, 184, 0.1);
}

.gallery-preview-card img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-preview-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.78));
    color: #ffffff;
}

.gallery-preview-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.45rem;
}

.gallery-preview-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: #ffffff;
}

.gallery-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gallery-category-section {
    padding: 1.6rem;
    border-radius: 1.75rem;
    border: 1px solid rgba(14, 165, 233, 0.16);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 18px 42px rgba(148, 163, 184, 0.1);
}

.gallery-category-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.gallery-category-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-700);
    margin-bottom: 0.4rem;
}

.gallery-category-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    color: #0f172a;
    margin-bottom: 0.45rem;
}

.gallery-category-head p {
    max-width: 42rem;
    color: #475569;
}

.gallery-category-nav {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.gallery-category-section .gallery-nav {
    position: static;
    transform: none;
}

.gallery-category-section .gallery-scroll {
    padding-bottom: 0.75rem;
}

@media (max-width: 960px) {
    .coaching-process-grid,
    .coaching-path-grid,
    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }

    .gallery-category-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .coaching-hero-card,
    .gallery-category-section {
        padding: 1.4rem;
        border-radius: 1.35rem;
    }

    .coaching-path-media,
    .coaching-path-media img,
    .gallery-preview-card,
    .gallery-preview-card img {
        min-height: 360px;
    }

    .coaching-path-media {
        height: 360px;
    }

    .coaching-pill-row {
        gap: 0.55rem;
    }

    .coaching-pill {
        width: 100%;
        justify-content: flex-start;
    }
}

/* === Coaching - card CTA, pagina dettaglio pacchetto e recap checkout === */
.coaching-path-cta {
    width: 100%;
    justify-content: center;
}

.coaching-detail-subtitle {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #0f172a;
    margin: 1.6rem 0 0.55rem;
}

.coaching-detail .pdp-features,
.coaching-detail .coaching-path-bullets {
    margin-top: 0.5rem;
}

.coaching-tiers {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 0.6rem;
}

.coaching-tier {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.8rem 1.2rem;
    padding: 0.9rem 1.05rem;
    border: 1px solid var(--primary-200);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.72);
}

.coaching-tier-info {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.coaching-tier-name {
    font-weight: 700;
    color: #0f172a;
}

.coaching-tier-duration {
    color: #475569;
    font-size: 0.92rem;
}

.coaching-tier-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.15;
}

.coaching-tier-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-700);
}

.coaching-tier-monthly {
    font-size: 0.8rem;
    color: #64748b;
}

.coaching-tier-cta {
    white-space: nowrap;
}

.checkout-coaching-includes-title {
    margin-top: 1.1rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: #0f172a;
}

.checkout-coaching-includes {
    list-style: none;
    margin: 0.45rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.35rem;
}

.checkout-coaching-includes li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.86rem;
    color: #475569;
    line-height: 1.5;
}

.checkout-coaching-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.52rem;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 999px;
    background: var(--primary-500);
}

.checkout-coaching-back {
    display: inline-flex;
    margin-top: 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-700);
}

@media (max-width: 640px) {
    .coaching-tier {
        grid-template-columns: 1fr auto;
    }

    .coaching-tier-cta {
        grid-column: 1 / -1;
        justify-content: center;
    }
}
