:root {
    --cc-bg: #e8eeea;
    --cc-card: rgba(255,255,255,0.88);
    --cc-card-solid: #ffffff;
    --cc-soft: #edf5f1;

    --cc-navy: #052f3b;
    --cc-navy-2: #073846;
    --cc-text: #061b2b;
    --cc-muted: #607383;

    --cc-teal: #0f8f82;
    --cc-teal-dark: #0a6f66;
    --cc-blue: #2563eb;
    --cc-green: #18a865;
    --cc-red: #c24141;

    --cc-border: rgba(7, 56, 70, 0.14);
    --cc-border-strong: rgba(15, 143, 130, 0.26);
    --cc-shadow: 0 18px 46px rgba(5, 47, 59, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--cc-text);
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at 12% 0%, rgba(15,143,130,0.12), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(37,99,235,0.08), transparent 28%),
        linear-gradient(135deg, #e8eeea 0%, #dde5e0 48%, #eef2ef 100%);
}

a {
    color: inherit;
}

.cc-public-shell {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.cc-public-bg-orb {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(20px);
    opacity: 0.20;
    z-index: 0;
}

.cc-public-bg-orb.one {
    left: -140px;
    top: 80px;
    background: var(--cc-teal);
}

.cc-public-bg-orb.two {
    right: -120px;
    top: 120px;
    background: var(--cc-blue);
}

.cc-public-header {
    width: min(1480px, calc(100% - 32px));
    margin: 16px auto 0;
    padding: 14px 16px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-radius: 24px;
    background: rgba(255,255,255,0.82);
    border: 1px solid var(--cc-border);
    box-shadow: var(--cc-shadow);
    backdrop-filter: blur(14px);
}

.cc-public-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.cc-public-brand > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--cc-teal), var(--cc-blue));
    font-size: 17px;
    font-weight: 950;
    box-shadow: 0 12px 24px rgba(37,99,235,0.16);
}

.cc-public-brand strong {
    display: block;
    color: var(--cc-text);
    font-size: 18px;
    line-height: 1;
    font-weight: 950;
}

.cc-public-brand small {
    display: block;
    margin-top: 4px;
    color: var(--cc-muted);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.cc-public-header-right span {
    min-height: 38px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    color: var(--cc-teal-dark);
    background: rgba(15,143,130,0.08);
    border: 1px solid rgba(15,143,130,0.14);
    font-size: 12px;
    font-weight: 900;
}

.cc-public-main {
    width: min(1480px, calc(100% - 32px));
    margin: 18px auto 60px;
    position: relative;
    z-index: 2;
}

/* HERO */

.cc-booking-hero {
    margin-bottom: 16px;
    padding: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 22px;
    align-items: stretch;
    border-radius: 32px;
    background:
        radial-gradient(circle at 100% 0%, rgba(15,143,130,0.12), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,0.90), rgba(240,248,244,0.84));
    border: 1px solid var(--cc-border);
    box-shadow: var(--cc-shadow);
}

.cc-booking-hero-content {
    min-height: 320px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cc-booking-hero-content > span,
.cc-public-section-head > span {
    display: block;
    color: var(--cc-teal-dark);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cc-booking-hero-content h1 {
    margin: 10px 0 0;
    max-width: 820px;
    color: var(--cc-text);
    font-size: clamp(36px, 5vw, 72px);
    line-height: 0.96;
    font-weight: 950;
    letter-spacing: -2.4px;
}

.cc-booking-hero-content p {
    margin: 18px 0 0;
    max-width: 760px;
    color: var(--cc-muted);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 750;
}

.cc-booking-hero-actions {
    margin-top: 24px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cc-booking-hero-actions a {
    min-height: 46px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--cc-teal), var(--cc-blue));
    text-decoration: none;
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 14px 28px rgba(37,99,235,0.16);
}

.cc-booking-hero-actions a.secondary {
    color: var(--cc-teal-dark);
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(15,143,130,0.18);
    box-shadow: none;
}

/* COACH CARD */

.cc-coach-card {
    padding: 18px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 100% 0%, rgba(37,99,235,0.12), transparent 34%),
        linear-gradient(135deg, rgba(5,47,59,0.96), rgba(7,56,70,0.92));
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 18px 40px rgba(5,47,59,0.18);
    color: #fff;
}

.cc-coach-card.hero {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cc-coach-card.sticky {
    position: sticky;
    top: 18px;
}

.cc-coach-card-top {
    display: flex;
    align-items: center;
    gap: 13px;
}

.cc-coach-avatar {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, var(--cc-teal), var(--cc-blue));
    box-shadow: 0 14px 28px rgba(37,99,235,0.18);
}

.cc-coach-avatar.small {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    border-radius: 17px;
}

.cc-coach-avatar span {
    font-size: 28px;
    font-weight: 950;
}

.cc-coach-avatar.small span {
    font-size: 20px;
}

.cc-coach-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc-coach-card small {
    display: block;
    color: rgba(255,255,255,0.64);
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

.cc-coach-card strong {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-size: 22px;
    line-height: 1.05;
    font-weight: 950;
}

.cc-coach-card em {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,0.78);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.cc-coach-card p {
    margin: 18px 0 0;
    color: rgba(255,255,255,0.76);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 750;
}

.cc-coach-badges {
    margin-top: 16px;
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.cc-coach-badges span {
    min-height: 26px;
    padding: 0 9px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #dffaf4;
    background: rgba(15,143,130,0.18);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 10px;
    font-weight: 900;
}

.cc-coach-system-note {
    margin-top: 16px;
    padding: 11px;
    display: flex;
    gap: 9px;
    border-radius: 16px;
    color: #eafef9;
    background: rgba(15,143,130,0.16);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 850;
}

.cc-coach-system-note i {
    margin-top: 1px;
    color: #34d399;
}

/* MESSAGES */

.cc-public-message {
    margin-bottom: 16px;
    padding: 14px;
    display: flex;
    gap: 12px;
    border-radius: 18px;
    border: 1px solid var(--cc-border);
    background: var(--cc-card);
    box-shadow: var(--cc-shadow);
}

.cc-public-message i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 13px;
}

.cc-public-message.success i {
    color: var(--cc-teal);
    background: rgba(15,143,130,0.10);
}

.cc-public-message.error i {
    color: var(--cc-red);
    background: rgba(194,65,65,0.10);
}

.cc-public-message strong {
    display: block;
    color: var(--cc-text);
    font-size: 14px;
    font-weight: 950;
}

.cc-public-message span {
    display: block;
    margin-top: 3px;
    color: var(--cc-muted);
    font-size: 12px;
    font-weight: 750;
}

/* GRID */

.cc-public-grid {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.cc-public-side {
    display: grid;
    gap: 14px;
}

.cc-public-side-stats {
    margin-top: 16px;
    display: grid;
    gap: 8px;
}

.cc-public-side-stats div {
    padding: 10px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
}

.cc-public-side-stats span {
    display: block;
    color: rgba(255,255,255,0.62);
    font-size: 9px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.cc-public-side-stats strong {
    margin-top: 4px;
    font-size: 18px;
}

.cc-public-content {
    display: grid;
    gap: 16px;
}

/* SELECTED SERVICE */

.cc-selected-service-card {
    padding: 16px;
    border-radius: 22px;
    background: var(--cc-card);
    border: 1px solid var(--cc-border);
    box-shadow: var(--cc-shadow);
}

.cc-selected-service-card > span {
    display: block;
    color: var(--cc-teal-dark);
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.cc-selected-service-card strong {
    display: block;
    margin-top: 5px;
    color: var(--cc-text);
    font-size: 18px;
    font-weight: 950;
}

.cc-selected-service-card p {
    margin: 8px 0 0;
    color: var(--cc-muted);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 750;
}

.cc-selected-service-card div {
    margin-top: 9px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--cc-text);
    font-size: 12px;
    font-weight: 850;
}

.cc-selected-service-card i {
    color: var(--cc-teal);
    margin-top: 1px;
}

/* SECTION */

.cc-service-section,
.cc-slot-section,
.cc-booking-form-section {
    padding: 18px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 100% 0%, rgba(15,143,130,0.055), transparent 34%),
        var(--cc-card);
    border: 1px solid var(--cc-border);
    box-shadow: var(--cc-shadow);
}

.cc-public-section-head {
    margin-bottom: 14px;
}

.cc-public-section-head.split {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.cc-public-section-head h2 {
    margin: 5px 0 0;
    color: var(--cc-text);
    font-size: 26px;
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.8px;
}

.cc-public-section-head p {
    margin: 7px 0 0;
    color: var(--cc-muted);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 750;
}

/* SERVICES */

.cc-service-list {
    display: grid;
    gap: 10px;
}

.cc-service-option {
    padding: 12px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border-radius: 18px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(7,56,70,0.11);
    text-decoration: none;
    transition: 0.18s ease;
}

.cc-service-option:hover,
.cc-service-option.active {
    transform: translateY(-1px);
    border-color: rgba(15,143,130,0.28);
    background:
        radial-gradient(circle at 100% 0%, rgba(15,143,130,0.10), transparent 34%),
        rgba(255,255,255,0.90);
}

.cc-service-option-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--cc-teal);
    background: rgba(15,143,130,0.10);
    border: 1px solid rgba(15,143,130,0.18);
    font-size: 18px;
}

.cc-service-option.active .cc-service-option-icon {
    color: #fff;
    background: linear-gradient(135deg, var(--cc-teal), var(--cc-blue));
}

.cc-service-option strong {
    display: block;
    color: var(--cc-text);
    font-size: 15px;
    font-weight: 950;
}

.cc-service-option span {
    display: block;
    margin-top: 4px;
    color: var(--cc-muted);
    font-size: 11px;
    font-weight: 800;
}

.cc-service-option em {
    min-height: 28px;
    padding: 0 9px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: var(--cc-teal-dark);
    background: rgba(15,143,130,0.08);
    border: 1px solid rgba(15,143,130,0.14);
    font-size: 10px;
    font-style: normal;
    font-weight: 950;
}

/* MONTH */

.cc-month-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cc-month-switch a,
.cc-month-switch strong {
    min-height: 34px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 11px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 950;
}

.cc-month-switch a {
    color: var(--cc-teal-dark);
    background: rgba(15,143,130,0.08);
    border: 1px solid rgba(15,143,130,0.14);
}

.cc-month-switch strong {
    color: var(--cc-text);
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(7,56,70,0.11);
}

/* SLOTS */

.cc-slot-days {
    display: grid;
    gap: 10px;
}

.cc-public-slot-day {
    padding: 12px;
    border-radius: 18px;
    background: rgba(255,255,255,0.70);
    border: 1px solid rgba(7,56,70,0.11);
}

.cc-public-slot-day-head {
    margin-bottom: 10px;
    padding-bottom: 8px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid rgba(7,56,70,0.08);
}

.cc-public-slot-day-head span {
    display: block;
    color: var(--cc-teal-dark);
    font-size: 9px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.cc-public-slot-day-head strong {
    display: block;
    margin-top: 3px;
    color: var(--cc-text);
    font-size: 15px;
    font-weight: 950;
}

.cc-public-slot-day-head em {
    color: var(--cc-muted);
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
}

.cc-public-slot-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(90px, 1fr));
    gap: 7px;
}

.cc-public-slot {
    min-height: 58px;
    padding: 8px;
    display: grid;
    align-content: center;
    border-radius: 13px;
    text-align: center;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(15,143,130,0.18);
    transition: 0.18s ease;
}

.cc-public-slot:hover,
.cc-public-slot.active {
    transform: translateY(-1px);
    background:
        radial-gradient(circle at 100% 0%, rgba(37,99,235,0.12), transparent 34%),
        linear-gradient(135deg, var(--cc-teal), var(--cc-blue));
    border-color: transparent;
}

.cc-public-slot strong {
    color: var(--cc-text);
    font-size: 16px;
    font-weight: 950;
}

.cc-public-slot span {
    margin-top: 3px;
    color: var(--cc-muted);
    font-size: 10px;
    font-weight: 850;
}

.cc-public-slot:hover strong,
.cc-public-slot:hover span,
.cc-public-slot.active strong,
.cc-public-slot.active span {
    color: #fff;
}

/* SUMMARY */

.cc-booking-summary {
    margin-bottom: 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.cc-booking-summary div {
    padding: 10px;
    border-radius: 14px;
    background: var(--cc-soft);
    border: 1px solid rgba(7,56,70,0.10);
}

.cc-booking-summary span {
    display: block;
    color: var(--cc-muted);
    font-size: 8.5px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.cc-booking-summary strong {
    display: block;
    margin-top: 4px;
    color: var(--cc-text);
    font-size: 12px;
    font-weight: 950;
}

/* FORM */

.cc-public-booking-form {
    display: grid;
    gap: 12px;
}

.cc-public-form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.cc-public-input-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--cc-muted);
    font-size: 9px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.cc-public-input-group > div {
    min-height: 44px;
    padding: 0 11px;
    display: flex;
    align-items: center;
    gap: 9px;
    border-radius: 13px;
    background: var(--cc-soft);
    border: 1px solid rgba(7,56,70,0.12);
}

.cc-public-input-group > div.textarea {
    min-height: 100px;
    align-items: flex-start;
    padding-top: 12px;
}

.cc-public-input-group i {
    color: var(--cc-teal);
}

.cc-public-input-group input,
.cc-public-input-group textarea {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--cc-text);
    background: transparent;
    font-size: 13px;
    font-weight: 750;
}

.cc-public-input-group textarea {
    resize: vertical;
    min-height: 80px;
}

.cc-public-submit {
    min-height: 48px;
    width: fit-content;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--cc-teal), var(--cc-blue));
    cursor: pointer;
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 14px 28px rgba(37,99,235,0.16);
}

.cc-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* EMPTY */

.cc-empty-public {
    padding: 24px;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 18px;
    background: var(--cc-soft);
    border: 1px solid rgba(7,56,70,0.10);
}

.cc-empty-public i {
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: var(--cc-teal);
    background: rgba(15,143,130,0.10);
    font-size: 22px;
}

.cc-empty-public strong {
    color: var(--cc-text);
    font-size: 15px;
    font-weight: 950;
}

.cc-empty-public span {
    margin-top: 5px;
    color: var(--cc-muted);
    font-size: 12px;
    font-weight: 750;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .cc-booking-hero,
    .cc-public-grid {
        grid-template-columns: 1fr;
    }

    .cc-coach-card.sticky {
        position: relative;
        top: auto;
    }

    .cc-public-side {
        grid-template-columns: 1fr 1fr;
    }

    .cc-booking-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-public-slot-grid {
        grid-template-columns: repeat(4, minmax(90px, 1fr));
    }
}

@media (max-width: 800px) {
    .cc-public-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .cc-booking-hero {
        padding: 16px;
        border-radius: 24px;
    }

    .cc-booking-hero-content {
        min-height: unset;
        padding: 8px;
    }

    .cc-booking-hero-content h1 {
        font-size: 38px;
        letter-spacing: -1.4px;
    }

    .cc-public-side,
    .cc-public-form-grid,
    .cc-booking-summary {
        grid-template-columns: 1fr;
    }

    .cc-public-section-head.split,
    .cc-public-slot-day-head {
        flex-direction: column;
    }

    .cc-public-slot-grid {
        grid-template-columns: repeat(2, minmax(90px, 1fr));
    }

    .cc-public-submit {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .cc-public-header,
    .cc-public-main {
        width: min(100% - 20px, 1480px);
    }

    .cc-booking-hero-content h1 {
        font-size: 32px;
    }

    .cc-public-slot-grid {
        grid-template-columns: 1fr;
    }

    .cc-service-option {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .cc-service-option em {
        grid-column: 1 / -1;
        width: fit-content;
    }
}
/* =========================================================
   COACHCORE PUBLIC BOOKING - COACH PICKER EXTENSION
========================================================= */

.cc-coach-picker-section {
    margin-bottom: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.68));
    border: 1px solid rgba(255,255,255,0.72);
    border-radius: 28px;
    box-shadow: 0 14px 34px rgba(5, 33, 49, 0.12);
    padding: 26px;
}

.cc-coach-picker-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.cc-coach-picker-card {
    position: relative;
    min-height: 188px;
    padding: 18px;
    border-radius: 22px;
    text-decoration: none;
    background:
        radial-gradient(circle at 94% 92%, rgba(16, 168, 141, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.68));
    border: 1px solid rgba(5, 33, 49, 0.08);
    box-shadow: 0 10px 26px rgba(5, 33, 49, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #052131;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.cc-coach-picker-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(5, 33, 49, 0.14);
    border-color: rgba(16, 168, 141, 0.28);
}

.cc-coach-picker-card.active {
    border-color: rgba(16, 168, 141, 0.52);
    box-shadow: 0 18px 38px rgba(16, 168, 141, 0.16);
}

.cc-coach-picker-card.active::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, #10a88d, #245fe0);
}

.cc-coach-picker-avatar {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, #10a88d, #245fe0);
    color: #ffffff;
    font-size: 22px;
    font-weight: 950;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 28px rgba(36, 95, 224, 0.18);
}

.cc-coach-picker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc-coach-picker-info strong {
    display: block;
    color: #052131;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.cc-coach-picker-info span {
    display: block;
    color: #526c76;
    font-size: 13px;
    font-weight: 850;
    margin-top: 5px;
}

.cc-coach-picker-info small {
    display: block;
    color: #087d72;
    font-size: 12px;
    font-weight: 950;
    margin-top: 6px;
}

.cc-coach-picker-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.cc-coach-picker-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(16, 168, 141, 0.11);
    color: #087d72;
    font-size: 12px;
    font-weight: 950;
}

.cc-coach-picker-meta span:nth-child(2) {
    background: rgba(36, 95, 224, 0.10);
    color: #1649b5;
}

.cc-coach-picker-card em {
    position: absolute;
    top: 16px;
    right: 16px;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(5, 33, 49, 0.07);
    color: #526c76;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 950;
}

.cc-coach-picker-card.active em {
    background: linear-gradient(135deg, #10a88d, #245fe0);
    color: #ffffff;
}

@media (max-width: 1100px) {
    .cc-coach-picker-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .cc-coach-picker-section {
        padding: 18px;
        border-radius: 22px;
    }

    .cc-coach-picker-grid {
        grid-template-columns: 1fr;
    }

    .cc-coach-picker-card {
        min-height: auto;
    }
}

/* Közzétett profilblokkok rendezett befogadója */
.cc-profile-block-host {
    display: contents;
}

[data-profile-block] {
    animation: ccProfileBlockEnter .28s ease both;
}

@keyframes ccProfileBlockEnter {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Public profile V4: modern motion, navigation and conversion focus */
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
.cc-skip-link { position: fixed; z-index: 10050; top: 10px; left: 10px; padding: 11px 15px; border-radius: 11px; color: #fff; background: #052131; font-size: 13px; font-weight: 900; text-decoration: none; transform: translateY(-150%); transition: transform .18s ease; }
.cc-skip-link:focus { transform: translateY(0); }
.cc-scroll-progress { position: fixed; z-index: 1000; top: 0; right: 0; left: 0; height: 3px; pointer-events: none; }
.cc-scroll-progress i { display: block; width: 100%; height: 100%; background: linear-gradient(90deg,var(--coach-primary,#10a88d),var(--coach-secondary,#245fe0)); box-shadow: 0 0 12px rgba(36,95,224,.45); transform: scaleX(0); transform-origin: left center; will-change: transform; }
.cc-public-shell::before { position: fixed; z-index: -1; inset: 0; background: radial-gradient(circle at 12% 18%,color-mix(in srgb,var(--coach-primary,#10a88d) 12%,transparent),transparent 32%),radial-gradient(circle at 88% 42%,color-mix(in srgb,var(--coach-secondary,#245fe0) 11%,transparent),transparent 34%); content: ''; pointer-events: none; }
.cc-public-header { border-color: rgba(255,255,255,.55) !important; background: rgba(255,255,255,.79) !important; box-shadow: 0 12px 38px rgba(5,33,49,.08) !important; backdrop-filter: blur(20px) saturate(145%); }
.cc-public-header::after { position: absolute; right: 9%; bottom: -1px; left: 9%; height: 1px; background: linear-gradient(90deg,transparent,var(--coach-primary,#10a88d),var(--coach-secondary,#245fe0),transparent); content: ''; opacity: .45; }
.cc-booking-hero { position: relative; isolation: isolate; overflow: hidden; box-shadow: 0 25px 70px rgba(5,33,49,.13) !important; }
.cc-booking-hero::before { position: absolute; z-index: -1; width: 420px; height: 420px; top: -250px; right: -100px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: radial-gradient(circle,rgba(255,255,255,.18),transparent 68%); content: ''; animation: ccHeroOrbit 14s ease-in-out infinite alternate; }
.cc-booking-hero::after { position: absolute; z-index: -1; width: 290px; height: 290px; bottom: -210px; left: 24%; border: 1px solid rgba(255,255,255,.18); border-radius: 44%; background: rgba(255,255,255,.05); content: ''; transform: rotate(28deg); animation: ccHeroFloat 11s ease-in-out infinite alternate; }
@keyframes ccHeroOrbit { to { transform: translate(-45px,55px) scale(1.08); } }
@keyframes ccHeroFloat { to { transform: translate(45px,-30px) rotate(52deg); } }
.cc-booking-hero-content h1 { text-wrap: balance; }
.cc-booking-hero-content p { max-width: 760px; }
.cc-booking-hero-actions a { position: relative; overflow: hidden; transition: transform .2s ease,box-shadow .2s ease,background .2s ease !important; }
.cc-booking-hero-actions a::after { position: absolute; inset: 0; background: linear-gradient(105deg,transparent 25%,rgba(255,255,255,.28) 50%,transparent 75%); content: ''; transform: translateX(-120%); transition: transform .55s ease; }
.cc-booking-hero-actions a:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(5,33,49,.16); }
.cc-booking-hero-actions a:hover::after { transform: translateX(120%); }

.cc-draft-preview-banner { position: relative; z-index: 30; display: flex; max-width: 1480px; align-items: center; gap: 11px; margin: 12px auto 0; padding: 11px 14px; border: 1px solid #d6caff; border-radius: 15px; color: #352568; background: linear-gradient(100deg,rgba(246,242,255,.97),rgba(231,242,255,.96)); box-shadow: 0 10px 30px rgba(65,45,130,.1); }
.cc-draft-preview-banner > span { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; border-radius: 11px; color: #fff; background: linear-gradient(135deg,#7753dc,#2463df); }
.cc-draft-preview-banner strong,.cc-draft-preview-banner small { display: block; }
.cc-draft-preview-banner strong { font-size: 13px; font-weight: 950; }
.cc-draft-preview-banner small { margin-top: 2px; color: #6b5d8e; font-size: 11px; font-weight: 750; }
.cc-draft-preview-banner > a { display: inline-flex; min-height: 36px; align-items: center; gap: 6px; margin-left: auto; padding: 0 12px; border-radius: 10px; color: #fff; background: #5036ad; font-size: 11px; font-weight: 900; text-decoration: none; white-space: nowrap; }
.cc-draft-preview-mode .cc-mobile-booking-cta { display: none !important; }

.cc-public-quicknav { position: sticky; z-index: 40; top: 86px; display: flex; max-width: max-content; gap: 5px; margin: 15px auto 2px; padding: 5px; border: 1px solid rgba(21,105,110,.14); border-radius: 15px; background: rgba(255,255,255,.82); box-shadow: 0 12px 30px rgba(5,33,49,.09); backdrop-filter: blur(16px) saturate(135%); }
.cc-public-quicknav a { display: inline-flex; min-height: 38px; align-items: center; gap: 7px; padding: 0 13px; border-radius: 11px; color: #526c76; font-size: 12px; font-weight: 900; text-decoration: none; transition: color .18s,background .18s,transform .18s; }
.cc-public-quicknav a i { color: var(--coach-primary,#10a88d); }
.cc-public-quicknav a:hover,.cc-public-quicknav a.is-active { color: #fff; background: linear-gradient(135deg,var(--coach-primary,#10a88d),var(--coach-secondary,#245fe0)); transform: translateY(-1px); }
.cc-public-quicknav a:hover i,.cc-public-quicknav a.is-active i { color: #fff; }

.cc-mini-landing-card,.cc-public-showcase,.cc-public-reviews,.cc-public-faq,.cc-public-lead,.cc-public-content,.cc-coach-card.sticky { border-color: rgba(5,54,70,.10) !important; box-shadow: 0 18px 55px rgba(5,33,49,.07) !important; }
.cc-showcase-card,.cc-review-card,.cc-service-option { position: relative; isolation: isolate; overflow: hidden; transition: transform .22s ease,border-color .22s ease,box-shadow .22s ease !important; }
.cc-showcase-card::after,.cc-review-card::after,.cc-service-option::after { position: absolute; z-index: -1; inset: 0; background: radial-gradient(circle at var(--mx,50%) var(--my,50%),rgba(255,255,255,.75),transparent 42%); content: ''; opacity: 0; transition: opacity .2s; pointer-events: none; }
.cc-showcase-card:hover,.cc-review-card:hover,.cc-service-option:hover { border-color: color-mix(in srgb,var(--coach-primary,#10a88d) 34%,#dfe8e9) !important; box-shadow: 0 18px 38px rgba(5,33,49,.11) !important; transform: translateY(-5px); }
.cc-showcase-card:hover::after,.cc-review-card:hover::after,.cc-service-option:hover::after { opacity: .48; }
.cc-showcase-card img { transition: transform .55s cubic-bezier(.2,.75,.2,1),filter .4s ease; }
.cc-showcase-card:hover img { filter: saturate(1.08) contrast(1.03); transform: scale(1.045); }
.cc-public-slot { transition: transform .18s ease,box-shadow .18s ease,border-color .18s ease !important; }
.cc-public-slot:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(36,95,224,.13); }
.cc-public-submit { position: relative; overflow: hidden; }
.cc-booking-approval-note { display: flex; align-items: flex-start; gap: 11px; margin: 4px 0 14px; padding: 13px 14px; border: 1px solid #efdba7; border-radius: 13px; color: #765611; background: linear-gradient(110deg,#fff8df,#fffdf6); }
.cc-booking-approval-note > i { display: grid; width: 32px; height: 32px; flex: 0 0 32px; place-items: center; border-radius: 9px; color: #fff; background: linear-gradient(135deg,#e6a21b,#d67808); }
.cc-booking-approval-note strong,.cc-booking-approval-note span { display: block; }
.cc-booking-approval-note strong { color: #614407; font-size: 13px; font-weight: 950; }
.cc-booking-approval-note span { margin-top: 3px; color: #876b2e; font-size: 11px; font-weight: 750; line-height: 1.5; }
.cc-public-submit:disabled,.cc-lead-form button:disabled { cursor: not-allowed; filter: grayscale(.22); opacity: .68; box-shadow: none !important; }
.cc-public-submit::after { position: absolute; inset: 0; background: linear-gradient(105deg,transparent 25%,rgba(255,255,255,.25) 50%,transparent 75%); content: ''; transform: translateX(-130%); transition: transform .6s ease; }
.cc-public-submit:hover::after { transform: translateX(130%); }

.cc-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease var(--reveal-delay,0ms),transform .6s cubic-bezier(.2,.75,.2,1) var(--reveal-delay,0ms); }
.cc-reveal.is-visible { opacity: 1; transform: translateY(0); }
.cc-mobile-booking-cta { display: none; }

a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible { outline: 3px solid color-mix(in srgb,var(--coach-secondary,#245fe0) 42%,transparent); outline-offset: 3px; }

@media (max-width: 1550px) {
    .cc-draft-preview-banner { margin-right: 22px; margin-left: 22px; }
}
@media (max-width: 760px) {
    body { padding-bottom: 82px; }
    .cc-public-quicknav { top: 70px; max-width: calc(100vw - 24px); justify-content: flex-start; overflow-x: auto; border-radius: 13px; scrollbar-width: none; }
    .cc-public-quicknav::-webkit-scrollbar { display: none; }
    .cc-public-quicknav a { flex: 0 0 auto; min-height: 36px; padding: 0 10px; font-size: 11px; }
    .cc-draft-preview-banner { align-items: flex-start; margin: 9px 12px 0; }
    .cc-draft-preview-banner > a { display: none; }
    .cc-draft-preview-banner small { line-height: 1.4; }
    .cc-mobile-booking-cta { position: fixed; z-index: 900; right: 12px; bottom: max(12px,env(safe-area-inset-bottom)); left: 12px; display: flex; min-height: 56px; align-items: center; gap: 10px; padding: 0 9px 0 17px; border: 1px solid rgba(255,255,255,.36); border-radius: 17px; color: #fff; background: linear-gradient(125deg,var(--coach-primary,#10a88d),var(--coach-secondary,#245fe0)); box-shadow: 0 16px 38px rgba(5,50,90,.28); font-size: 14px; font-weight: 950; text-decoration: none; }
    .cc-mobile-booking-cta > b { display: grid; width: 38px; height: 38px; margin-left: auto; place-items: center; border-radius: 12px; background: rgba(255,255,255,.17); }
    .cc-booking-hero::before { width: 280px; height: 280px; }
    .cc-showcase-card:hover,.cc-review-card:hover,.cc-service-option:hover { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,*::before,*::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    .cc-reveal { opacity: 1; transform: none; }
}

/* =========================================================
   CoachCore public booking V5 – complete responsive redesign
   ========================================================= */
:root {
    --cc-v5-ink: #071f2c;
    --cc-v5-muted: #627780;
    --cc-v5-line: rgba(8, 60, 72, .11);
    --cc-v5-surface: rgba(255, 255, 255, .9);
    --cc-v5-surface-solid: #ffffff;
    --cc-v5-shadow-sm: 0 10px 30px rgba(5, 40, 54, .07);
    --cc-v5-shadow-lg: 0 28px 80px rgba(5, 40, 54, .13);
    --cc-v5-radius-sm: 14px;
    --cc-v5-radius-md: 20px;
    --cc-v5-radius-lg: 30px;
}

body {
    color: var(--cc-v5-ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body .cc-public-shell {
    min-height: 100dvh;
    overflow: clip;
    isolation: isolate;
}

body .cc-public-shell::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    background-image: linear-gradient(rgba(8, 72, 82, .026) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 72, 82, .026) 1px, transparent 1px);
    background-size: 44px 44px;
    content: "";
    pointer-events: none;
    mask-image: linear-gradient(to bottom, #000 0, transparent 78%);
}

body .cc-public-bg-orb { opacity: .12; filter: blur(55px); }
body .cc-public-main { width: min(1320px, calc(100% - 40px)); margin: 20px auto 80px; }
body .cc-public-main > *,
body .cc-profile-block-host > * { scroll-margin-top: 120px; }

/* Header */
body .cc-public-header {
    position: sticky;
    z-index: 700;
    top: 12px;
    width: min(1320px, calc(100% - 40px));
    min-height: 72px;
    margin: 12px auto 0;
    padding: 10px 12px 10px 15px;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 22px;
    background: rgba(252, 255, 254, .78);
    box-shadow: 0 12px 38px rgba(4, 36, 49, .08);
    backdrop-filter: blur(22px) saturate(150%);
    transition: box-shadow .2s ease, background .2s ease, transform .2s ease;
}

body .cc-public-header.is-scrolled { background: rgba(255, 255, 255, .94); box-shadow: 0 18px 48px rgba(4, 36, 49, .13); }
body .cc-public-brand { min-width: 0; gap: 11px; }
body .cc-public-brand-mark { width: 45px; height: 45px; border-radius: 14px; font-size: 14px; }
body .cc-public-brand-logo { max-width: 160px; max-height: 44px; padding: 5px 7px; border-radius: 12px; }
body .cc-public-brand strong { overflow: hidden; font-size: 17px; line-height: 1.12; text-overflow: ellipsis; white-space: nowrap; }
body .cc-public-brand small { margin-top: 3px; font-size: 9.5px; letter-spacing: .1em; }
body .cc-public-header-actions { display: flex; align-items: center; gap: 8px; }
body .cc-public-trust-pill { display: inline-flex; min-height: 42px; align-items: center; gap: 7px; padding: 0 13px; border: 1px solid color-mix(in srgb, var(--coach-primary, #0f8f82) 18%, transparent); border-radius: 13px; color: color-mix(in srgb, var(--coach-primary, #0f8f82) 72%, #173b47); background: color-mix(in srgb, var(--coach-primary, #0f8f82) 7%, #fff); font-size: 11.5px; font-weight: 850; }
body .cc-public-header-cta { display: inline-flex; min-height: 46px; align-items: center; gap: 10px; padding: 0 8px 0 16px; border-radius: 14px; color: #fff; background: linear-gradient(135deg, var(--coach-primary, #0f8f82), var(--coach-secondary, #2563eb)); box-shadow: 0 10px 24px color-mix(in srgb, var(--coach-secondary, #2563eb) 22%, transparent); font-size: 12px; font-weight: 900; text-decoration: none; }
body .cc-public-header-cta > i { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 9px; background: rgba(255, 255, 255, .17); }

/* Hero */
body .cc-public-shell .cc-booking-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, .72fr);
    min-height: 550px;
    align-items: stretch;
    gap: 18px;
    margin-bottom: 18px;
    padding: clamp(24px, 3.4vw, 48px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .84);
    border-radius: 38px;
    background: radial-gradient(circle at 10% 5%, color-mix(in srgb, var(--coach-primary, #0f8f82) 13%, transparent), transparent 32%), radial-gradient(circle at 86% 14%, color-mix(in srgb, var(--coach-secondary, #2563eb) 12%, transparent), transparent 32%), linear-gradient(135deg, rgba(255,255,255,.94), rgba(244,250,248,.84));
    box-shadow: var(--cc-v5-shadow-lg);
}

body .cc-public-shell .cc-booking-hero::before { position: absolute; top: -160px; right: -120px; width: 470px; height: 470px; border: 1px solid color-mix(in srgb, var(--coach-primary, #0f8f82) 12%, transparent); border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 24px, color-mix(in srgb, var(--coach-secondary, #2563eb) 5%, transparent) 25px 26px); content: ""; pointer-events: none; }
body .cc-public-shell .cc-booking-hero::after { position: absolute; right: 35%; bottom: -90px; width: 220px; height: 220px; border-radius: 62px; background: linear-gradient(135deg, color-mix(in srgb, var(--coach-primary, #0f8f82) 10%, transparent), color-mix(in srgb, var(--coach-secondary, #2563eb) 8%, transparent)); content: ""; filter: blur(2px); transform: rotate(28deg); pointer-events: none; }
body .cc-public-shell .cc-booking-hero-content { position: relative; z-index: 2; min-height: 0; justify-content: center; padding: clamp(4px, 1vw, 14px); }
body .cc-booking-eyebrow { display: flex; width: max-content; max-width: 100%; min-height: 36px; align-items: center; gap: 8px; padding: 4px 6px 4px 11px; border: 1px solid color-mix(in srgb, var(--coach-primary, #0f8f82) 16%, transparent); border-radius: 999px; color: color-mix(in srgb, var(--coach-primary, #0f8f82) 76%, #173946); background: rgba(255, 255, 255, .74); box-shadow: 0 7px 22px rgba(5, 48, 58, .06); font-size: 10.5px; font-weight: 900; letter-spacing: .045em; text-transform: uppercase; }
body .cc-booking-eyebrow > i { color: var(--coach-primary, #0f8f82); }
body .cc-booking-eyebrow > b { display: inline-flex; min-height: 26px; align-items: center; gap: 5px; padding: 0 8px; border-radius: 999px; color: #087356; background: #e8f8f1; font-size: 9px; letter-spacing: 0; }
body .cc-booking-eyebrow > b i { width: 6px; height: 6px; border-radius: 50%; background: #10b981; box-shadow: 0 0 0 4px rgba(16,185,129,.12); }
body .cc-public-shell .cc-booking-hero-content h1 { max-width: 780px; margin: 18px 0 0; color: var(--cc-v5-ink); font-size: clamp(40px, 5.2vw, 72px); font-weight: 950; letter-spacing: -.055em; line-height: .98; text-wrap: balance; }
body .cc-public-shell .cc-booking-hero-content > p { max-width: 680px; margin: 19px 0 0; color: #5d737d; font-size: clamp(14px, 1.25vw, 17px); font-weight: 560; line-height: 1.72; }
body.cc-direct-profile .cc-booking-hero-actions a:first-child { display: inline-flex !important; }
body .cc-public-shell .cc-booking-hero-actions { margin-top: 25px; gap: 9px; }
body .cc-public-shell .cc-booking-hero-actions a { min-height: 50px; padding: 0 18px; border: 0; border-radius: 15px; color: #fff !important; background: linear-gradient(135deg, var(--coach-primary, #0f8f82), var(--coach-secondary, #2563eb)) !important; box-shadow: 0 14px 30px color-mix(in srgb, var(--coach-secondary, #2563eb) 20%, transparent); font-size: 13px; }
body .cc-public-shell .cc-booking-hero-actions a.secondary { color: #fff !important; }
body .cc-booking-hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 28px; }
body .cc-booking-hero-proof > div { display: grid; grid-template-columns: 36px minmax(0, 1fr); align-items: center; gap: 9px; min-width: 0; padding: 10px; border: 1px solid var(--cc-v5-line); border-radius: 15px; background: rgba(255,255,255,.68); }
body .cc-booking-hero-proof > div > span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 11px; color: var(--coach-primary, #0f8f82); background: color-mix(in srgb, var(--coach-primary, #0f8f82) 9%, #fff); }
body .cc-booking-hero-proof p { min-width: 0; margin: 0; }
body .cc-booking-hero-proof strong { display: block; overflow: hidden; color: var(--cc-v5-ink); font-size: 13px; font-weight: 950; line-height: 1.18; text-overflow: ellipsis; white-space: nowrap; }
body .cc-booking-hero-proof small { display: block; margin-top: 2px; overflow: hidden; color: #72858e; font-size: 9.5px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }

/* Coach identity card */
body .cc-public-shell .cc-coach-card.hero { position: relative; z-index: 2; align-self: stretch; padding: 24px !important; overflow: hidden; border-radius: 28px !important; }
body .cc-public-shell .cc-coach-card.hero::after { position: absolute; right: -45px; bottom: -55px; width: 180px; height: 180px; border: 1px solid color-mix(in srgb, var(--coach-hero-accent) 22%, transparent); border-radius: 50%; content: ""; box-shadow: 0 0 0 25px color-mix(in srgb, var(--coach-hero-accent) 5%, transparent), 0 0 0 52px color-mix(in srgb, var(--coach-hero-accent) 4%, transparent); pointer-events: none; }
body .cc-public-shell .cc-coach-card.hero .cc-coach-card-top { align-items: center; gap: 14px; }
body .cc-public-shell .cc-coach-card.hero .cc-coach-avatar { width: 92px; height: 92px; border-radius: 25px; }
body .cc-public-shell .cc-coach-card.hero small { display: inline-flex; align-items: center; gap: 7px; font-size: 9.5px; letter-spacing: .08em; }
body .cc-public-shell .cc-coach-card.hero small > i { width: 7px; height: 7px; border-radius: 50%; background: #31dfab; box-shadow: 0 0 0 5px rgba(49,223,171,.12); }
body .cc-public-shell .cc-coach-card.hero strong { margin-top: 6px; font-size: clamp(23px, 2.5vw, 32px); letter-spacing: -.035em; }
body .cc-public-shell .cc-coach-card.hero em { margin-top: 3px; font-size: 12px; }
body .cc-public-shell .cc-coach-card.hero > p { position: relative; z-index: 1; margin: 22px 0 0; padding-top: 20px; border-top: 1px solid color-mix(in srgb, var(--coach-hero-accent) 16%, transparent); font-size: 13px; line-height: 1.7; }
body .cc-public-shell .cc-coach-badges { position: relative; z-index: 1; gap: 6px; margin-top: 18px; }
body .cc-public-shell .cc-coach-badges span { padding: 7px 9px; border-radius: 10px; font-size: 9.5px; }
body .cc-public-shell .cc-coach-system-note { position: relative; z-index: 1; margin-top: auto; padding: 12px 13px; border-radius: 14px; }
body .cc-public-shell .cc-coach-system-note span { font-size: 10.5px; line-height: 1.5; }

/* Navigation and booking progress */
body .cc-public-quicknav { top: 94px; max-width: min(100%, max-content); margin: 14px auto 0; padding: 5px; border: 1px solid rgba(255,255,255,.84); border-radius: 16px; background: rgba(255,255,255,.83); box-shadow: var(--cc-v5-shadow-sm); backdrop-filter: blur(20px) saturate(140%); }
body .cc-public-quicknav a { min-height: 39px; padding: 0 12px; border-radius: 11px; font-size: 11px; }
body .cc-booking-progress-nav { display: grid; grid-template-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr); max-width: 900px; align-items: center; gap: 7px; margin: 16px auto 22px; padding: 8px; border: 1px solid rgba(255,255,255,.82); border-radius: 22px; background: rgba(255,255,255,.77); box-shadow: var(--cc-v5-shadow-sm); backdrop-filter: blur(18px); }
body .cc-booking-progress-nav > a { display: grid; grid-template-columns: 38px minmax(0,1fr); min-height: 58px; align-items: center; gap: 10px; padding: 8px 10px; border: 1px solid transparent; border-radius: 16px; color: #667b84; text-decoration: none; }
body .cc-booking-progress-nav > a > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 12px; color: #6f828b; background: #edf2f2; font-size: 12px; font-weight: 950; }
body .cc-booking-progress-nav small,
body .cc-booking-progress-nav strong { display: block; }
body .cc-booking-progress-nav small { color: #81929a; font-size: 9px; font-weight: 850; letter-spacing: .055em; text-transform: uppercase; }
body .cc-booking-progress-nav strong { margin-top: 1px; color: #526973; font-size: 12px; font-weight: 900; }
body .cc-booking-progress-nav > i { color: #a2b0b5; text-align: center; }
body .cc-booking-progress-nav > a.is-current { border-color: color-mix(in srgb, var(--coach-secondary, #2563eb) 18%, transparent); background: linear-gradient(135deg, color-mix(in srgb, var(--coach-primary, #0f8f82) 8%, #fff), color-mix(in srgb, var(--coach-secondary, #2563eb) 7%, #fff)); box-shadow: 0 9px 22px rgba(9,60,81,.07); }
body .cc-booking-progress-nav > a.is-current > span { color: #fff; background: linear-gradient(135deg, var(--coach-primary, #0f8f82), var(--coach-secondary, #2563eb)); box-shadow: 0 8px 18px color-mix(in srgb, var(--coach-secondary, #2563eb) 20%, transparent); }
body .cc-booking-progress-nav > a.is-current strong { color: var(--cc-v5-ink); }
body .cc-booking-progress-nav > a.is-complete > span { color: #087357; background: #e1f7ef; }
body .cc-booking-progress-nav > a.is-complete strong { color: #196b5b; }
body .cc-booking-progress-nav > a.is-locked { opacity: .66; }

/* Profile content */
body .cc-mini-landing-section,
body .cc-public-showcase,
body .cc-public-reviews,
body .cc-public-faq,
body .cc-public-lead { margin: 22px 0 !important; }
body .cc-mini-landing-card,
body .cc-public-showcase,
body .cc-public-reviews,
body .cc-public-faq,
body .cc-public-lead { border-radius: 28px !important; }
body .cc-mini-landing-card { padding: clamp(20px, 2.7vw, 32px) !important; border: 1px solid rgba(255,255,255,.84) !important; background: rgba(255,255,255,.82) !important; box-shadow: var(--cc-v5-shadow-sm) !important; }
body .cc-mini-landing-card h2 { font-size: clamp(25px, 3vw, 38px); letter-spacing: -.04em; line-height: 1.08; }
body .cc-mini-landing-card p { font-size: 13px; line-height: 1.75; }
body .cc-showcase-grid,
body .cc-reviews-grid { gap: 13px; }
body .cc-showcase-card,
body .cc-review-card { border-radius: 20px; box-shadow: var(--cc-v5-shadow-sm); }
body .cc-faq-card { border-radius: 17px; }
body .cc-faq-card summary { min-height: 58px; padding: 14px 18px; font-size: 13px; }

/* Booking workspace */
body .cc-public-shell .cc-public-grid { display: grid; grid-template-columns: minmax(265px, .5fr) minmax(0, 1.5fr); align-items: start; gap: 16px; margin-top: 20px; }
body .cc-public-shell .cc-public-side { position: sticky; top: 105px; display: grid; gap: 12px; }
body .cc-public-shell .cc-coach-card.sticky,
body .cc-public-shell .cc-selected-service-card { padding: 20px !important; border-radius: 24px !important; }
body .cc-public-shell .cc-coach-card.sticky .cc-coach-avatar.small { width: 58px; height: 58px; border-radius: 17px; }
body .cc-public-shell .cc-coach-card.sticky .cc-coach-card-top strong { font-size: 17px; }
body .cc-public-shell .cc-public-side-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; margin-top: 17px; }
body .cc-public-shell .cc-public-side-stats > div { min-height: 70px; padding: 11px !important; border-radius: 14px !important; }
body .cc-public-shell .cc-public-side-stats span { font-size: 8.5px; letter-spacing: .04em; text-transform: uppercase; }
body .cc-public-shell .cc-public-side-stats strong { margin-top: 4px; font-size: 17px; }
body .cc-public-shell .cc-selected-service-card > span { font-size: 9px; letter-spacing: .07em; }
body .cc-public-shell .cc-selected-service-card > strong { margin-top: 7px; font-size: 19px; line-height: 1.25; }
body .cc-public-shell .cc-selected-service-card p { font-size: 11.5px; line-height: 1.55; }
body .cc-public-shell .cc-selected-service-card > div { min-height: 38px; margin-top: 6px; padding: 8px 10px !important; border-radius: 11px !important; font-size: 10.5px; }
body .cc-public-shell .cc-public-content { display: grid; gap: 15px; min-width: 0; }
body .cc-public-shell .cc-service-section,
body .cc-public-shell .cc-slot-section,
body .cc-public-shell .cc-booking-form-section { padding: clamp(18px, 2.4vw, 28px); border: 1px solid rgba(255,255,255,.84); border-radius: 28px; background: rgba(255,255,255,.84); box-shadow: var(--cc-v5-shadow-sm); backdrop-filter: blur(12px); }

body .cc-public-shell .cc-public-section-head { margin-bottom: 18px; }
body .cc-public-shell .cc-public-section-head > span,
body .cc-public-shell .cc-public-section-head > div > span { display: inline-flex; min-height: 27px; align-items: center; padding: 0 9px; border: 1px solid color-mix(in srgb, var(--coach-primary, #0f8f82) 16%, transparent); border-radius: 999px; color: color-mix(in srgb, var(--coach-primary, #0f8f82) 78%, #173e48) !important; background: color-mix(in srgb, var(--coach-primary, #0f8f82) 7%, #fff); font-size: 9px; font-weight: 950; letter-spacing: .06em; text-transform: uppercase; }
body .cc-public-shell .cc-public-section-head h2 { max-width: 820px; margin: 8px 0 0; color: var(--cc-v5-ink); font-size: clamp(22px, 2.5vw, 32px); font-weight: 950; letter-spacing: -.04em; line-height: 1.1; text-wrap: balance; }
body .cc-public-shell .cc-public-section-head p { max-width: 720px; margin: 7px 0 0; color: #697d86; font-size: 12.5px; line-height: 1.55; }

/* Services */
body .cc-public-shell .cc-service-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
body .cc-public-shell .cc-service-option { display: grid; grid-template-columns: 46px minmax(0, 1fr); min-height: 148px; align-content: start; gap: 12px; padding: 15px; overflow: hidden; border: 1px solid var(--cc-v5-line); border-radius: 20px; background: rgba(255,255,255,.86); box-shadow: 0 8px 24px rgba(4,42,54,.04); }
body .cc-public-shell .cc-service-option-icon { width: 46px; height: 46px; border-radius: 14px; color: var(--coach-primary, #0f8f82); background: color-mix(in srgb, var(--coach-primary, #0f8f82) 9%, #fff); font-size: 15px; }
body .cc-public-shell .cc-service-option-copy { min-width: 0; }
body .cc-public-shell .cc-service-option strong { display: block; color: var(--cc-v5-ink); font-size: 15px; font-weight: 950; line-height: 1.28; }
body .cc-public-shell .cc-service-primary-meta { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 9px !important; }
body .cc-public-shell .cc-service-primary-meta b { display: inline-flex; min-height: 27px; align-items: center; gap: 5px; padding: 0 8px; border-radius: 9px; color: #526b75; background: #eff5f4; font-size: 9.5px; font-weight: 850; }
body .cc-public-shell .cc-service-primary-meta b i { color: var(--coach-primary, #0f8f82); }
body .cc-public-shell .cc-service-secondary-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 5px; margin-top: 8px !important; color: #7a8c93; font-size: 9.5px; line-height: 1.35; }
body .cc-public-shell .cc-service-secondary-meta i { margin-left: 4px; color: #91a1a7; }
body .cc-public-shell .cc-service-secondary-meta i:first-child { margin-left: 0; }
body .cc-public-shell .cc-service-option > em { grid-column: 1 / -1; display: flex; width: 100%; min-height: 34px; align-items: center; justify-content: center; gap: 6px; margin-top: auto; border: 1px solid #dfe8e8; border-radius: 11px; color: #536c76; background: #f5f8f8; font-size: 10.5px; font-style: normal; font-weight: 900; }
body .cc-public-shell .cc-service-option.active { transform: translateY(-2px); }
body .cc-public-shell .cc-service-option.active .cc-service-primary-meta b,
body .cc-public-shell .cc-service-option.active > em { border-color: color-mix(in srgb, var(--coach-hero-accent) 28%, transparent); color: var(--coach-hero-text) !important; background: color-mix(in srgb, var(--coach-hero-accent) 13%, transparent); }
body .cc-public-shell .cc-service-option.active .cc-service-secondary-meta i,
body .cc-public-shell .cc-service-option.active .cc-service-primary-meta i { color: var(--coach-hero-accent) !important; }

/* Month and slots */
body .cc-public-shell .cc-public-section-head.split { align-items: end; gap: 15px; }
body .cc-public-shell .cc-month-switch { display: grid; grid-template-columns: auto minmax(120px, auto) auto; min-height: 44px; align-items: center; gap: 5px; padding: 4px; border: 1px solid var(--cc-v5-line); border-radius: 14px; background: #f5f8f8; }
body .cc-public-shell .cc-month-switch a { display: inline-flex; min-height: 34px; align-items: center; gap: 6px; padding: 0 9px; border-radius: 10px; color: #607781 !important; font-size: 10px; font-weight: 850; text-decoration: none; }
body .cc-public-shell .cc-month-switch a:hover { color: #fff !important; background: linear-gradient(135deg, var(--coach-primary, #0f8f82), var(--coach-secondary, #2563eb)); }
body .cc-public-shell .cc-month-switch strong { color: var(--cc-v5-ink) !important; font-size: 11px; text-align: center; text-transform: capitalize; }
body .cc-public-shell .cc-slot-days { display: grid; gap: 9px; }
body .cc-public-shell .cc-public-slot-day { padding: 13px; border: 1px solid var(--cc-v5-line); border-radius: 19px; background: rgba(249,252,251,.92); }
body .cc-public-shell .cc-public-slot-day-head { min-height: 50px; align-items: center; padding: 0 3px 10px; }
body .cc-public-shell .cc-public-slot-day-head span { font-size: 9px; letter-spacing: .06em; }
body .cc-public-shell .cc-public-slot-day-head strong { margin-top: 2px; color: var(--cc-v5-ink); font-size: 14px; }
body .cc-public-shell .cc-public-slot-day-head em { min-height: 28px; padding: 0 9px; border-radius: 9px; color: var(--coach-primary, #0f8f82) !important; background: color-mix(in srgb, var(--coach-primary, #0f8f82) 7%, #fff); font-size: 9.5px; }
body .cc-public-shell .cc-public-slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(142px, 1fr)); gap: 7px; }
body .cc-public-shell .cc-public-slot { position: relative; display: flex; min-height: 90px; flex-direction: column; align-items: flex-start; justify-content: center; padding: 12px 13px; border: 1px solid #dce7e8; border-radius: 15px; background: #fff; }
body .cc-public-shell .cc-public-slot::after { position: absolute; top: 11px; right: 11px; width: 7px; height: 7px; border-radius: 50%; background: #13b981; box-shadow: 0 0 0 4px rgba(19,185,129,.1); content: ""; }
body .cc-public-shell .cc-public-slot strong { color: var(--cc-v5-ink) !important; font-size: 18px; letter-spacing: -.025em; }
body .cc-public-shell .cc-public-slot > span { display: inline-flex; align-items: center; gap: 5px; margin-top: 2px; color: #70848d; font-size: 9.5px; }
body .cc-public-shell .cc-public-slot .cc-slot-capacity { margin-top: 7px; color: #537069; font-size: 8.5px !important; line-height: 1.35; }
body .cc-public-shell .cc-public-slot.active::after { background: var(--coach-hero-accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--coach-hero-accent) 15%, transparent); }

/* Booking summary and form */
body .cc-public-shell .cc-booking-summary { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; margin: 0 0 12px; padding: 0 !important; border: 0 !important; background: transparent !important; box-shadow: none !important; }
body .cc-public-shell .cc-booking-summary > div { min-height: 88px; justify-content: center; padding: 13px !important; border: 1px solid var(--cc-v5-line) !important; border-radius: 16px !important; color: var(--cc-v5-ink) !important; background: linear-gradient(135deg, #fff, #f5faf8) !important; box-shadow: 0 7px 20px rgba(5,42,54,.04); }
body .cc-public-shell .cc-booking-summary span { color: #7a8c93 !important; font-size: 8.5px; font-weight: 900; letter-spacing: .045em; text-transform: uppercase; }
body .cc-public-shell .cc-booking-summary strong { margin-top: 5px; color: var(--cc-v5-ink) !important; font-size: 12px; line-height: 1.38; }
body .cc-public-shell .cc-public-booking-form { padding: 20px !important; overflow: visible; border: 1px solid rgba(255,255,255,.9) !important; border-radius: 22px !important; color: var(--cc-v5-ink) !important; background: rgba(255,255,255,.9) !important; box-shadow: 0 16px 44px rgba(5,42,54,.09) !important; }
body .cc-public-shell .cc-public-booking-form .cc-public-form-grid { gap: 10px; margin-bottom: 0; }
body .cc-public-shell .cc-public-booking-form .cc-public-input-group { margin-bottom: 12px; }
body .cc-public-shell .cc-public-booking-form .cc-public-input-group label { margin-bottom: 6px; color: #536a75 !important; font-size: 9.5px; font-weight: 900; letter-spacing: .055em; }
body .cc-public-shell .cc-public-booking-form .cc-public-input-group label b { color: #d34c55; }
body .cc-public-shell .cc-public-booking-form .cc-public-input-group label span { margin-left: 5px; color: #93a1a6; font-size: 8.5px; font-weight: 750; letter-spacing: 0; text-transform: none; }
body .cc-public-shell .cc-public-booking-form .cc-public-input-group > div,
body .cc-public-shell .cc-public-booking-form .cc-public-input-group > div.textarea { min-height: 52px; gap: 10px; padding: 0 13px; border: 1px solid #dce7e8 !important; border-radius: 14px !important; background: #f8fbfa !important; box-shadow: inset 0 1px 0 rgba(255,255,255,.8) !important; }
body .cc-public-shell .cc-public-booking-form .cc-public-input-group > div.textarea { min-height: 112px; padding-top: 12px; }
body .cc-public-shell .cc-public-booking-form input,
body .cc-public-shell .cc-public-booking-form textarea { color: var(--cc-v5-ink) !important; font-size: 13px; font-weight: 650; }
body .cc-public-shell .cc-public-booking-form i { color: var(--coach-primary, #0f8f82) !important; font-size: 14px; }
body .cc-public-shell .cc-public-input-group div:focus-within { border-color: color-mix(in srgb, var(--coach-secondary, #2563eb) 40%, #dce7e8) !important; background: #fff !important; box-shadow: 0 0 0 4px color-mix(in srgb, var(--coach-secondary, #2563eb) 10%, transparent) !important; }
body .cc-public-shell .cc-booking-approval-note { margin: 2px 0 10px; padding: 12px; border-radius: 14px; }
body .cc-public-shell .cc-booking-approval-note > i { width: 34px; height: 34px; flex-basis: 34px; }
body .cc-public-shell .cc-booking-approval-note strong { font-size: 11.5px; }
body .cc-public-shell .cc-booking-approval-note span { font-size: 10px; }
body .cc-booking-privacy-note { display: flex; align-items: center; gap: 8px; margin: 0 0 13px; color: #75878f; font-size: 9.5px; font-weight: 700; }
body .cc-booking-privacy-note > i { display: grid; width: 25px !important; height: 25px; flex: 0 0 25px !important; place-items: center; border-radius: 8px; color: #08765f !important; background: #e6f7f1; font-size: 10px !important; }
body .cc-public-shell button.cc-public-submit { display: flex; width: 100%; min-height: 54px; justify-content: flex-start; gap: 9px; padding: 0 8px 0 18px; border-radius: 15px !important; background: linear-gradient(135deg, var(--coach-primary, #0f8f82), var(--coach-secondary, #2563eb)) !important; box-shadow: 0 14px 30px color-mix(in srgb, var(--coach-secondary, #2563eb) 22%, transparent) !important; font-size: 13px; }
body .cc-public-shell button.cc-public-submit > b { display: grid; width: 38px; height: 38px; margin-left: auto; place-items: center; border-radius: 11px; background: rgba(255,255,255,.16); }
body .cc-public-shell button.cc-public-submit > b i,
body .cc-public-shell button.cc-public-submit > i { color: #fff !important; }
body .cc-public-shell button.cc-public-submit.is-loading > i { animation: ccBookingSpin .75s linear infinite; }
body .cc-public-shell button.cc-public-submit.is-loading > i::before { content: "\f110"; }
@keyframes ccBookingSpin { to { transform: rotate(360deg); } }

/* Success state */
body .cc-public-shell .cc-booking-success-panel { padding: clamp(20px, 3vw, 32px); border: 1px solid rgba(255,255,255,.9); border-radius: 30px; background: rgba(255,255,255,.9); box-shadow: var(--cc-v5-shadow-lg); }
body .cc-booking-success-head { display: grid; grid-template-columns: 52px minmax(0,1fr) auto; align-items: center; gap: 13px; }
body .cc-booking-success-head > span { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 16px; color: #fff; background: linear-gradient(135deg, var(--coach-primary, #0f8f82), var(--coach-secondary, #2563eb)); box-shadow: 0 12px 26px color-mix(in srgb, var(--coach-secondary, #2563eb) 23%, transparent); font-size: 18px; }
body .cc-booking-success-head small { display: block; color: var(--coach-primary, #0f8f82); font-size: 9.5px; font-weight: 950; letter-spacing: .07em; text-transform: uppercase; }
body .cc-public-shell .cc-booking-success-head h2 { margin: 3px 0 0; font-size: clamp(23px, 3vw, 34px); }
body .cc-booking-success-head > b { display: inline-flex; min-height: 34px; align-items: center; gap: 7px; padding: 0 11px; border-radius: 999px; color: #7a580d; background: #fff5d9; font-size: 10.5px; }
body .cc-booking-success-head > b i { width: 7px; height: 7px; border-radius: 50%; background: #eaa322; box-shadow: 0 0 0 5px rgba(234,163,34,.12); }
body .cc-public-shell .cc-booking-success-panel > p { margin: 17px 0 0; padding: 13px 15px; border: 1px solid #efe0b5; border-radius: 14px; color: #765e25; background: #fffbeb; font-size: 12px; line-height: 1.6; }
body .cc-booking-request-timeline { display: grid; grid-template-columns: minmax(0,1fr) 20px minmax(0,1fr) 20px minmax(0,1fr); align-items: center; gap: 8px; margin-top: 18px; padding: 10px; border: 1px solid var(--cc-v5-line); border-radius: 18px; background: #f7faf9; }
body .cc-booking-request-timeline > div { display: grid; grid-template-columns: 34px minmax(0,1fr); align-items: center; gap: 9px; }
body .cc-booking-request-timeline > div > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; color: #71858d; background: #e8eeee; font-size: 11px; font-weight: 950; }
body .cc-booking-request-timeline p { margin: 0; }
body .cc-booking-request-timeline strong,
body .cc-booking-request-timeline small { display: block; }
body .cc-booking-request-timeline strong { color: #526b75; font-size: 10.5px; }
body .cc-booking-request-timeline small { margin-top: 2px; color: #8a999f; font-size: 8.5px; }
body .cc-booking-request-timeline > i { color: #a1afb4; text-align: center; }
body .cc-booking-request-timeline .is-complete > span { color: #08745b; background: #dff6ed; }
body .cc-booking-request-timeline .is-current > span { color: #fff; background: linear-gradient(135deg, #d99b20, #efb63f); }
body .cc-booking-request-timeline .is-current strong { color: #6f510e; }
body .cc-public-shell .cc-booking-success-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px; }
body .cc-public-shell .cc-booking-success-grid > div { padding: 12px 13px; border-radius: 14px; background: #f7faf9; }
body .cc-public-shell .cc-booking-success-grid span { font-size: 8.5px; text-transform: uppercase; letter-spacing: .045em; }
body .cc-public-shell .cc-booking-success-grid strong { font-size: 11.5px; line-height: 1.4; }
body .cc-public-shell .cc-booking-success-actions a,
body .cc-public-shell .cc-booking-success-actions button { min-height: 44px; border-radius: 13px; font-size: 11.5px; }

/* Directory / coach picker */
body .cc-hub-shell { width: min(1200px, calc(100% - 40px)); padding-top: 12px; }
body .cc-hub-header { position: sticky; z-index: 50; top: 12px; min-height: 70px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.8); border-radius: 21px; background: rgba(255,255,255,.8); box-shadow: var(--cc-v5-shadow-sm); backdrop-filter: blur(18px); }
body .cc-hub-brand strong { font-size: 17px; }
body .cc-hub-hero { min-height: 460px; margin-top: 18px; padding: clamp(25px, 4vw, 48px); gap: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,.86); border-radius: 34px; background: radial-gradient(circle at 8% 6%, rgba(16,168,141,.15), transparent 31%), radial-gradient(circle at 90% 10%, rgba(36,95,224,.13), transparent 32%), rgba(255,255,255,.86); box-shadow: var(--cc-v5-shadow-lg); }
body .cc-hub-hero h1 { font-size: clamp(40px, 5.2vw, 67px); line-height: .99; letter-spacing: -.055em; }
body .cc-hub-hero p { max-width: 700px; font-size: 14px; line-height: 1.7; }
body .cc-hub-coach-grid { gap: 13px; }
body .cc-hub-coach-card { border: 1px solid rgba(255,255,255,.84); border-radius: 24px; background: rgba(255,255,255,.84); box-shadow: var(--cc-v5-shadow-sm); }
body .cc-hub-info-card { border-radius: 22px; }

@media (hover: hover) and (pointer: fine) {
    body .cc-public-header-cta:hover,
    body .cc-public-shell .cc-booking-hero-actions a:hover,
    body .cc-public-shell button.cc-public-submit:hover { transform: translateY(-2px); filter: saturate(1.08) brightness(1.02); }
    body .cc-booking-progress-nav > a:hover { background: rgba(255,255,255,.95); }
    body .cc-public-shell .cc-service-option:hover { transform: translateY(-4px); }
    body .cc-public-shell .cc-public-slot:hover { transform: translateY(-3px); }
}

@media (max-width: 1180px) {
    body .cc-public-shell .cc-booking-hero { grid-template-columns: minmax(0, 1fr) 350px; }
    body .cc-booking-hero-proof { grid-template-columns: repeat(2, minmax(0,1fr)); }
    body .cc-booking-hero-proof > div:last-child { grid-column: 1 / -1; }
    body .cc-public-shell .cc-public-grid { grid-template-columns: 250px minmax(0,1fr); }
    body .cc-public-shell .cc-service-list { grid-template-columns: 1fr; }
    body .cc-public-shell .cc-booking-summary { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 900px) {
    body .cc-public-main,
    body .cc-public-header { width: min(100% - 24px, 1320px); }
    body .cc-public-shell .cc-booking-hero { grid-template-columns: 1fr; min-height: 0; padding: 26px; border-radius: 30px; }
    body .cc-public-shell .cc-booking-hero-content { padding: 4px; }
    body .cc-public-shell .cc-coach-card.hero { min-height: 360px; }
    body .cc-booking-hero-proof { grid-template-columns: repeat(3, minmax(0,1fr)); }
    body .cc-booking-hero-proof > div:last-child { grid-column: auto; }
    body .cc-public-shell .cc-public-grid { grid-template-columns: 1fr; }
    body .cc-public-shell .cc-public-side { position: static; grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
    body .cc-public-shell .cc-coach-card.sticky { position: static; }
    body .cc-public-shell .cc-booking-summary { grid-template-columns: repeat(2, minmax(0,1fr)); }
    body .cc-booking-success-head { grid-template-columns: 48px minmax(0,1fr); }
    body .cc-booking-success-head > b { grid-column: 1 / -1; width: max-content; }
}

@media (max-width: 700px) {
    body { padding-bottom: calc(82px + env(safe-area-inset-bottom)); font-size: 14px; }
    body .cc-public-shell::before { background-size: 34px 34px; }
    body .cc-public-main { width: calc(100% - 16px); margin-top: 10px; margin-bottom: 35px; }
    body .cc-public-header { top: 7px; width: calc(100% - 16px); min-height: 62px; margin-top: 7px; padding: 7px 8px 7px 10px; border-radius: 18px; }
    body .cc-public-brand { gap: 8px; }
    body .cc-public-brand-mark { width: 39px; height: 39px; border-radius: 12px; font-size: 12px; }
    body .cc-public-brand-logo { max-width: 112px; max-height: 39px; }
    body .cc-public-brand strong { max-width: 135px; font-size: 14px; }
    body .cc-public-brand small { max-width: 145px; overflow: hidden; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
    body .cc-public-trust-pill { display: none; }
    body .cc-public-header-cta { min-height: 39px; padding: 0 5px 0 10px; border-radius: 12px; font-size: 10px; }
    body .cc-public-header-cta > i { width: 28px; height: 28px; }
    body .cc-public-shell .cc-booking-hero { gap: 12px; padding: 16px; border-radius: 24px; }
    body .cc-public-shell .cc-booking-hero::before { top: -100px; right: -110px; width: 300px; height: 300px; }
    body .cc-booking-eyebrow { min-height: 32px; padding-left: 9px; font-size: 9px; }
    body .cc-booking-eyebrow > b { min-height: 23px; font-size: 8px; }
    body .cc-public-shell .cc-booking-hero-content h1 { margin-top: 14px; font-size: clamp(32px, 10vw, 43px); line-height: 1; letter-spacing: -.05em; }
    body .cc-public-shell .cc-booking-hero-content > p { margin-top: 14px; font-size: 13px; line-height: 1.62; }
    body .cc-public-shell .cc-booking-hero-actions { margin-top: 18px; }
    body .cc-public-shell .cc-booking-hero-actions a { width: 100%; min-height: 48px; justify-content: center; }
    body .cc-booking-hero-proof { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 5px; margin-top: 17px; }
    body .cc-booking-hero-proof > div { display: block; padding: 8px 6px; text-align: center; }
    body .cc-booking-hero-proof > div:last-child { grid-column: auto; }
    body .cc-booking-hero-proof > div > span { width: 30px; height: 30px; margin: 0 auto 6px; }
    body .cc-booking-hero-proof strong { font-size: 11px; white-space: normal; }
    body .cc-booking-hero-proof small { font-size: 8px; white-space: normal; }
    body .cc-public-shell .cc-coach-card.hero { min-height: 0; padding: 18px !important; border-radius: 21px !important; }
    body .cc-public-shell .cc-coach-card.hero .cc-coach-avatar { width: 70px; height: 70px; border-radius: 20px; }
    body .cc-public-shell .cc-coach-card.hero strong { font-size: 22px; }
    body .cc-public-shell .cc-coach-card.hero > p { margin-top: 16px; padding-top: 15px; font-size: 11.5px; }
    body .cc-public-shell .cc-coach-system-note { margin-top: 14px; }

    body .cc-public-quicknav { top: 76px; max-width: calc(100vw - 16px); margin-top: 9px; border-radius: 14px; }
    body .cc-public-quicknav a { min-height: 35px; padding: 0 9px; font-size: 9.5px; }
    body .cc-booking-progress-nav { grid-template-columns: repeat(3, minmax(116px,1fr)); max-width: 100%; gap: 5px; margin: 9px 0 14px; padding: 6px; overflow-x: auto; border-radius: 17px; scroll-snap-type: x proximity; scrollbar-width: none; }
    body .cc-booking-progress-nav::-webkit-scrollbar { display: none; }
    body .cc-booking-progress-nav > i { display: none; }
    body .cc-booking-progress-nav > a { grid-template-columns: 30px minmax(0,1fr); min-height: 50px; gap: 7px; padding: 6px 8px; scroll-snap-align: start; }
    body .cc-booking-progress-nav > a > span { width: 30px; height: 30px; border-radius: 10px; font-size: 10px; }
    body .cc-booking-progress-nav small { font-size: 7.5px; }
    body .cc-booking-progress-nav strong { font-size: 10px; }

    body .cc-mini-landing-section { grid-template-columns: 1fr !important; gap: 10px !important; }
    body .cc-mini-landing-card { padding: 19px !important; border-radius: 22px !important; }
    body .cc-mini-landing-card h2 { font-size: 27px; }
    body .cc-public-shell .cc-public-side { grid-template-columns: 1fr; }
    body .cc-public-shell .cc-service-section,
    body .cc-public-shell .cc-slot-section,
    body .cc-public-shell .cc-booking-form-section { padding: 15px; border-radius: 22px; }
    body .cc-public-shell .cc-public-section-head { margin-bottom: 14px; }
    body .cc-public-shell .cc-public-section-head h2 { font-size: 23px; }
    body .cc-public-shell .cc-public-section-head p { font-size: 11.5px; }
    body .cc-public-shell .cc-service-list { grid-template-columns: 1fr; }
    body .cc-public-shell .cc-service-option { min-height: 0; grid-template-columns: 42px minmax(0,1fr); padding: 12px; border-radius: 17px; }
    body .cc-public-shell .cc-service-option-icon { width: 42px; height: 42px; border-radius: 13px; }
    body .cc-public-shell .cc-service-option strong { font-size: 13px; }
    body .cc-public-shell .cc-service-secondary-meta { font-size: 8.5px; }
    body .cc-public-shell .cc-public-section-head.split { align-items: stretch; flex-direction: column; }
    body .cc-public-shell .cc-month-switch { width: 100%; grid-template-columns: auto 1fr auto; }
    body .cc-public-shell .cc-month-switch a { padding: 0 8px; }
    body .cc-public-shell .cc-month-switch a { font-size: 0; }
    body .cc-public-shell .cc-month-switch a i { font-size: 14px; }
    body .cc-public-shell .cc-month-switch strong { font-size: 10.5px; }
    body .cc-public-shell .cc-public-slot-day { padding: 10px; border-radius: 16px; }
    body .cc-public-shell .cc-public-slot-day-head { align-items: flex-start; flex-direction: column; gap: 6px; }
    body .cc-public-shell .cc-public-slot-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 6px; }
    body .cc-public-shell .cc-public-slot { min-height: 88px; padding: 10px; border-radius: 14px; }
    body .cc-public-shell .cc-public-slot strong { font-size: 16px; }
    body .cc-public-shell .cc-public-slot .cc-slot-capacity { font-size: 7.8px !important; }
    body .cc-public-shell .cc-booking-summary { grid-template-columns: 1fr 1fr; gap: 6px; }
    body .cc-public-shell .cc-booking-summary > div { min-height: 76px; padding: 10px !important; border-radius: 14px !important; }
    body .cc-public-shell .cc-booking-summary > div:first-child { grid-column: 1 / -1; }
    body .cc-public-shell .cc-booking-summary strong { font-size: 10.5px; }
    body .cc-public-shell .cc-public-booking-form { padding: 14px !important; border-radius: 18px !important; }
    body .cc-public-shell .cc-public-booking-form .cc-public-form-grid { grid-template-columns: 1fr; gap: 0; }
    body .cc-public-shell .cc-public-booking-form .cc-public-input-group > div { min-height: 50px; }
    body .cc-public-shell .cc-public-booking-form input,
    body .cc-public-shell .cc-public-booking-form textarea { font-size: 16px; }
    body .cc-public-shell button.cc-public-submit { min-height: 54px; font-size: 12px; }
    body .cc-booking-privacy-note { align-items: flex-start; font-size: 8.8px; }
    body .cc-booking-success-head { grid-template-columns: 44px minmax(0,1fr); }
    body .cc-booking-success-head > span { width: 44px; height: 44px; border-radius: 14px; }
    body .cc-booking-request-timeline { grid-template-columns: 1fr; }
    body .cc-booking-request-timeline > i { display: none; }
    body .cc-public-shell .cc-booking-success-grid { grid-template-columns: 1fr; }
    body .cc-public-shell .cc-booking-success-actions { align-items: stretch; flex-direction: column; }
    body .cc-public-shell .cc-booking-success-actions a,
    body .cc-public-shell .cc-booking-success-actions button { width: 100%; justify-content: center; }
    body .cc-mobile-booking-cta { right: 8px; bottom: max(8px, env(safe-area-inset-bottom)); left: 8px; min-height: 58px; border-radius: 17px; font-size: 12px; transition: opacity .2s ease, transform .24s ease, visibility .2s ease; }
    body .cc-mobile-booking-cta.is-context-hidden { visibility: hidden; opacity: 0; transform: translateY(calc(100% + 24px)); pointer-events: none; }

    body .cc-hub-shell { width: calc(100% - 16px); padding-top: 7px; }
    body .cc-hub-header { top: 7px; min-height: 62px; border-radius: 18px; }
    body .cc-hub-hero { min-height: 0; margin-top: 10px; padding: 22px 18px; border-radius: 25px; }
    body .cc-hub-hero h1 { font-size: 37px; }
}

@media (max-width: 380px) {
    body .cc-public-header-cta > span { display: none; }
    body .cc-public-header-cta { padding-left: 5px; }
    body .cc-booking-eyebrow > b { display: none; }
    body .cc-booking-hero-proof { grid-template-columns: 1fr 1fr; }
    body .cc-booking-hero-proof > div:last-child { grid-column: 1 / -1; }
    body .cc-public-shell .cc-public-slot-grid { grid-template-columns: 1fr; }
    body .cc-public-shell .cc-booking-summary { grid-template-columns: 1fr; }
    body .cc-public-shell .cc-booking-summary > div:first-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
    body .cc-public-header,
    body .cc-public-header-cta,
    body .cc-public-shell .cc-service-option,
    body .cc-public-shell .cc-public-slot { transition: none !important; }
    body .cc-public-shell button.cc-public-submit.is-loading > i { animation: none; }
}

/* Booking V5.1 – day-first slot picker */
body .cc-public-shell .cc-slot-date-picker { min-width: 0; }
body .cc-public-shell .cc-slot-date-list { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(104px, 1fr); gap: 7px; padding: 4px 2px 8px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x proximity; scrollbar-width: none; }
body .cc-public-shell .cc-slot-date-list::-webkit-scrollbar { display: none; }
body .cc-public-shell .cc-slot-date-button { position: relative; display: grid; min-height: 104px; place-items: center; align-content: center; gap: 1px; padding: 10px 8px; overflow: hidden; border: 1px solid #dce7e8; border-radius: 17px; color: #667b84; background: rgba(255,255,255,.88); box-shadow: 0 6px 18px rgba(5,42,54,.04); font: inherit; text-align: center; scroll-snap-align: center; cursor: pointer; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease; }
body .cc-public-shell .cc-slot-date-button::after { position: absolute; top: 9px; right: 9px; width: 6px; height: 6px; border-radius: 50%; background: #16b981; box-shadow: 0 0 0 4px rgba(22,185,129,.1); content: ""; }
body .cc-public-shell .cc-slot-date-button > span { color: #71858e; font-size: 8.5px; font-weight: 950; letter-spacing: .055em; text-transform: uppercase; }
body .cc-public-shell .cc-slot-date-button > strong { color: var(--cc-v5-ink); font-size: 24px; font-weight: 950; letter-spacing: -.04em; line-height: 1; }
body .cc-public-shell .cc-slot-date-button > small { color: #8a9aa0; font-size: 8.5px; font-weight: 850; }
body .cc-public-shell .cc-slot-date-button > em { margin-top: 5px; padding: 3px 7px; border-radius: 999px; color: #527069; background: #edf6f3; font-size: 8px; font-style: normal; font-weight: 850; }
body .cc-public-shell .cc-slot-date-button.is-active { border-color: color-mix(in srgb, var(--coach-hero-accent) 40%, transparent); color: var(--coach-hero-text); background: linear-gradient(135deg, var(--coach-hero-bg-1), var(--coach-hero-bg-2)); box-shadow: 0 13px 28px color-mix(in srgb, var(--coach-hero-bg-1) 20%, transparent); transform: translateY(-2px); }
body .cc-public-shell .cc-slot-date-button.is-active > span,
body .cc-public-shell .cc-slot-date-button.is-active > strong,
body .cc-public-shell .cc-slot-date-button.is-active > small { color: var(--coach-hero-text); }
body .cc-public-shell .cc-slot-date-button.is-active > em { color: var(--coach-hero-text); background: color-mix(in srgb, var(--coach-hero-accent) 15%, transparent); }
body .cc-public-shell .cc-slot-date-button.is-active::after { background: var(--coach-hero-accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--coach-hero-accent) 15%, transparent); }
body .cc-public-shell .cc-slot-date-panels { margin-top: 8px; }
body .cc-public-shell .cc-slot-date-picker.is-day-picker-ready .cc-slot-date-panel[hidden] { display: none !important; }
body .cc-public-shell .cc-slot-date-panel.is-active { animation: ccSlotPanelIn .24s ease both; }
@keyframes ccSlotPanelIn { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }

@media (hover: hover) and (pointer: fine) {
    body .cc-public-shell .cc-slot-date-button:hover { border-color: color-mix(in srgb, var(--coach-primary, #0f8f82) 30%, #dce7e8); box-shadow: 0 10px 24px rgba(5,42,54,.08); transform: translateY(-2px); }
}

@media (max-width: 700px) {
    body .cc-public-shell .cc-slot-date-list { grid-auto-columns: 88px; margin-right: -15px; margin-left: -15px; padding: 3px 15px 8px; }
    body .cc-public-shell .cc-slot-date-button { min-height: 94px; padding: 8px 6px; border-radius: 15px; }
    body .cc-public-shell .cc-slot-date-button > strong { font-size: 21px; }
    body .cc-public-shell .cc-slot-date-button > span,
    body .cc-public-shell .cc-slot-date-button > small { font-size: 7.5px; }
    body .cc-public-shell .cc-slot-date-button > em { padding: 3px 6px; font-size: 7px; }
    body .cc-public-shell .cc-slot-date-panels { margin-top: 5px; }
}

@media (prefers-reduced-motion: reduce) {
    body .cc-public-shell .cc-slot-date-panel.is-active { animation: none; }
}

/* Booking V5.3 – static landing-page header */
body .cc-public-shell > .cc-public-header {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: min(1320px, calc(100% - 40px));
    margin: 12px auto 0;
    transform: none;
}

body .cc-public-main > *,
body .cc-profile-block-host > * { scroll-margin-top: 72px; }
body .cc-public-quicknav { top: 10px; }
body .cc-public-header-nav { display: flex; min-width: 0; flex: 1; align-items: center; justify-content: center; gap: 3px; }
body .cc-public-header-nav > a { position: relative; display: inline-flex; min-height: 40px; align-items: center; gap: 6px; padding: 0 10px; border-radius: 11px; color: #5b717b; font-size: 10.5px; font-weight: 850; text-decoration: none; white-space: nowrap; transition: color .18s ease, background .18s ease; }
body .cc-public-header-nav > a > i { color: color-mix(in srgb, var(--coach-primary, #0f8f82) 78%, #35515c); font-size: 11px; }
body .cc-public-header-nav > a:hover,
body .cc-public-header-nav > a.is-active { color: var(--cc-v5-ink); background: color-mix(in srgb, var(--coach-primary, #0f8f82) 7%, #fff); }
body .cc-public-header-nav > a.is-active::after { position: absolute; right: 10px; bottom: 3px; left: 10px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--coach-primary, #0f8f82), var(--coach-secondary, #2563eb)); content: ""; }

@media (max-width: 1120px) {
    body .cc-public-trust-pill { display: none; }
    body .cc-public-header-nav > a { padding: 0 8px; }
}

@media (max-width: 860px) {
    body .cc-public-header-nav { display: none; }
    body .cc-public-header-actions { margin-left: auto; }
}

@media (max-width: 700px) {
    body .cc-public-shell > .cc-public-header { top: auto; width: calc(100% - 16px); margin-top: 7px; }
    body .cc-public-quicknav { top: 7px; }
    body .cc-public-main > *,
    body .cc-profile-block-host > * { scroll-margin-top: 62px; }
}

@media (prefers-reduced-motion: reduce) {
    body .cc-public-header-nav > a { transition: none; }
}

/* Booking V5.4 – compact mobile brand header + staged page entrance */
body .cc-public-profile-back {
    display: inline-flex;
    min-height: 42px;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    border: 1px solid color-mix(in srgb, var(--coach-primary, #0f8f82) 20%, #dce7e8);
    border-radius: 13px;
    color: color-mix(in srgb, var(--coach-primary, #0f8f82) 78%, #173b47);
    background: color-mix(in srgb, var(--coach-primary, #0f8f82) 7%, #fff);
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

body .cc-public-profile-back > i {
    font-size: 10px;
}

body .cc-back-label-short {
    display: none;
}

body .cc-public-quicknav .cc-quicknav-back {
    color: #fff;
    background: linear-gradient(135deg, var(--coach-primary, #0f8f82), var(--coach-secondary, #2563eb));
}

body .cc-public-quicknav .cc-quicknav-back > i {
    color: #fff;
}

@media (hover: hover) and (pointer: fine) {
    body .cc-public-profile-back:hover {
        border-color: color-mix(in srgb, var(--coach-primary, #0f8f82) 36%, #dce7e8);
        background: color-mix(in srgb, var(--coach-primary, #0f8f82) 11%, #fff);
        transform: translateY(-1px);
    }
}

body .cc-public-shell > .cc-public-header.cc-reveal {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(-16px) scale(.99);
}

body .cc-public-shell > .cc-public-header.cc-reveal.is-visible {
    opacity: 1;
    filter: none;
    transform: none;
}

body .cc-public-shell .cc-reveal {
    opacity: 0;
    filter: blur(7px);
    transform: translate3d(0, 28px, 0) scale(.985);
    transition:
        opacity .68s cubic-bezier(.2, .72, .2, 1) var(--reveal-delay, 0ms),
        transform .68s cubic-bezier(.2, .72, .2, 1) var(--reveal-delay, 0ms),
        filter .68s ease var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

body .cc-public-shell .cc-reveal.is-visible {
    opacity: 1;
    filter: none;
    transform: none;
    will-change: auto;
}

body .cc-public-shell [data-profile-block].cc-reveal {
    animation: none !important;
}

body .cc-public-shell .cc-showcase-card.cc-reveal,
body .cc-public-shell .cc-review-card.cc-reveal,
body .cc-public-shell .cc-service-option.cc-reveal {
    transition:
        opacity .68s cubic-bezier(.2, .72, .2, 1) var(--reveal-delay, 0ms),
        transform .68s cubic-bezier(.2, .72, .2, 1) var(--reveal-delay, 0ms),
        filter .68s ease var(--reveal-delay, 0ms),
        border-color .22s ease,
        box-shadow .22s ease !important;
}

@media (max-width: 860px) {
    body .cc-public-shell > .cc-public-header {
        display: flex;
        min-height: 64px;
        align-items: center;
        flex-direction: row;
        gap: 10px;
        padding: 8px 10px;
    }

    body .cc-public-header-actions {
        display: none;
    }

    body .cc-public-brand {
        width: 100%;
        min-width: 0;
        flex: 1 1 auto;
        align-items: center;
    }

    body .cc-public-brand > div {
        min-width: 0;
    }

    body .cc-public-brand strong {
        max-width: calc(100vw - 104px);
        font-size: 16px;
    }

    body .cc-public-brand small {
        display: none;
    }

    body .cc-public-profile-back {
        min-height: 40px;
        padding: 0 10px;
    }
}

@media (max-width: 700px) {
    body .cc-public-shell > .cc-public-header {
        width: calc(100% - 16px);
        min-height: 60px;
        margin-top: 7px;
        padding: 7px 9px;
        border-radius: 18px;
    }

    body .cc-public-brand-logo {
        width: 44px;
        height: 44px;
        max-width: 44px;
        max-height: 44px;
        flex: 0 0 44px;
        object-fit: contain;
        padding: 4px;
    }

    body .cc-public-brand-mark {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    body .cc-public-brand strong {
        max-width: calc(100vw - 92px);
        font-size: 16px;
    }

    body .cc-public-header.is-booking-view .cc-public-brand strong {
        max-width: calc(100vw - 174px);
    }

    body .cc-public-profile-back {
        min-height: 39px;
        gap: 6px;
        padding: 0 9px;
        border-radius: 12px;
        font-size: 10px;
    }

    body .cc-back-label-full {
        display: none;
    }

    body .cc-back-label-short {
        display: inline;
    }
}

@media (prefers-reduced-motion: reduce) {
    body .cc-public-shell .cc-reveal,
    body .cc-public-shell > .cc-public-header.cc-reveal,
    body .cc-public-shell .cc-showcase-card.cc-reveal,
    body .cc-public-shell .cc-review-card.cc-reveal,
    body .cc-public-shell .cc-service-option.cc-reveal {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none !important;
        animation: none !important;
    }
}
