/* ════════════════════════════════════════════════════
   BOOKING CORE — Frontend Styles  v1.0.0
   Author: Đức Dũng IT
   ════════════════════════════════════════════════════ */

:root {
    --bc-accent:     #5f0015;
    --bc-accent2:    #7d001c;
    --bc-cream:      #fff8f2;
    --bc-cream2:     #f5e8d8;
    --bc-gold:       #c9a97a;
    --bc-text:       #2a1208;
    --bc-muted:      #8a6040;
    --bc-r:          14px;
    --bc-r-sm:       8px;
    --bc-sh:         0 6px 32px rgba(95,0,21,.1);
    --bc-sh-sm:      0 2px 14px rgba(95,0,21,.07);
    --bc-gap:        22px;
}

/* ── Reset ─────────────────────────────────────────── */
.bc-card *,
.bc-carousel-wrap * {
    box-sizing: border-box;
}

/* ══════════════════════════════════════════════════
   SERVICE CARD
══════════════════════════════════════════════════ */
.bc-card {
    border-radius: var(--bc-r);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(201,169,122,.18);
    transition: transform .32s ease, box-shadow .32s ease;
    height: 100%;
}
.bc-card:hover {
    box-shadow: var(--bc-sh);
}
.bc-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Card image */
.bc-card-img {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bc-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(95,0,21,.42) 100%);
    pointer-events: none;
    z-index: 1;
}
.bc-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}
.bc-card:hover .bc-card-img img {
    transform: scale(1.06);
}

/* Nail icon SVG inside gradient cards */
.bc-nail-icon {
    width: 60px;
    height: 76px;
    position: relative;
    z-index: 2;
    opacity: .5;
}

/* Badge */
.bc-badge {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 3;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 3px 11px;
    border-radius: 20px;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bc-accent);
    white-space: nowrap;
}

/* Card body */
.bc-card-body {
    padding: 20px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: var(--bc-cream);
}

.bc-card-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bc-accent);
    display: block;
}

.bc-card-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 22px !important;
    font-weight: 600;
    color: var(--bc-text);
    line-height: 1.15;
    margin: 0;
    /* 2-line clamp */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bc-card-desc {
    font-size: 13.5px;
    color: var(--bc-muted);
    line-height: 1.72;
    margin: 2px 0 6px;
    flex: 1;
}

.bc-card-price {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--bc-accent);
    margin-top: auto;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}
.bc-price-from {
    font-size: 14px;
    font-weight: 400;
    font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
    color: var(--bc-muted);
}
.bc-price-label {
    font-size: 12px;
    font-weight: 400;
    font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
    color: var(--bc-muted);
}

/* ══════════════════════════════════════════════════
   CAROUSEL WRAPPER
══════════════════════════════════════════════════ */
.bc-carousel-wrap {
    position: relative;
    padding: 0 56px;   /* space for prev/next buttons */
}
.bc-carousel-track-outer {
    overflow: hidden;
}
.bc-carousel-track {
    display: flex;
    gap: var(--bc-gap);
    transition: transform .45s cubic-bezier(.25,.46,.45,.94);
    will-change: transform;
}
.bc-carousel-slide {
    flex-shrink: 0;
    min-width: 0;
}

/* Prev / Next buttons */
.bc-car-btn {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 24px)); /* shift up above dots area */
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--bc-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 14px rgba(95,0,21,.14);
    transition: background .22s, box-shadow .22s, transform .22s;
    padding: 0;
}
.bc-car-btn:hover {
    background: var(--bc-accent);
    box-shadow: 0 6px 22px rgba(95,0,21,.3);
    transform: translateY(calc(-50% - 24px)) scale(1.04);
}
.bc-car-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--bc-accent);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .22s;
}
.bc-car-btn:hover svg {
    stroke: #fff;
}
.bc-car-prev { left: 0; }
.bc-car-next { right: 0; }

/* Dots */
.bc-car-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
}
.bc-car-dot {
    width: 8px;
    height: 8px;
    border-radius: 20px;
    background: rgba(95,0,21,.18);
    border: none;
    cursor: pointer;
    transition: background .28s, width .28s;
    padding: 0;
}
.bc-car-dot.active {
    background: var(--bc-accent);
    width: 28px;
}

/* ══════════════════════════════════════════════════
   GRID LAYOUT
══════════════════════════════════════════════════ */
.bc-services-grid {
    display: grid;
    gap: var(--bc-gap);
}

/* ── Empty state ─────────────────────────────────── */
.bc-empty {
    text-align: center;
    color: var(--bc-muted);
    padding: 40px 0;
    font-size: 15px;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .bc-carousel-wrap {
        padding: 0 44px;
    }
    .bc-car-btn {
        width: 34px;
        height: 34px;
    }
    .bc-car-btn svg {
        width: 17px;
        height: 17px;
    }
}

@media (max-width: 767px) {
    .bc-carousel-wrap {
        padding: 0 20px;
    }
    .bc-car-btn {
        width: 34px;
        height: 34px;
    }
    .bc-car-prev { left: -4px; }
    .bc-car-next { right: -4px; }
    .bc-carousel-track {
        gap: 12px;
    }
    .bc-card-title {
        font-size: 18px;
    }
    .bc-card-body {
        padding: 14px;
    }
}

/* ═══════════════════════════════════════════════════
   PRICING TABLE  [bc_pricing_table]
═══════════════════════════════════════════════════ */
/* ─────────────────────────────────────────────────────
   PRICING TABLE  [bc_pricing_table]
   Pixel-matched to design: cream bg, white cards,
   featured card = cream-tinted + border,
   price = large serif italic burgundy
───────────────────────────────────────────────────── */

.bc-pricing-wrap {
    width: 100%;
    /* outer page bg should be cream: #fff8f2 */
}

/* Section spacing */
.bc-pricing-section {
    margin-bottom: 64px;
}
.bc-pricing-section:last-child {
    margin-bottom: 0;
}

/* ── Category header: thin line ─ Title ─ thin line ── */
.bc-pricing-cat-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
}
.bc-pricing-cat-line {
    flex: 1;
    height: 1px;
    background: rgba(42,18,8,.12);
    display: block;
}
.bc-pricing-cat-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 32px;
    font-weight: 400;         /* light weight, not bold — matches screenshot */
    font-style: normal;
    color: #2a1208;
    white-space: nowrap;
    letter-spacing: -.3px;
    margin: 0;
    line-height: 1.1;
}

/* ── Grid ── */
.bc-pricing-grid {
    display: grid;
    gap: 16px;
}
.bc-pricing-cols-2 { grid-template-columns: repeat(2, 1fr); }
.bc-pricing-cols-3 { grid-template-columns: repeat(3, 1fr); }
.bc-pricing-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Item card ── */
.bc-pt-item {
    background: #ffffff;
    border: 1.5px solid rgba(42,18,8,.09);
    border-radius: 14px;
    padding: 28px 28px 26px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: box-shadow .22s ease;
}
.bc-pt-item:hover {
    box-shadow: 0 6px 28px rgba(42,18,8,.08);
}

/* ── Featured card (has a badge) — warm cream tint + slightly deeper border ── */
.bc-pt-featured {
    background: #f9f0e6;        /* warm cream, matches screenshot middle card */
    border-color: rgba(42,18,8,.13);
}

/* ── Badge (e.g. "PHỔ BIẾN") — pill top-right ── */
.bc-pt-badge {
    position: absolute;
    top: -1px;
    right: 18px;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 0 0 10px 10px;   /* hangs from top like a tag */
    line-height: 1;
}

/* ── Service name ── */
.bc-pt-name {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 17px;
    font-weight: 600;
    color: #2a1208;
    margin-bottom: 8px;
    padding-right: 64px;       /* clear space for badge */
    line-height: 1.25;
}

/* ── Description ── */
.bc-pt-desc {
    font-size: 13px;
    color: #8a6040;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* ── Price ── */
.bc-pt-price {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 28px;
    font-weight: 700;
    font-style: italic;           /* italic like screenshot */
    color: #5f0015;               /* deep burgundy */
    line-height: 1;
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

/* "từ" / "Ab" prefix — small, non-italic */
.bc-pt-from {
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    color: #5f0015;
    opacity: 1;
}

/* ── Sub-services list inside card ── */
.bc-pt-subs {
    margin-top: 14px;
    border-top: 1px solid rgba(42,18,8,.08);
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bc-pt-sub-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    gap: 12px;
}
.bc-pt-sub-name {
    color: #8a6040;
    flex: 1;
}
.bc-pt-sub-price {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    color: #5f0015;
    white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .bc-pricing-cols-3,
    .bc-pricing-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .bc-pricing-cols-2,
    .bc-pricing-cols-3,
    .bc-pricing-cols-4 { grid-template-columns: 1fr; }
    .bc-pricing-cat-title { font-size: 26px; }
    .bc-pt-item { padding: 22px 20px 20px; }
    .bc-pt-price { font-size: 24px; }
}

/* ═══════════════════════════════════════════════════
   BLOG GRID  [bc_blog_grid]
═══════════════════════════════════════════════════ */
.bc-blog-grid {
    display: grid;
    grid-template-columns: 5fr 3fr;
    gap: 24px;
    align-items: start;
}

/* Featured post */
.bc-bg-featured {
    border-radius: 14px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--bc-cream);
    border: 1px solid rgba(201,169,122,.15);
    transition: box-shadow .28s;
}
.bc-bg-featured:hover {
    box-shadow: 0 6px 32px rgba(95,0,21,.1);
}
.bc-bg-feat-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(145deg, #f9d4d4, #c47a8a);
}
.bc-bg-feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.bc-bg-featured:hover .bc-bg-feat-img img {
    transform: scale(1.04);
}
.bc-bg-feat-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #f9d4d4, #c47a8a);
}
.bc-bg-feat-overlay {
    display: none;
}
.bc-bg-feat-body {
    padding: 24px 26px 26px;
}
.bc-bg-cat {
    display: inline-block;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--bc-gold);
    margin-bottom: 10px;
}
.bc-bg-feat-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--bc-text);
    margin: 0 0 10px;
}
.bc-bg-feat-exc {
    font-size: 14px;
    color: var(--bc-muted);
    line-height: 1.75;
    margin: 0 0 14px;
}
.bc-bg-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: var(--bc-muted);
}

/* Right column list */
.bc-bg-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bc-bg-item {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: var(--bc-cream);
    border: 1px solid rgba(201,169,122,.15);
    transition: box-shadow .25s, transform .25s;
}
.bc-bg-item:hover {
    box-shadow: 0 4px 20px rgba(95,0,21,.08);
    transform: translateY(-3px);
}
.bc-bg-item-img {
    height: 120px;
    overflow: hidden;
    flex-shrink: 0;
}
.bc-bg-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.bc-bg-item:hover .bc-bg-item-img img {
    transform: scale(1.05);
}
.bc-bg-item-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #eeddf5, #d4b4e8);
}
.bc-bg-item-body {
    padding: 14px 16px 16px;
}
.bc-bg-item-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--bc-text);
    margin: 4px 0 8px;
}

@media (max-width: 900px) {
    .bc-blog-grid { grid-template-columns: 1fr; }
    .bc-bg-feat-title { font-size: 22px; }
}
@media (max-width: 600px) {
    .bc-bg-item-img { height: 100px; }
}

/* ═══════════════════════════════════════════════════
   SERVICE MODAL
═══════════════════════════════════════════════════ */
.bc-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42,18,8,.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}
.bc-modal-overlay.bc-modal-open {
    opacity: 1;
    pointer-events: all;
}
.bc-modal-box {
    background: #fff;
    border-radius: 0;
    width: 100%;
    max-width: 560px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transform: translateY(16px) scale(.97);
    transition: transform .3s ease;
    box-shadow: 0 24px 80px rgba(0,0,0,.22);
}
.bc-modal-inner {
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}
.bc-modal-overlay.bc-modal-open .bc-modal-box {
    transform: none;
}
.bc-modal-close {
    position: static;
    top: 12px;
    right: 14px;
    z-index: 10;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0,0,0,.1);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bc-text);
    transition: background .2s;
}
.bc-modal-close:hover {
    background: #fff;
}
.bc-modal-header {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.bc-modal-header img,
.bc-modal-gradient-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bc-modal-body {
    padding: 24px 28px 28px;
}
.bc-modal-cat {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--bc-gold);
    margin-bottom: 6px;
}
.bc-modal-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 8px;
    vertical-align: middle;
}
.bc-modal-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--bc-text);
    line-height: 1.15;
    margin: 8px 0 12px;
}
.bc-modal-exc {
    font-size: 14.5px;
    color: var(--bc-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}
.bc-modal-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--bc-muted);
    margin-bottom: 12px;
}
.bc-modal-duration svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}
.bc-modal-price {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 30px;
    font-weight: 700;
    margin-top: 4px;
}
.bc-modal-subs {
    margin-top: 16px;
    border-top: 1px solid rgba(201,169,122,.2);
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bc-modal-sub-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--bc-cream);
    border-radius: 8px;
}
.bc-modal-sub-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--bc-text);
}
.bc-modal-sub-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.bc-modal-sub-dur {
    font-size: 12px;
    color: var(--bc-muted);
}
.bc-modal-sub-price {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 18px;
    font-weight: 700;
}
.bc-modal-loading {
    padding: 48px;
    text-align: center;
    color: var(--bc-muted);
    font-size: 14px;
}
@media (max-width: 600px) {
    .bc-modal-box { max-width: 100%; border-radius: 14px 14px 0 0; }
    .bc-modal-overlay { align-items: flex-end; padding: 0; }
    .bc-modal-body { padding: 20px 20px 32px; }
}

/* ═══════════════════════════════════════════════════════
   CATEGORY CAROUSEL  [bc_cat_carousel]
   Full-height card style matching "Dịch vụ đẳng cấp"
═══════════════════════════════════════════════════════ */

.bc-svc-card {
    border-radius: 18px;
    overflow: hidden;
    height: 420px;
    position: relative;
    background: #111;
    display: block;
    color: #fff;
}
.bc-svc-photo {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,#f9d4d4,#c47a8a);
}
.bc-svc-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
    display: block;
}
.bc-svc-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,0,8,.92) 0%, rgba(95,0,21,.45) 50%, transparent 100%);
    pointer-events: none;
}
.bc-svc-card:hover .bc-svc-photo img {
    transform: scale(1.07);
}
.bc-svc-num {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 2;
    font-family: 'Cormorant Garamond','Georgia',serif;
    font-size: 60px;
    font-weight: 700;
    color: rgba(255,255,255,.1);
    line-height: 1;
    transition: color .3s;
    pointer-events: none;
}
.bc-svc-card:hover .bc-svc-num {
    color: rgba(232,208,166,.18);
}
.bc-svc-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 26px;
    z-index: 2;
}
.bc-svc-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a97a;
    margin-bottom: 7px;
    opacity: .85;
}
.bc-svc-title {
    font-family: 'Cormorant Garamond','Georgia',serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 6px;
}
.bc-svc-price {
    font-family: 'Cormorant Garamond','Georgia',serif;
    font-size: 20px;
    font-style: italic;
    color: #e8d0a6;
    margin-bottom: 8px;
}
.bc-svc-desc {
    font-size: 13px;
    color: rgba(255,248,242,.65);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    margin-bottom: 0;
}
.bc-svc-card:hover .bc-svc-desc {
    max-height: 72px;
}
.bc-svc-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: #e8d0a6;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(6px);
    transition: all .3s ease;
}
.bc-svc-card:hover .bc-svc-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* Category modal */
.bc-catmodal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42,18,8,.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}
.bc-catmodal-overlay.bc-catmodal-open {
    opacity: 1;
    pointer-events: all;
}
.bc-catmodal-box {
    background: #fff;
    border-radius: 18px;
    width: 100%;
    max-width: 580px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(14px) scale(.97);
    transition: transform .3s ease;
    box-shadow: 0 24px 80px rgba(0,0,0,.22);
}
.bc-catmodal-overlay.bc-catmodal-open .bc-catmodal-box {
    transform: none;
}
.bc-catmodal-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 28px 16px;
    border-bottom: 1px solid rgba(201,169,122,.18);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
}
.bc-catmodal-title {
    font-family: 'Cormorant Garamond','Georgia',serif;
    font-size: 26px;
    font-weight: 600;
    color: #2a1208;
    line-height: 1.1;
}
.bc-catmodal-sub {
    font-size: 12px;
    color: #8a6040;
    margin-top: 3px;
}
.bc-catmodal-close {
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 600;
    font-family: 'DM Sans','Helvetica Neue',sans-serif;
    color: #2a1208;
    cursor: pointer;
    padding: 6px 0;
    transition: opacity .2s;
    letter-spacing: .2px;
    flex-shrink: 0;
    margin-left: 12px;
}
.bc-catmodal-close:hover { opacity: .6; }
.bc-catmodal-body {
    padding: 8px 28px 28px;
}
.bc-catmodal-row {
    border-bottom: 1px solid rgba(42,18,8,.07);
}
.bc-catmodal-row:last-child { border-bottom: none; }
.bc-catmodal-row-head {
    display: flex;
    align-items: center;
    padding: 14px 0;
    gap: 12px;
    cursor: pointer;
}
.bc-catmodal-hassubs .bc-catmodal-row-head:hover { background: rgba(95,0,21,.025); }
.bc-catmodal-row-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.bc-catmodal-row-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.bc-catmodal-price {
    font-family: 'Cormorant Garamond','Georgia',serif;
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
}

@media (max-width: 600px) {
    .bc-svc-card { height: 360px; }
    .bc-catmodal-box { border-radius: 14px 14px 0 0; }
    .bc-catmodal-overlay { align-items: flex-end; padding: 0; }
}


/* ═══════════════════════════════════════════════════════
   SERVICES PAGE  [bc_services_page]
═══════════════════════════════════════════════════════ */
.bsp-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 52px;
}

/* Section header */
.bsp-section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 0;
}
.bsp-section-icon {
    font-size: 18px;
    color: var(--bc-accent, #5f0015);
    line-height: 1;
}
.bsp-section-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--bc-text, #2a1208);
    margin: 0;
}

/* Service list */
.bsp-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Single service row ── */
.bsp-row {
    border-bottom: 1px solid rgba(42,18,8,.07);
    transition: background .18s;
}
.bsp-row:first-child {
    border-top: 1px solid rgba(42,18,8,.07);
}
.bsp-row:hover {
    background: rgba(95,0,21,.025);
}
.bsp-row.bsp-selected {
    /* no background highlight */
}

/* Row header (main clickable line) */
.bsp-row-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    cursor: default;
}
.bsp-has-subs .bsp-row-head {
    cursor: pointer;
}

.bsp-row-left {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.bsp-row-title-wrap {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}
.bsp-row-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 3px;
}
.bsp-row-title {
    font-size: 15.5px;
    font-weight: 600;
    color: var(--bc-text, #2a1208);
    line-height: 1.3;
}
.bsp-badge {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}
.bsp-row-duration {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--bc-muted, #8a6040);
}
.bsp-row-duration svg {
    flex-shrink: 0;
}

.bsp-row-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.bsp-row-price {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
    white-space: nowrap;
}
.bsp-ab {
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    opacity: .85;
}

/* Buttons */
.bsp-btn-select,
.bsp-btn-cancel,
.bsp-btn-detail,
.bsp-btn-accordion {
    font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1.5px solid;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    background: transparent;
    line-height: 1;
}
.bsp-btn-select {
    border-color: currentColor;
}
.bsp-btn-select:hover {
    color: #fff !important;
    background: var(--bc-accent, #5f0015);
    border-color: var(--bc-accent, #5f0015);
}
.bsp-btn-cancel {
    border-color: #c00;
    color: #c00;
}
.bsp-btn-cancel:hover {
    background: #c00;
    color: #fff;
}
.bsp-btn-detail {
    border-color: rgba(42,18,8,.2);
    color: var(--bc-muted, #8a6040);
    font-size: 12px;
    padding: 5px 12px;
}
.bsp-btn-detail:hover {
    border-color: var(--bc-accent, #5f0015);
    color: var(--bc-accent, #5f0015);
}
.bsp-btn-accordion {
    border: none;
    padding: 6px;
    border-radius: 50%;
    background: rgba(42,18,8,.06);
    color: var(--bc-text, #2a1208);
    display: flex;
    align-items: center;
    justify-content: center;
}
.bsp-btn-accordion:hover {
    background: rgba(95,0,21,.1);
}

/* Detail panel */
.bsp-row-detail {
    padding: 0;
    transition: max-height .3s ease;
}
.bsp-detail-open .bsp-row-detail {
    padding-bottom: 14px;
}
.bsp-row-exc {
    font-size: 13.5px;
    color: var(--bc-muted, #8a6040);
    line-height: 1.8;
    margin: 0;
    padding: 0 0 4px;
}

/* Sub-services panel */
.bsp-row-subs {
    transition: max-height .35s ease;
}
.bsp-open .bsp-row-subs {
    padding-bottom: 10px;
}
.bsp-sub-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(42,18,8,.025);
    border-radius: 8px;
    margin-bottom: 6px;
    border: 1px solid rgba(201,169,122,.12);
}
.bsp-sub-row:last-child { margin-bottom: 0; }
.bsp-sub-left {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.bsp-sub-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--bc-text, #2a1208);
}
.bsp-sub-dur {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    color: var(--bc-muted, #8a6040);
}
.bsp-sub-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.bsp-sub-price {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
}

/* ── Tab layout (all services) ── */
.bsp-tabs-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    align-items: start;
}
.bsp-tab-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201,169,122,.18);
    box-shadow: 0 2px 12px rgba(95,0,21,.06);
}
.bsp-tab-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 13px 18px;
    background: #fff;
    border: none;
    border-bottom: 1px solid rgba(201,169,122,.12);
    text-align: left;
    font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--bc-text, #2a1208);
    cursor: pointer;
    transition: all .2s;
    line-height: 1.3;
}
.bsp-tab-btn:last-child { border-bottom: none; }
.bsp-tab-btn:hover { background: rgba(95,0,21,.04); color: var(--bsp-accent, #5f0015); }
.bsp-tab-btn.active {
    background: var(--bsp-accent, #5f0015);
    color: #fff;
    font-weight: 600;
}
.bsp-tab-count {
    flex-shrink: 0;
    font-size: 11px;
    opacity: .6;
    background: rgba(255,255,255,.25);
    padding: 2px 7px;
    border-radius: 10px;
    line-height: 1.4;
}
.bsp-tab-btn.active .bsp-tab-count { opacity: .75; }

.bsp-tab-panel { display: none; }
.bsp-tab-panel.active { display: block; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .bsp-tabs-layout { grid-template-columns: 1fr; }
    .bsp-tab-nav {
        flex-direction: row;
        flex-wrap: wrap;
        position: static;
        border-radius: 10px;
    }
    .bsp-tab-btn {
        flex: 1 0 auto;
        border-bottom: none;
        border-right: 1px solid rgba(201,169,122,.12);
        justify-content: center;
        padding: 10px 14px;
        font-size: 13px;
    }
    .bsp-tab-btn:last-child { border-right: none; }
}
@media (max-width: 600px) {
    .bsp-row-right { gap: 7px; }
    .bsp-btn-select, .bsp-btn-cancel, .bsp-btn-detail { padding: 5px 10px; font-size: 11.5px; }
    .bsp-row-price { font-size: 18px; }
    .bsp-section-title { font-size: 22px; }
    .bsp-sub-row { flex-direction: column; align-items: flex-start; gap: 8px; }
    .bsp-sub-right { width: 100%; justify-content: flex-end; }
}

/* ── Notice bar (fixed bottom) ── */
.bsp-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999998;
    background: #fff;
    border-top: 2px solid var(--bc-accent, #5f0015);
    box-shadow: 0 -4px 24px rgba(0,0,0,.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
    gap: 16px;
    transition: transform .3s ease;
}
.bsp-notice[style*="display:none"] { display: none !important; }
.bsp-notice-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.bsp-notice-count {
    font-size: 15px;
    font-weight: 700;
    color: var(--bc-accent, #5f0015);
}
.bsp-notice-total {
    font-family: 'Cormorant Garamond','Georgia',serif;
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    color: #2a1208;
}
.bsp-notice-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    color: #fff !important;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity .2s, transform .2s;
}
.bsp-notice-btn:hover { opacity: .88; transform: translateY(-1px); }

/* ── Detail modal ── */
.bsp-detail-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42,18,8,.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}
.bsp-detail-overlay.bsp-detail-open {
    opacity: 1;
    pointer-events: all;
}
.bsp-detail-box {
    background: #fff;
    border-radius: 0;
    width: 100%;
    max-width: 80%;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;           /* box itself does NOT scroll */
    position: relative;
    transform: translateY(14px) scale(.97);
    transition: transform .3s ease;
    box-shadow: 0 24px 80px rgba(0,0,0,.22);
}
.bsp-detail-overlay.bsp-detail-open .bsp-detail-box {
    transform: none;
}

/* Fixed header row: "Service Details" left, "Schließen" right */
.bspd-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    border-bottom: 1px solid rgba(42,18,8,.09);
    flex-shrink: 0;
    background: #fff;
}
.bspd-header-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #8a6040;
}
.bsp-detail-close {
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 600;
    font-family: 'DM Sans','Helvetica Neue',sans-serif;
    color: #2a1208;
    cursor: pointer;
    padding: 6px 0;
    transition: opacity .2s;
    letter-spacing: .2px;
}
.bsp-detail-close:hover { opacity: .6; }

/* Scrollable inner content */
.bspd-scroll {
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}
.bspd-body {
    padding: 26px 28px 32px;
}
.bspd-title {
    font-family: 'Cormorant Garamond','Georgia',serif;
    font-size: 30px;
    font-weight: 600;
    color: #2a1208;
    line-height: 1.12;
    margin: 8px 0 12px;
}
.bspd-reviews {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #8a6040;
    margin-bottom: 12px;
}
.bspd-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.bspd-dur {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13.5px;
    color: #8a6040;
}
.bspd-price {
    font-family: 'Cormorant Garamond','Georgia',serif;
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
}
.bspd-exc {
    font-size: 15px;
    color: #8a6040;
    line-height: 1.9;
    margin-bottom: 22px;
}
.bspd-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 18px;
}
.bspd-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

@media (max-width: 900px) {
    .bsp-detail-box { max-width: 96%; }
    .bspd-gallery { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 600px) {
    .bsp-notice { padding: 12px 16px; }
    .bsp-detail-box { max-width: 100%; max-height: 90vh; }
    .bsp-detail-overlay { padding: 0; align-items: flex-end; }
    .bspd-gallery { grid-template-columns: repeat(2,1fr); }
    .bspd-header { padding: 14px 18px; }
    .bspd-body { padding: 18px 18px 28px; }
}

/* ═══════════════════════════════════════════════════════
   BOOKING WIZARD  [bc_booking_wizard]
   Screenshot layout: dropdown + calendar strip + time list
═══════════════════════════════════════════════════════ */
.bcwiz-wrap {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
    padding: 60px 0;
}

/* Back link */
.bcwiz-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #2a1208;
    text-decoration: none;
    margin-bottom: 20px;
}
.bcwiz-back:hover { color: var(--bc-accent,#5f0015); }

/* Page title */
.bcwiz-page-title {
    font-family: 'Cormorant Garamond','Georgia',serif;
    font-size: 28px;
    font-weight: 700;
    color: #2a1208;
    margin: 0 0 24px;
    line-height: 1.15;
}

/* ── Technician dropdown ── */
.bcwiz-tech-dropdown-wrap {
    position: relative;
    margin-bottom: 20px;
    max-width: 340px;
}
.bcwiz-tech-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border: 1.5px solid rgba(42,18,8,.15);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #2a1208;
    transition: border-color .2s;
    user-select: none;
}
.bcwiz-tech-dropdown:hover { border-color: var(--bc-accent,#5f0015); }
.bcwiz-tech-dropdown svg:first-child { color: #8a6040; flex-shrink:0; }
.bcwiz-tech-dropdown #bcWizTechLabel { flex:1; }
.bcwiz-chevron { flex-shrink:0; color:#8a6040; transition:transform .2s; }
.bcwiz-tech-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1.5px solid rgba(42,18,8,.12);
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,.1);
    z-index: 100;
    overflow: hidden;
}
.bcwiz-tech-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: #2a1208;
    cursor: pointer;
    transition: background .15s;
    border-bottom: 1px solid rgba(42,18,8,.06);
}
.bcwiz-tech-opt:last-child { border-bottom: none; }
.bcwiz-tech-opt:hover { background: rgba(95,0,21,.04); }
.bcwiz-tech-opt.active { background: rgba(95,0,21,.06); font-weight:600; }

/* ── Calendar card ── */
.bcwiz-cal-card {
    background: #fff;
    border: 1.5px solid rgba(42,18,8,.1);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 24px;
}

/* Month header row */
.bcwiz-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 14px;
}
.bcwiz-month-label {
    font-size: 18px;
    font-weight: 700;
    color: #2a1208;
    font-family: 'Cormorant Garamond','Georgia',serif;
}
.bcwiz-cal-nav {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(42,18,8,.1);
    background: #fff;
    display: flex; align-items:center; justify-content:center;
    cursor: pointer;
    color: #2a1208;
    transition: all .18s;
    flex-shrink: 0;
}
.bcwiz-cal-nav:hover:not(:disabled) { border-color: var(--bc-accent,#5f0015); color: var(--bc-accent,#5f0015); }
.bcwiz-cal-nav:disabled { opacity: .35; cursor: default; }

/* Day strip */
.bcwiz-day-strip {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-top: 1px solid rgba(42,18,8,.07);
    border-bottom: 1px solid rgba(42,18,8,.07);
    padding: 8px 12px;
    gap: 4px;
}
.bcwiz-day-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 8px 4px;
    border-radius: 8px;
    transition: background .18s;
    min-width: 0;
}
.bcwiz-day-cell:not(.past):not(.full) { cursor: pointer; }
.bcwiz-day-cell:not(.past):not(.full):hover { background: rgba(42,18,8,.05); }
.bcwiz-day-cell.active {
    background: var(--bc-accent,#5f0015);
}
.bcwiz-day-cell.active .bcwiz-day-name,
.bcwiz-day-cell.active .bcwiz-day-num { color: #fff !important; }
.bcwiz-day-cell.past .bcwiz-day-num,
.bcwiz-day-cell.full .bcwiz-day-num {
    color: #bbb;
}
.bcwiz-day-cell.full .bcwiz-day-num {
    text-decoration: line-through;
    color: #ccc;
}
.bcwiz-day-name {
    font-size: 11px;
    color: #8a6040;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.bcwiz-day-num {
    font-size: 18px;
    font-weight: 700;
    color: #2a1208;
    line-height: 1;
}
.bcwiz-day-cell.is-today .bcwiz-day-num {
    color: var(--bc-accent,#5f0015);
}

/* Time area */
.bcwiz-time-area {
    padding: 0;
    max-height: 350px;
    overflow-y: auto;
}
.bcwiz-slot-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(42,18,8,.06);
    cursor: pointer;
    transition: background .15s;
}
.bcwiz-slot-row:last-child { border-bottom: none; }
.bcwiz-slot-row:hover { background: rgba(42,18,8,.03); }
.bcwiz-slot-row.active {
    background: rgba(95,0,21,.05);
    border-left: 3px solid var(--bc-accent,#5f0015);
}
.bcwiz-slot-time {
    font-size: 16px;
    font-weight: 600;
    color: #2a1208;
}
.bcwiz-slot-price {
    font-size: 15px;
    font-weight: 600;
    color: #2a1208;
}

/* Closed / no slots notice */
.bcwiz-closed-box {
    padding: 32px 24px;
    text-align: center;
}
.bcwiz-closed-title {
    font-size: 20px;
    font-weight: 700;
    color: #2a1208;
    margin-bottom: 8px;
}
.bcwiz-closed-hint {
    font-size: 14px;
    color: #8a6040;
    margin-bottom: 18px;
    line-height: 1.6;
}
.bcwiz-closed-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 1.5px solid var(--bc-accent,#5f0015);
    border-radius: 40px;
    background: transparent;
    color: var(--bc-accent,#5f0015);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
}
.bcwiz-closed-btn:hover { background: var(--bc-accent,#5f0015); color: #fff; }

/* Prompt */
.bcwiz-pick-prompt {
    padding: 28px 24px;
    text-align: center;
    font-size: 14px;
    color: #8a6040;
}

/* CTA */
.bcwiz-cta {
    width: 100%;
    max-width: 400px;
    padding: 15px;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
}
.bcwiz-cta:not(:disabled):hover { opacity: .88; transform: translateY(-1px); }
.bcwiz-cta:disabled { opacity: .4; cursor: default; }

/* ── Right summary ── */
.bcwiz-right {
    background: #fff;
    border: 1.5px solid rgba(201,169,122,.2);
    border-radius: 14px;
    padding: 24px;
    position: sticky;
    top: 100px;
}
.bcwiz-summary-title {
    font-family: 'Cormorant Garamond','Georgia',serif;
    font-size: 22px;
    font-weight: 600;
    color: #2a1208;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,169,122,.2);
}
.bcwiz-svc-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(42,18,8,.06);
    gap: 10px;
}
.bcwiz-svc-item:last-child { border-bottom: none; }
.bcwiz-svc-info { flex:1; display:flex; flex-direction:column; gap:3px; }
.bcwiz-svc-name { font-size:14px; font-weight:500; color:#2a1208; }
.bcwiz-svc-price { font-family:'Cormorant Garamond','Georgia',serif; font-size:17px; font-weight:700; font-style:italic; }
.bcwiz-svc-remove {
    width:26px; height:26px; border-radius:50%;
    border:1px solid rgba(200,0,0,.25); background:transparent;
    color:#c00; font-size:16px; cursor:pointer; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
    transition:all .18s;
}
.bcwiz-svc-remove:hover { background:#c00; color:#fff; border-color:#c00; }
.bcwiz-summary-total {
    display:flex; justify-content:space-between;
    padding-top:14px; margin-top:4px;
    border-top:2px solid rgba(42,18,8,.08);
    font-size:15px; color:#2a1208;
}
.bcwiz-summary-total strong {
    font-family:'Cormorant Garamond','Georgia',serif;
    font-size:22px; font-weight:700;
}

@media(max-width:900px) {
    .bcwiz-wrap { grid-template-columns:1fr; }
    .bcwiz-right { position:static; order:-1; }
    .bcwiz-day-num { font-size:15px; }
    .bcwiz-day-name { font-size:10px; }
}


/* ═══════════════════════════════════════════════════════
   BOOKING CONFIRMATION  [bc_booking_confirmation]
   Matches screenshot: time block left, summary card right
═══════════════════════════════════════════════════════ */
.bcconf-wrap {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
    padding: 60px 0;
}
.bcconf-form-title {
    font-family: 'Cormorant Garamond','Georgia',serif;
    font-size: 28px;
    font-weight: 600;
    color: #2a1208;
    margin-bottom: 8px;
}
.bcconf-form-hint {
    font-size: 14px;
    color: #8a6040;
    margin-bottom: 28px;
}
.bcconf-field {
    margin-bottom: 18px;
}
.bcconf-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #8a6040;
    margin-bottom: 6px;
}
.bcconf-field input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(201,169,122,.3);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: #2a1208;
    transition: border-color .2s;
}
.bcconf-field input:focus {
    outline: none;
    border-color: var(--bc-accent,#5f0015);
    box-shadow: 0 0 0 3px rgba(95,0,21,.07);
}
.bcconf-submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    margin-top: 8px;
    transition: opacity .2s, transform .2s;
}
.bcconf-submit:hover { opacity: .88; transform: translateY(-1px); }
.bcconf-feedback { margin-top:14px; font-size:14px; padding:10px 14px; border-radius:8px; display:none; }
.bcconf-feedback:not(:empty) { display:block; }
.bcconf-success { background:#f0faf0; color:#2a7a2a; border:1px solid #b0e0b0; }
.bcconf-error   { background:#fff0f0; color:#c00; border:1px solid #fcc; }

/* Summary card — matches screenshot exactly */
.bcconf-right {}
.bcconf-summary-card {
    background: #fff;
    border: 1.5px solid rgba(201,169,122,.2);
    border-radius: 14px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 4px 24px rgba(95,0,21,.07);
    position: sticky;
    top: 100px;
}
/* Colored top bar */
.bcconf-summary-card::before {
    content: '';
    display: block;
    height: 5px;
    background: linear-gradient(90deg, var(--bc-accent,#5f0015), #c9a97a, #5fa0d0);
}
.bcconf-salon-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 22px 14px;
    font-weight: 600;
    font-size: 15px;
    color: #2a1208;
    border-bottom: 1px solid rgba(42,18,8,.06);
}
.bcconf-datetime-block {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(42,18,8,.06);
}
.bcconf-time {
    font-size: 40px;
    font-weight: 800;
    color: #2a1208;
    line-height: 1;
    font-family: 'Cormorant Garamond','Georgia',serif;
}
.bcconf-date-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 18px;
    border-left: 2px solid rgba(42,18,8,.1);
}
.bcconf-date-text {
    font-size: 14px;
    font-weight: 600;
    color: #2a1208;
}
.bcconf-tech-text {
    font-size: 13px;
    color: #8a6040;
}
.bcconf-change-time {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    color: #2a1208;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 100%;
    border-bottom: 1px solid rgba(42,18,8,.06);
    font-family: inherit;
}
.bcconf-change-time:hover { color: var(--bc-accent,#5f0015); }
.bcconf-divider {
    height: 1px;
    background: rgba(42,18,8,.07);
    margin: 0;
}
.bcconf-svc-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 22px;
    gap: 12px;
    border-bottom: 1px solid rgba(42,18,8,.05);
}
.bcconf-svc-row:last-of-type { border-bottom: none; }
.bcconf-svc-info { flex:1; }
.bcconf-svc-name { font-size:14px; font-weight:500; color:#2a1208; display:block; margin-bottom:3px; }
.bcconf-svc-sub  { font-size:12px; color:#8a6040; }
.bcconf-svc-price {
    font-family: 'Cormorant Garamond','Georgia',serif;
    font-size: 17px;
    font-weight: 700;
    color: #2a1208;
    white-space: nowrap;
}
.bcconf-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    background: rgba(42,18,8,.02);
    border-top: 2px solid rgba(42,18,8,.08);
    font-size: 15px;
    color: #2a1208;
    font-weight: 600;
}
.bcconf-total-row strong {
    font-family: 'Cormorant Garamond','Georgia',serif;
    font-size: 22px;
    font-weight: 700;
}

@media(max-width:900px) {
    .bcconf-wrap { grid-template-columns:1fr; }
    .bcconf-summary-card { position:static; }
}

/* ═══════════════════════════════════════════════════════
   BOOKING PAGE: hide global notice bar
═══════════════════════════════════════════════════════ */
.bc-booking-page .bsp-notice,
.bc-booking-page .bsp-notice-global,
.bc-booking-page #bspGlobalNotice,
html.bc-booking-page .bsp-notice,
html.bc-booking-page .bsp-notice-global,
html.bc-booking-page #bspGlobalNotice {
    display: none !important;
}
