/* ==========================================================================
   Noona Booking — Frontend Styles
   Minimal, easily overridable with theme CSS.
   ========================================================================== */

/* ---------- Font ---------- */

@font-face {
    font-family: 'Haboro';
    src: url('../fonts/haboro-regular.woff2') format('woff2'),
         url('../fonts/haboro-regular.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

/* ---------- Company Info ---------- */

.noona-company {
    margin-bottom: 2rem;
}

.noona-company__image img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}

.noona-company__covers {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    margin-bottom: 1.25rem;
}

.noona-company__cover-img {
    max-height: 240px;
    width: auto;
    border-radius: 6px;
    object-fit: cover;
}

.noona-company__name {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

.noona-company__description {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.noona-company__phone,
.noona-company__location {
    margin-bottom: 0.5rem;
}

.noona-company__phone a {
    text-decoration: none;
}

/* Hours table */

.noona-hours-table {
    border-collapse: collapse;
    margin-top: 0.5rem;
}

.noona-hours-table td {
    padding: 0.25rem 1rem 0.25rem 0;
    border: none;
}

.noona-hours-table__day {
    font-weight: 600;
    white-space: nowrap;
}

/* ---------- Services — Shared ---------- */

.noona-services {
    margin-bottom: 2rem;
}

/* Row layout: title left, meta+button right */

.noona-service__row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.noona-service__info {
    flex: 1;
    min-width: 0;
}

.noona-service__title {
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

.noona-service__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 1px;
}

.noona-service__duration,
.noona-service-card__duration {
    color: #000;
    font-size: 0.85em;
    display: inline-flex;
    align-items: center;
    gap: 0.25em;
}

.noona-service__duration svg,
.noona-service-card__duration svg {
    flex-shrink: 0;
    color: #cb203b;
}

.noona-service__price {
    font-weight: 700;
    font-size: 0.92em;
}

/* Legacy header (list & grouped layout) */

.noona-service__header {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.noona-service__dots {
    flex: 1;
    border-bottom: 1px dotted #ccc;
    min-width: 20px;
    margin-bottom: 0.3em;
}

.noona-service__line {
    flex: 1;
    height: 1px;
    background-color: #ccc;
    min-width: 20px;
}

.noona-service__meta {
    display: flex;
    gap: 0.75rem;
    white-space: nowrap;
    color: #555;
    font-size: 0.9em;
}

.noona-service__description {
    margin-top: 0.25rem;
    margin-bottom: 0;
    font-size: 0.84em;
    color: #888;
    line-height: 1.5;
}

/* Service title links to detail page */

.noona-service__title--link {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}

.noona-service__title--link:hover,
.noona-service__title--link:focus {
    color: #4a90d9;
}

/* Indent description to align with title when checkbox is present */
.noona-service--selectable .noona-service__description {
    padding-left: calc(18px + 10px);
}

.noona-service__book-link {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 1rem;
    font-size: 0.8em;
    font-weight: 600;
    color: #333;
    background-color: transparent;
    border: 1.5px solid #333;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}

.noona-service__book-link:hover,
.noona-service__book-link:focus {
    background-color: #333;
    color: #fff;
}

/* ---------- Services — List ---------- */

.noona-services--list .noona-services__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.noona-services--list .noona-service {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.noona-services--list .noona-service:last-child {
    border-bottom: none;
}

.noona-services--list .noona-service__title {
    font-size: 1em;
}

/* ---------- Multi-Select ---------- */

.noona-service--selectable {
    cursor: pointer;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
    border-radius: 8px;
}

.noona-service__checkbox-wrap {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
}

.noona-service__checkbox {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-color: #fff !important;
    border: 1.5px solid #d1d5db !important;
    border-radius: 4px !important;
    cursor: pointer;
    height: 18px !important;
    width: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    min-height: 18px !important;
    max-height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    outline: none !important;
    position: relative;
    transition: all 0.15s ease-in-out;
    box-shadow: none !important;
    vertical-align: middle !important;
    flex-shrink: 0;
    display: block !important;
    text-align: initial !important;
    align-items: initial !important;
    justify-content: initial !important;
}

/* Kill theme's :before/:after checkmark */
.noona-service__checkbox:before,
.noona-service__checkbox:after,
.noona-service__checkbox:checked:before,
.noona-service__checkbox:checked:after {
    content: none !important;
    display: none !important;
}

.noona-service__checkbox.noona-service__checkbox:checked {
    background-color: #4a90d9 !important;
    border-color: #4a90d9 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") !important;
    background-size: 12px !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Override theme's label:hover input[type=checkbox] */
label:hover .noona-service__checkbox,
.noona-service--selectable:hover .noona-service__checkbox {
    border-color: #9ca3af !important;
}

label:hover .noona-service__checkbox.noona-service__checkbox:checked,
.noona-service--selectable:hover .noona-service__checkbox.noona-service__checkbox:checked {
    border-color: #4a90d9 !important;
}

.noona-service__checkbox:focus-visible {
    outline: 2px solid #4a90d9;
    outline-offset: 2px;
}

/* Hide the separate checkmark span — checkbox is self-styled */
.noona-service__checkmark {
    display: none;
}

.noona-service--selected {
    background-color: #fafafa;
    box-shadow: inset 0 0 0 1px rgba(74, 144, 217, 0.12);
}

/* Sticky bar at bottom */

.noona-multiselect-bar {
    position: sticky;
    bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 0.85rem 1.25rem;
    background: #333;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 100;
    animation: noona-slide-up 0.25s ease;
}

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

.noona-multiselect-bar__count {
    font-size: 0.9em;
    opacity: 0.9;
}

.noona-multiselect-bar__button {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #fff;
    color: #333;
    font-weight: 700;
    font-size: 0.9em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

.noona-multiselect-bar__button:hover,
.noona-multiselect-bar__button:focus {
    background: #e8e8e8;
    color: #333;
}

/* ---------- Services — Grid ---------- */

.noona-services--grid {
    display: grid;
    grid-template-columns: repeat(var(--noona-columns, 3), 1fr);
    gap: 1.25rem;
}

.noona-service-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.noona-service-card__image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.noona-service-card__body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.noona-service-card__title {
    margin: 0 0 0.5rem;
    font-size: 1.05em;
}

.noona-service-card__description {
    font-size: 0.88em;
    color: #666;
    line-height: 1.5;
    margin: 0 0 0.75rem;
    flex: 1;
}

.noona-service-card__meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    color: #555;
    margin-top: auto;
}

.noona-service-card__price {
    font-weight: 600;
}

.noona-service-card__book-link {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.4rem 1rem;
    font-size: 0.85em;
    font-weight: 600;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s ease;
}

.noona-service-card__book-link:hover,
.noona-service-card__book-link:focus {
    background-color: #555;
    color: #fff;
}

/* ---------- Services — Grouped ---------- */

.noona-services--grouped .noona-service__header {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
}

.noona-services--grouped .noona-service__title {
    font-family: 'Haboro', sans-serif;
    font-size: 22px;
    font-weight: 100;
    line-height: 1.2em;
    letter-spacing: 0;
    color: #000;
}

.noona-services--grouped .noona-service__price {
    font-family: 'Haboro', sans-serif;
    font-size: 22px;
    font-weight: 100;
    line-height: 1.2em;
    letter-spacing: 0;
    color: #000;
    white-space: nowrap;
}

.noona-services--grouped .noona-service__description {
    font-family: 'Haboro', sans-serif;
    font-size: 16px;
    font-weight: 100;
    line-height: 2em;
    letter-spacing: 0;
    color: #000;
    margin-top: 2px;
    margin-bottom: 0;
    padding-left: 0;
}

.noona-services--grouped .noona-service--selectable .noona-service__description {
    padding-left: calc(18px + 10px);
}

.noona-service-group {
    margin-bottom: 2.5rem;
}

.noona-service-group__title {
    font-family: 'Haboro', sans-serif;
    font-size: 28px;
    font-weight: 100;
    line-height: 1.2em;
    letter-spacing: 0;
    color: #000;
    margin-bottom: 0.5rem;
    padding-bottom: 0;
    border-bottom: none;
}

.noona-service-group__description {
    color: #888;
    font-size: 16px;
    font-weight: 100;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

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

.noona-service-group__list .noona-service {
    padding: 0.75rem;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    margin-bottom: 10px;
    border-bottom: none;
    border-radius: 8px;
    transition: background-color 0.15s ease;
}

.noona-service-group__list .noona-service:hover {
    background-color: #fafafa;
}

/* ---------- Book Button ---------- */

.noona-book-button {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1em;
    transition: background-color 0.2s ease;
}

.noona-book-button:hover,
.noona-book-button:focus {
    background-color: #555;
    color: #fff;
}

/* ---------- Error ---------- */

.noona-error {
    color: #d63638;
    font-style: italic;
}

/* ---------- Employees — Grid ---------- */

.noona-employees--grid {
    display: grid;
    grid-template-columns: repeat(var(--noona-emp-columns, 3), 1fr);
    gap: 1.5rem;
}

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

.noona-employee__image {
    margin-bottom: 1rem;
}

.noona-employee__image img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
}

.noona-employee__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.noona-employee__name {
    font-family: 'Haboro', sans-serif;
    font-size: 22px;
    font-weight: 100;
    line-height: 1.3;
    margin: 0;
    color: #000;
}

.noona-employee__title {
    font-family: 'Haboro', sans-serif;
    font-size: 16px;
    font-weight: 100;
    color: #888;
    margin: 0;
    line-height: 1.4;
}

.noona-employee__badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.75em;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.noona-employee__badge--silver {
    background-color: #f0f0f0;
    color: #666;
}

.noona-employee__badge--gold {
    background-color: #fef3c7;
    color: #92400e;
}

.noona-employee__badge--grey {
    background-color: #f5f5f5;
    color: #888;
}

.noona-employee__book-link {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.35rem 1.25rem;
    font-size: 0.85em;
    font-weight: 600;
    color: #333;
    background-color: transparent;
    border: 1.5px solid #333;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.noona-employee__book-link:hover,
.noona-employee__book-link:focus {
    background-color: #333;
    color: #fff;
}

/* ---------- Employees — List ---------- */

.noona-employees--list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.noona-employees--list .noona-employee {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.noona-employees--list .noona-employee:last-child {
    border-bottom: none;
}

.noona-employees--list .noona-employee__image {
    margin-bottom: 0;
    flex-shrink: 0;
}

.noona-employees--list .noona-employee__image img {
    width: 64px;
    height: 64px;
}

.noona-employees--list .noona-employee__body {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.noona-employees--list .noona-employee__name {
    font-size: 18px;
}

.noona-employees--list .noona-employee__book-link {
    margin-top: 0;
    margin-left: auto;
}

/* ---------- Opening Hours ---------- */

.noona-opening-hours {
    margin-bottom: 2rem;
}

.noona-opening-hours__title {
    font-family: 'Haboro', sans-serif;
    font-size: 28px;
    font-weight: 100;
    line-height: 1.2;
    color: #000;
    margin-bottom: 0.75rem;
}

.noona-opening-hours__table {
    border-collapse: collapse;
    width: 100%;
    max-width: 400px;
}

.noona-opening-hours__table td {
    padding: 0.5rem 0;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Haboro', sans-serif;
    font-size: 16px;
    font-weight: 100;
}

.noona-opening-hours__row:last-child td {
    border-bottom: none;
}

.noona-opening-hours__day {
    color: #000;
    white-space: nowrap;
    padding-right: 2rem !important;
}

.noona-opening-hours__time {
    text-align: right;
    color: #555;
}

.noona-opening-hours__row--today td {
    font-weight: 400;
    color: #000;
}

.noona-opening-hours__today-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #4a90d9;
    border-radius: 50%;
    margin-left: 0.35rem;
    vertical-align: middle;
}

.noona-opening-hours__row--closed .noona-opening-hours__time {
    color: #bbb;
    font-style: italic;
}

/* ---------- Location ---------- */

.noona-location {
    margin-bottom: 2rem;
}

.noona-location__title {
    font-family: 'Haboro', sans-serif;
    font-size: 28px;
    font-weight: 100;
    line-height: 1.2;
    color: #000;
    margin-bottom: 0.5rem;
}

.noona-location__address {
    font-family: 'Haboro', sans-serif;
    font-size: 18px;
    font-weight: 100;
    color: #333;
    margin: 0 0 0.5rem;
    line-height: 1.5;
}

.noona-location__directions-link {
    display: inline-block;
    font-size: 0.9em;
    color: #4a90d9;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.2s ease;
}

.noona-location__directions-link:hover,
.noona-location__directions-link:focus {
    color: #2563eb;
    text-decoration: underline;
}

.noona-location__map {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

.noona-location__map iframe {
    display: block;
    border: none;
}

/* ---------- Service Detail Page ---------- */

.noona-service-detail {
    padding: 2rem 0 4rem;
}

.noona-service-detail__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.noona-service-detail--embedded .noona-service-detail__inner {
    max-width: none;
    margin: 0;
    padding: 0;
}

/* ── DROPDOWN LAYOUT ── */
.noona-svc-dropdown__select-wrap {
    margin-bottom: 1.5rem;
}

.noona-svc-dropdown__label {
    display: block;
    font-family: 'Haboro', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-bottom: 0.5rem;
}

.noona-svc-dropdown__select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    font-family: 'Haboro', sans-serif;
    font-size: 16px;
    border: 1.5px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #333;
    cursor: pointer;
    appearance: auto;
}

.noona-svc-dropdown__select:focus {
    outline: none;
    border-color: #333;
}

/* ── DISCLOSURE / TOGGLE LAYOUT ── */
.noona-svc-disclosure__item {
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.noona-svc-disclosure__item[open] {
    border-color: #ccc;
}

.noona-svc-disclosure__summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    cursor: pointer;
    list-style: none;
    font-family: 'Haboro', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    background: #fafafa;
    transition: background 0.15s;
}

.noona-svc-disclosure__summary::-webkit-details-marker {
    display: none;
}

.noona-svc-disclosure__summary:hover {
    background: #f0f0f0;
}

.noona-svc-disclosure__title {
    flex: 1;
}

.noona-svc-disclosure__price {
    font-size: 15px;
    color: #666;
    white-space: nowrap;
}

.noona-svc-disclosure__chevron {
    flex-shrink: 0;
    color: #999;
    transition: transform 0.2s;
}

.noona-svc-disclosure__item[open] .noona-svc-disclosure__chevron {
    transform: rotate(180deg);
}

.noona-svc-disclosure__content {
    padding: 1rem 1rem 1.25rem;
}

/* ── TABS LAYOUT ── */
.noona-svc-tabs__nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 1.5rem;
}

.noona-svc-tabs__tab {
    flex-shrink: 0;
    padding: 0.6rem 1.25rem;
    font-family: 'Haboro', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #888;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.15s, border-color 0.15s;
}

.noona-svc-tabs__tab:hover {
    color: #333;
}

.noona-svc-tabs__tab--active {
    color: #000;
    border-bottom-color: #000;
}

/* ── ACCORDION LAYOUT ── */
.noona-svc-accordion__item {
    border-bottom: 1px solid #e8e8e8;
}

.noona-svc-accordion__item:first-child {
    border-top: 1px solid #e8e8e8;
}

.noona-svc-accordion__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.85rem 0;
    font-family: 'Haboro', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.noona-svc-accordion__title {
    flex: 1;
}

.noona-svc-accordion__price {
    font-size: 15px;
    color: #666;
    white-space: nowrap;
}

.noona-svc-accordion__chevron {
    flex-shrink: 0;
    color: #999;
    transition: transform 0.2s;
}

.noona-svc-accordion__item--open .noona-svc-accordion__chevron {
    transform: rotate(180deg);
}

.noona-svc-accordion__body {
    padding: 0 0 1.25rem;
}

.noona-service-detail__breadcrumb {
    font-family: 'Haboro', sans-serif;
    font-size: 14px;
    font-weight: 100;
    color: #888;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.noona-service-detail__title {
    font-family: 'Haboro', sans-serif;
    font-size: 36px;
    font-weight: 100;
    line-height: 1.2;
    color: #000;
    margin: 0 0 1rem;
}

.noona-service-detail__meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.noona-service-detail__duration {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Haboro', sans-serif;
    font-size: 18px;
    font-weight: 100;
    color: #555;
}

.noona-service-detail__duration svg {
    opacity: 0.6;
}

.noona-service-detail__price {
    font-family: 'Haboro', sans-serif;
    font-size: 22px;
    font-weight: 100;
    color: #000;
}

.noona-service-detail__description {
    font-family: 'Haboro', sans-serif;
    font-size: 18px;
    font-weight: 100;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
}

.noona-service-detail__actions {
    margin-bottom: 3rem;
}

.noona-service-detail__book-btn {
    display: inline-block;
    padding: 0.75rem 2.5rem;
    font-family: 'Haboro', sans-serif;
    font-size: 18px;
    font-weight: 100;
    color: #333;
    background-color: transparent;
    border: 1.5px solid #333;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}

.noona-service-detail__book-btn:hover,
.noona-service-detail__book-btn:focus {
    background-color: #333;
    color: #fff;
}

/* ── Combined Book + Performers layout ── */
.noona-service-detail__booking {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.noona-service-detail__booking-title {
    font-family: 'Haboro', sans-serif;
    font-size: 28px;
    font-weight: 100;
    color: #000;
    margin: 0 0 1rem;
}

.noona-service-detail__booking-options {
    margin-bottom: 1rem;
}

.noona-service-detail__pick-performer {
    margin-top: 0.5rem;
}

.noona-service-detail__pick-performer-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 2.5rem;
    font-family: 'Haboro', sans-serif;
    font-size: 18px;
    font-weight: 100;
    color: #333;
    border: 1.5px solid #333;
    border-radius: 4px;
    cursor: pointer;
    list-style: none;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}

.noona-service-detail__pick-performer-toggle::-webkit-details-marker {
    display: none;
}

.noona-service-detail__pick-performer-toggle:hover,
.noona-service-detail__pick-performer-toggle:focus {
    background-color: #333;
    color: #fff;
}

.noona-service-detail__pick-performer-toggle:hover .noona-service-detail__pick-performer-chevron,
.noona-service-detail__pick-performer-toggle:focus .noona-service-detail__pick-performer-chevron {
    color: #fff;
}

.noona-service-detail__pick-performer-chevron {
    flex-shrink: 0;
    color: #999;
    transition: transform 0.2s;
}

.noona-service-detail__pick-performer[open] .noona-service-detail__pick-performer-chevron {
    transform: rotate(180deg);
}

.noona-service-detail__pick-performer .noona-service-detail__performers-grid {
    margin-top: 1.25rem;
}

.noona-service-detail__performers {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.noona-service-detail__performers-title {
    font-family: 'Haboro', sans-serif;
    font-size: 28px;
    font-weight: 100;
    color: #000;
    margin: 0 0 1.25rem;
}

.noona-service-detail__performers-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.noona-service-detail__performer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.noona-service-detail__performer:last-child {
    border-bottom: none;
}

.noona-service-detail__performer-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.noona-service-detail__performer-img-wrap {
    position: relative;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
}

.noona-service-detail__performer-badge-icon {
    position: absolute;
    bottom: -2px;
    right: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    background: #fff;
    border-radius: 6px;
    line-height: 0;
}

.noona-service-detail__performer-badge-icon svg {
    fill: #e0ddd8;
    stroke: #fff;
}

.noona-service-detail__performer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.noona-service-detail__performer-name {
    font-family: 'Haboro', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000;
}

.noona-service-detail__performer-role {
    font-family: 'Haboro', sans-serif;
    font-size: 14px;
    font-weight: 100;
    color: #888;
}

.noona-service-detail__performer-next {
    display: block;
    font-family: 'Haboro', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #2e7d32;
    margin-top: 2px;
}

.noona-service-detail__performer-book {
    display: inline-block;
    padding: 0.3rem 1rem;
    font-size: 0.8em;
    font-weight: 600;
    color: #333;
    background-color: transparent;
    border: 1.5px solid #333;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.noona-service-detail__performer-book:hover,
.noona-service-detail__performer-book:focus {
    background-color: #333;
    color: #fff;
}

/* ── Addons / Upsell Section ── */
.noona-addons {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.noona-addons__title {
    font-family: 'Haboro', sans-serif;
    font-size: 28px;
    font-weight: 100;
    color: #000;
    margin: 0 0 1.25rem;
}

.noona-addons__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.noona-addons__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.noona-addons__item:last-child {
    border-bottom: none;
}

.noona-addons__item-info {
    flex: 1;
    min-width: 0;
}

.noona-addons__item-title {
    font-family: 'Haboro', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    transition: color 0.15s ease;
}

.noona-addons__item-title:hover,
.noona-addons__item-title:focus {
    color: #4a90d9;
}

.noona-addons__item-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.35rem;
}

.noona-addons__item-desc {
    font-family: 'Haboro', sans-serif;
    font-size: 15px;
    font-weight: 100;
    color: #888;
    margin: 0.35rem 0 0;
    line-height: 1.5;
}

.noona-addons__item-book {
    flex-shrink: 0;
}

/* ---------- Addon Upsell Modal ---------- */

.noona-addon-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.noona-addon-modal-overlay--open {
    display: flex;
}

.noona-addon-modal {
    background: #fff;
    border-radius: 12px;
    max-width: 480px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.noona-addon-modal__title {
    font-family: 'Haboro', sans-serif;
    font-size: 24px;
    font-weight: 100;
    color: #000;
    margin: 0 0 1.25rem;
    text-align: center;
}

.noona-addon-modal__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.noona-addon-modal__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.15s ease;
}

.noona-addon-modal__item:last-child {
    border-bottom: none;
}

.noona-addon-modal__item:hover {
    background: #fafafa;
}

.noona-addon-modal__checkbox {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: #cb203b;
    cursor: pointer;
}

.noona-addon-modal__item-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.noona-addon-modal__item-title {
    font-family: 'Haboro', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #000;
}

.noona-addon-modal__item-meta {
    font-family: 'Haboro', sans-serif;
    font-size: 14px;
    font-weight: 100;
    color: #888;
}

.noona-addon-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.noona-addon-modal__btn {
    display: block;
    text-align: center;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    font-family: 'Haboro', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.15s ease;
    cursor: pointer;
}

.noona-addon-modal__btn:hover {
    opacity: 0.85;
}

.noona-addon-modal__btn--book {
    background: #333;
    color: #fff;
    border: 1px solid #333;
}

.noona-addon-modal__btn--skip {
    background: transparent;
    color: #333;
    border: 1px solid #ccc;
}

/* ---------- Responsive ---------- */

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

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

    .noona-company__covers {
        flex-direction: column;
    }

    .noona-company__cover-img {
        max-height: 200px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .noona-service__header {
        flex-direction: column;
        gap: 0.2rem;
    }

    .noona-service__dots {
        display: none;
    }

    .noona-service__row {
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .noona-service__actions {
        width: 100%;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .noona-employees--grid {
        grid-template-columns: 1fr;
    }

    .noona-employees--list .noona-employee {
        flex-wrap: wrap;
    }

    .noona-employees--list .noona-employee__book-link {
        margin-left: 0;
    }

    .noona-service-detail__title {
        font-size: 28px;
    }

    .noona-service-detail__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .noona-service-detail__performer {
        flex-wrap: wrap;
    }

    .noona-service-detail__performer-book {
        margin-left: auto;
    }

    .noona-addons__item {
        flex-wrap: wrap;
    }

    .noona-addons__item-book {
        margin-left: auto;
    }
}
