:root { 
            --primary: #6366f1; --primary-dark: #4f46e5; --primary-lt: rgba(99, 102, 241, 0.08); 
            --secondary: #ec4899; --accent: #8b5cf6; --cream: #f8fafc; --ink: #0f172a; 
            --page-bg: #f8fafc; --surface: #ffffff;
            --muted: #64748b; --border: rgba(148, 163, 184, 0.35); --success: #10b981; 
            --danger: #ef4444; --card: #ffffff; --font-head: 'Playfair Display', 'DM Sans', serif; 
            --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
            --grad: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
            --grad-hover: linear-gradient(135deg, #4f46e5 0%, #9333ea 50%, #db2777 100%);
            --shadow: 0 12px 32px -4px rgba(99, 102, 241, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
            --shadow-hover: 0 20px 40px -6px rgba(99, 102, 241, 0.16), 0 8px 18px -4px rgba(15, 23, 42, 0.08);
            --glass: rgba(255, 255, 255, 0.85);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; outline: none; -webkit-tap-highlight-color: transparent; }
        body { 
            font-family: var(--font-body); background: var(--page-bg); 
            background-image: radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.08) 0px, transparent 50%), radial-gradient(at 100% 100%, rgba(236, 72, 153, 0.08) 0px, transparent 50%);
            color: var(--ink); max-width: 480px; margin: 0 auto; min-height: 100vh; display: flex; flex-direction: column; position: relative; box-shadow: 0 0 80px rgba(15,23,42,0.08); overflow-x: hidden;
        }
        body::before { content: ""; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); opacity: 0.018; pointer-events: none; z-index: 9999; }
        .screen { display: none; flex-direction: column; min-height: 100vh; animation: screenIn 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
        @keyframes screenIn { from { opacity: 0; transform: scale(0.97) translateY(16px); } to { opacity: 1; transform: scale(1) translateY(0); } }
        .screen.active { display: flex; }
        .hdr { padding: 18px 22px; background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: flex-start; gap: 14px; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 20px rgba(15,23,42,0.03); flex-wrap: wrap; row-gap: 8px; }
        .hdr-back { border: none; background: var(--primary-lt); color: var(--primary); width: 40px; height: 40px; border-radius: 14px; cursor: pointer; transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
        .hdr-back:hover { background: var(--primary); color: white; transform: translateX(-2px); }
        .hdr-back:active { transform: scale(0.95) translateX(-2px); }
        .hdr-title { flex: 1 1 auto; min-width: 0; }
        .hdr-title h2 { font-family: var(--font-head); font-size: 1.25rem; color: var(--primary); font-weight: 800; letter-spacing: -0.01em; }
        #hdrCartBtn { margin-left: auto; display: none; }
        #hdrCartBadge { display: inline-flex; }
        .svc-grid { display: grid; grid-template-columns: 1fr; gap: 14px; padding: 20px; }
        .svc-card { background: white; border-radius: 22px; overflow: hidden; border: 2px solid transparent; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer; position: relative; box-shadow: var(--shadow); display:flex; gap:14px; align-items: stretch; padding: 14px; }
        .svc-card:hover { border-color: rgba(99, 102, 241, 0.3); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
        .svc-card.sel { border-color: var(--primary); background: var(--primary-lt); transform: translateY(-2px); box-shadow: 0 14px 30px -6px rgba(99, 102, 241, 0.2); }
        .svc-img { width: 110px; height: 110px; object-fit: cover; background: #f1f5f9; border-radius: 18px; flex-shrink: 0; }
        .svc-info { padding: 0; text-align: left; flex: 1; }
        .svc-name { font-weight: 800; font-size: 0.96rem; margin-bottom: 5px; display: block; color: var(--ink); line-height: 1.2; }
        .svc-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.4; margin-bottom: 10px; }
        .svc-price { color: var(--primary); font-weight: 800; font-size: 1.1rem; display: block; }
        .svc-check { position: absolute; top: 12px; right: 12px; background: var(--grad); color: white; border-radius: 50%; width: 28px; height: 28px; display: none; align-items: center; justify-content: center; font-size: 14px; box-shadow: 0 10px 20px -5px color-mix(in oklab, var(--primary) 40%, transparent); z-index: 10; border: 2px solid var(--surface); }
        .svc-card.sel .svc-check { display: flex; animation: checkPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        @keyframes checkPop { from { transform: scale(0); } to { transform: scale(1); } }
        .steps { display: flex; justify-content: space-between; padding: 18px 40px; background: var(--surface); border-bottom: 1px solid var(--border); }
        .step-dot { width: 32px; height: 32px; border-radius: 50%; background: color-mix(in oklab, var(--surface) 88%, var(--primary) 12%); color: var(--muted); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 800; transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); position: relative; border: 1.5px solid var(--border); }
        .step-dot.active { background: var(--grad); color: white; transform: scale(1.15); box-shadow: 0 10px 20px -5px color-mix(in oklab, var(--primary) 40%, transparent); border: none; }
        .step-dot.done { background: var(--success); color: white; border: none; }
        .step-dot:not(:last-child)::after { content: ""; position: absolute; right: -42px; width: 28px; height: 2px; background: color-mix(in oklab, var(--surface) 78%, var(--muted) 22%); z-index: 0; }
        .step-dot.done:not(:last-child)::after { background: var(--success); }
        .content { padding: 22px; flex: 1; min-height: 0; }
        .field { margin-bottom: 22px; }
        .field label { display: block; font-size: 0.75rem; font-weight: 800; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; padding-left: 4px; }
        .field input, .field select { width: 100%; padding: 15px 18px; border: 1.5px solid var(--border); border-radius: 16px; font-family: var(--font-body); transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); background: var(--surface); font-size: 0.96rem; color: var(--ink); }
        .field input:focus, .field select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px color-mix(in oklab, var(--primary) 15%, transparent); }
        .btn { padding: 14px 26px; min-height: 48px; border-radius: 999px; border: none; font-weight: 700; cursor: pointer; text-align: center; display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.9rem; box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08); }
        .btn:active { transform: scale(0.97); }
        .btn-primary { background: var(--grad); color: white; box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35); }
        .btn-primary:hover { background: var(--grad-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(99, 102, 241, 0.45); }
        .btn-outline { border: 1.5px solid var(--primary); color: var(--primary); background: var(--surface); box-shadow: 0 2px 6px color-mix(in oklab, var(--ink) 5%, transparent); }
        .btn-outline:hover { background: var(--primary-lt); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(99, 102, 241, 0.15); }
        .btn-wa { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); color: white; box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35); }
        .btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45); }
        .action-bar { padding: 18px 22px; background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid var(--border); position: sticky; bottom: 0; display: flex; gap: 12px; z-index: 100; box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.04); }
        .date-scroll { display: flex; overflow-x: auto; gap: 12px; padding: 10px 5px 20px; scrollbar-width: none; }
        .date-scroll::-webkit-scrollbar { display: none; }
        .date-card { flex: 0 0 110px; background: white; border: 2.5px solid var(--border); border-radius: 24px; padding: 20px 10px; text-align: center; cursor: pointer; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
        .date-card.active { border-color: var(--primary); background: var(--primary-lt); color: var(--primary); transform: translateY(-5px) scale(1.05); box-shadow: var(--shadow); }
        .booking-calendar { background: white; border: 1.5px solid var(--border); border-radius: 24px; padding: 18px 14px 20px; box-shadow: var(--shadow); margin-bottom: 22px; animation: calFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
        @keyframes calFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
        .cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding: 0 6px; }
        .cal-nav-btn { width: 38px; height: 38px; border-radius: 14px; border: 1.5px solid var(--border); background: white; color: var(--ink); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); }
        .cal-nav-btn:hover { background: var(--primary-lt); border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
        .cal-nav-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none !important; }
        .cal-title { text-align: center; }
        .cal-month { font-family: var(--font-head); font-weight: 800; color: var(--ink); font-size: 1.15rem; line-height: 1; margin-bottom: 4px; letter-spacing: -0.01em; }
        .cal-year { color: var(--muted); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em; }
        .cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 8px; padding: 0 4px; }
        .cal-wk { text-align: center; font-size: 0.68rem; color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; padding: 8px 0 6px; }
        .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; padding: 0 2px; }
        .cal-day { position: relative; aspect-ratio: 1 / 1; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; cursor: pointer; transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); color: var(--ink); user-select: none; background: white; border: 1.5px solid transparent; }
        .cal-day span { pointer-events: none; display: inline-flex; align-items: center; justify-content: center; width: 100%; height: 100%; border-radius: 14px; }
        .cal-day.empty { visibility: hidden; pointer-events: none; }
        .cal-day.disabled { color: #cbd5e1; cursor: not-allowed; background: transparent; }
        .cal-day.today span { border: 1.5px solid var(--primary); color: var(--primary); }
        .cal-day.has-slots::after { content: ""; position: absolute; bottom: 7px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--success); opacity: 0.9; }
        .cal-day.has-slots.disabled::after { display: none; }
        .cal-day.has-slots.selected::after { background: white; }
        .cal-day:not(.disabled):not(.empty):hover { transform: translateY(-3px); background: var(--primary-lt); }
        .cal-day.selected { background: var(--grad); color: white; box-shadow: 0 12px 26px -8px rgba(99, 102, 241, 0.55); border-color: transparent; }
        .cal-day.selected span { color: white; border: none; }
        .cal-day.selected.today span { border: none; }
        .time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 8px; animation: tgIn 0.45s cubic-bezier(0.16, 1, 0.3, 1); transform-origin: top; }
        @keyframes tgIn { from { opacity: 0; transform: translateY(10px) scaleY(0.96); } to { opacity: 1; transform: translateY(0) scaleY(1); } }
        .time-pill { background: white; border: 2px solid var(--border); padding: 15px 10px; text-align: center; border-radius: 16px; font-weight: 800; font-size: 0.9rem; cursor: pointer; transition: all 0.2s; }
        .time-pill.active { background: var(--grad); color: white; border-color: transparent; transform: scale(1.05); box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.3); }
        .biz-card { background: white; padding: 25px; border-radius: 30px; border: 1px solid var(--border); margin-bottom: 20px; cursor: pointer; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); display: flex; align-items: flex-start; gap: 16px; text-align: left; box-shadow: var(--shadow); position: relative; min-width: 0; }
        .biz-card-official { border: 2px solid transparent; background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #6366f1, #a855f7, #ec4899) border-box; box-shadow: 0 15px 35px -10px rgba(99, 102, 241, 0.25); }
        .biz-official-badge { display: inline-flex; align-items: center; gap: 5px; background: linear-gradient(135deg, #6366f1, #a855f7); color: white; font-size: 0.68rem; font-weight: 800; padding: 3px 9px; border-radius: 999px; margin-left: 8px; vertical-align: middle; letter-spacing: 0.03em; text-transform: uppercase; white-space: nowrap; box-shadow: 0 4px 10px rgba(99, 102, 241, 0.35); }
        .biz-official-badge i { font-size: 0.8rem; }
        .plan-card { background: white; border: 2px solid var(--border); border-radius: 24px; padding: 28px 24px; cursor: pointer; transition: 0.3s; position: relative; display: flex; flex-direction: column; gap: 14px; }
        .plan-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: 0 20px 40px -15px rgba(99,102,241,0.25); }
        .plan-card.featured { border: 2px solid transparent; background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #6366f1, #a855f7, #ec4899) border-box; box-shadow: 0 20px 45px -15px rgba(99,102,241,0.3); }
        .plan-card .plan-featured-tag { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:linear-gradient(135deg,#6366f1,#a855f7); color:white; font-size:0.7rem; font-weight:800; padding:4px 14px; border-radius:999px; text-transform:uppercase; letter-spacing:0.05em; }
        .plan-card h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--ink); margin: 0; }
        .plan-card .plan-price { font-size: 2.2rem; font-weight: 900; color: var(--primary); font-family: var(--font-head); line-height: 1; }
        .plan-card .plan-price small { font-size: 0.9rem; color: var(--muted); font-weight: 600; }
        .plan-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
        .plan-card ul li { font-size: 0.9rem; color: var(--ink); display: flex; align-items: flex-start; gap: 8px; }
        .plan-card ul li i { color: var(--primary); margin-top: 3px; }
        .biz-card:hover { border-color: var(--primary); transform: translateY(-8px); box-shadow: 0 25px 50px -15px rgba(0,0,0,0.12); }
        .biz-map-btn { position:absolute; bottom:14px; right:14px; width:34px; height:34px; border-radius:12px; border:1px solid var(--border); background: white; color: var(--primary); display:flex; align-items:center; justify-content:center; cursor:pointer; transition: 0.25s; box-shadow: 0 6px 14px rgba(0,0,0,0.06); }
        .biz-map-btn:hover { background: var(--primary-lt); transform: translateY(-2px); }
        .biz-logo-small { width: 92px; height: 92px; border-radius: 26px; object-fit: cover; border: 4px solid var(--primary-lt); flex-shrink: 0; box-shadow: 0 12px 26px rgba(0,0,0,0.08); }
        .biz-info-text { min-width: 0; flex: 1; padding-right: 52px; }
        .biz-info-text h4 { font-size: 1.2rem; color: var(--ink); margin-bottom: 5px; font-family: var(--font-head); font-weight: 800; line-height: 1.15; white-space: normal; word-break: normal; overflow-wrap: break-word; }
        .biz-info-text p { font-size: 0.88rem; color: var(--muted); word-break: normal; overflow-wrap: break-word; }
        .biz-title-row { display: flex; align-items: baseline; gap: 10px; min-width: 0; }
        .biz-stars { display: inline-flex; align-items: baseline; gap: 2px; flex-shrink: 0; }
        .biz-stars i { font-size: 0.72rem; line-height: 1; }
        .biz-rating-count { font-size: 0.65rem; color: var(--muted); font-weight: 800; margin-left: 6px; }
        .biz-desc { margin-top: 6px; color: var(--muted); font-size: 0.78rem; font-weight: 700; line-height: 1.25; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .badge { font-size: 0.7rem; padding: 5px 12px; border-radius: 50px; color: white; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
        .card { background: white; padding: 25px; border-radius: 24px; border: 1px solid var(--border); margin-bottom: 25px; box-shadow: var(--shadow); transition: all 0.3s; }
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-thumb { background: rgba(99, 102, 241, 0.2); border-radius: 10px; }
        .modal-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5); display: flex; align-items: center; justify-content: center; z-index: 20000; animation: fadeIn 0.3s ease-out; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        .modal-content { background: white; border-radius: 28px; padding: 32px; max-width: 380px; width: 90%; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
        @keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

        @media (max-width: 520px) {
            .biz-card { padding: 14px; gap: 10px; border-radius: 22px; }
            .biz-logo-small { width: 64px; height: 64px; border-radius: 18px; border-width: 3px; }
            .biz-info-text { padding-right: 38px; }
            .biz-info-text h4 { font-size: 1rem; }
            .biz-info-text p { font-size: 0.8rem; }
            .biz-title-row { flex-direction: column; align-items: flex-start; gap: 4px; }
            .biz-stars i { font-size: 0.65rem; }
            .biz-rating-count { font-size: 0.58rem; }
            .biz-desc { font-size: 0.72rem; }
            .biz-map-btn { bottom: 10px; right: 10px; width: 30px; height: 30px; border-radius: 10px; font-size: 0.8rem; }

            .hdr { padding: 14px 18px; gap: 10px; }
            .hdr-back { width: 36px; height: 36px; border-radius: 12px; font-size: 1rem; }
            .hdr-title h2 { font-size: 1.15rem; }

            .content { padding: 18px; }
            .content h3 { font-size: 1.3rem !important; margin-bottom: 14px !important; }

            .steps { padding: 14px 35px; }
            .step-dot { width: 28px; height: 28px; font-size: 0.75rem; }
            .step-dot:not(:last-child)::after { right: -38px; width: 24px; }

            .svc-grid { padding: 14px; gap: 10px; }
            .svc-card { padding: 10px; gap: 10px; border-radius: 20px; }
            .svc-img { width: 80px; height: 80px; border-radius: 14px; }
            .svc-name { font-size: 0.88rem; }
            .svc-desc { font-size: 0.74rem; margin-bottom: 6px; }
            .svc-price { font-size: 0.95rem; }
            .svc-check { width: 24px; height: 24px; font-size: 12px; top: 8px; right: 8px; }

            .date-scroll { gap: 8px; padding: 8px 4px 14px; }
            .date-card { flex: 0 0 90px; padding: 14px 8px; border-radius: 20px; }

            .booking-calendar { padding: 14px 10px 16px; border-radius: 20px; margin-bottom: 18px; }
            .cal-nav { padding: 0 4px; margin-bottom: 12px; }
            .cal-nav-btn { width: 34px; height: 34px; border-radius: 12px; font-size: 0.9rem; }
            .cal-month { font-size: 1rem; }
            .cal-year { font-size: 0.65rem; }
            .cal-weekdays { margin-bottom: 6px; padding: 0 2px; gap: 2px; }
            .cal-wk { padding: 6px 0 4px; font-size: 0.62rem; }
            .cal-grid { gap: 4px; padding: 0; }
            .cal-day { border-radius: 13px; font-size: 0.82rem; }
            .cal-day.has-slots::after { bottom: 6px; width: 4px; height: 4px; }
            .cal-day span { border-radius: 11px; }

            .time-grid { gap: 8px; }
            .time-pill { padding: 12px 6px; border-radius: 14px; font-size: 0.82rem; }

            .field { margin-bottom: 18px; }
            .field label { font-size: 0.7rem; margin-bottom: 8px; }
            .field input, .field select { padding: 13px 16px; border-radius: 16px; font-size: 0.92rem; }

            .btn { padding: 14px 22px; border-radius: 16px; font-size: 0.85rem; gap: 8px; letter-spacing: 0.06em; }
            .action-bar { padding: 16px 18px; gap: 10px; }

            .card { padding: 20px; border-radius: 20px; margin-bottom: 18px; }

            #sWelcome h1 { font-size: 2.4rem !important; }
            #sWelcome p { font-size: 1rem !important; }
            #resCode { font-size: 1.8rem !important; padding: 18px !important; border-radius: 20px !important; }
        }

        .be-service-wrap { grid-column: 1/-1; margin-bottom: 18px; }
        .be-service-track { display: flex; flex-direction: column; gap: 14px; width: 100%; }
        .be-service-track.promo-group { flex-direction: row; gap: 0; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
        .be-service-track.promo-group::-webkit-scrollbar { display: none; }
        .be-service-card { width: 100%; max-width: 100%; box-sizing: border-box; position: relative; border-radius: 22px; overflow: hidden; background: white; border: 2px solid transparent; box-shadow: var(--shadow); cursor: pointer; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
        .be-service-track.promo-group .be-service-card { flex: 0 0 100%; scroll-snap-align: start; }
        .be-service-card:hover { transform: translateY(-1px); }
        .be-service-card.sel { border-color: var(--primary); background: var(--primary-lt); box-shadow: 0 15px 35px -8px rgba(99, 102, 241, 0.25); }
        .be-service-card .svc-check { position: absolute; top: 12px; right: 12px; background: var(--grad); color: white; border-radius: 50%; width: 30px; height: 30px; display: none; align-items: center; justify-content: center; font-size: 15px; box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.5); z-index: 10; border: 2px solid white; }
        .be-service-card.sel .svc-check { display: flex; animation: checkPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .be-service-card.promo-style.sel { border-color: #ec4899; background: linear-gradient(135deg, rgba(236,72,153,0.08), rgba(139,92,246,0.08)); box-shadow: 0 15px 35px -8px rgba(236, 72, 153, 0.3); }
        .be-service-card.promo-style .svc-check { background: linear-gradient(135deg, #ec4899, #8b5cf6); box-shadow: 0 10px 20px -5px rgba(236, 72, 153, 0.5); }
        .be-service-card-row { display: flex; align-items: stretch; min-width: 0; }
        .be-service-media { background: #f1f5f9; overflow: hidden; position: relative; }
        .be-service-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .be-service-media-promo { width: 100%; height: 190px; }
        .be-service-media-product { width: 118px; min-width: 118px; height: 118px; border-right: 1px solid var(--border); }
        .be-service-caption { min-width: 0; display: flex; flex-direction: column; justify-content: space-between; }
        .be-service-caption-promo { padding: 14px 16px 16px; min-height: 128px; }
        .be-service-caption-product { padding: 14px 14px 12px; flex: 1; min-height: 118px; }
        .be-service-title { font-weight: 900; font-size: 1rem; color: var(--ink); line-height: 1.15; }
        .be-service-title-promo {
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 12px;
            z-index: 2;
            color: #fff;
            font-size: clamp(1.2rem, 1rem + 1vw, 1.6rem);
            line-height: 1.1;
            text-shadow: 0 2px 6px rgba(107, 114, 128, 0.9);
            pointer-events: none;
        }
        .be-service-media-promo::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 44%;
            background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.7) 100%);
            pointer-events: none;
        }
        .be-service-desc { margin-top: 6px; font-size: 0.84rem; color: var(--muted); line-height: 1.35; white-space: normal; overflow: visible; display: block; }
        .be-service-note { margin-top: 6px; font-size: 0.74rem; color: var(--muted); font-weight: 800; line-height: 1.35; }
        .be-service-note i { color: var(--primary); margin-right: 4px; }
        .be-service-meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: 12px; }
        .be-service-duration { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--muted); font-weight: 800; }
        .be-service-duration i { color: var(--primary); }
        .be-service-duration-empty { visibility: hidden; }
        .be-service-price { flex-shrink: 0; font-weight: 900; font-size: 1.1rem; color: var(--primary); text-align: right; }
        .be-service-card.product-style { min-height: 118px; }
        .be-service-card.promo-style { min-height: 318px; }
        .be-service-dots { display: flex; justify-content: center; gap: 6px; padding: 10px 0 2px; }
        .be-service-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--border); transition: 0.25s; cursor: pointer; }
        .be-service-dot.active { width: 20px; background: var(--primary); }
        @media (max-width: 480px) {
            .be-service-track { gap: 12px; }
            .be-service-media-promo { height: 190px; }
            .be-service-media-product { width: 104px; min-width: 104px; height: 104px; }
            .be-service-caption-promo { padding: 13px 14px 14px; }
            .be-service-caption-product { padding: 12px; min-height: 104px; }
            .be-service-title { font-size: 0.98rem; }
            .be-service-title-promo { left: 12px; right: 12px; bottom: 10px; font-size: clamp(1.1rem, 0.98rem + 1vw, 1.35rem); }
            .be-service-desc { font-size: 0.82rem; }
            .be-service-price { font-size: 1.02rem; }
        }

        .be-cart { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 16px; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08); margin-bottom: 24px; position: sticky; top: 14px; z-index: 50; transition: all 0.3s; }
        .be-cart-row { display:flex; align-items:center; justify-content:space-between; gap:12px; cursor: pointer; -webkit-tap-highlight-color: transparent; }
        .be-cart-title { font-weight: 900; color: var(--ink); font-size: 1rem; display:flex; align-items:center; gap:8px; }
        .be-cart-title .be-cart-icon { color: white; background: var(--grad); width: 32px; height: 32px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; box-shadow: 0 4px 10px -2px rgba(99, 102, 241, 0.4); }
        .be-cart-total { font-weight: 900; color: var(--primary); font-size: 1.1rem; background: var(--primary-lt); padding: 4px 12px; border-radius: 999px; display: flex; align-items: center; gap: 8px; }
        .be-cart-toggle { font-size: 0.8rem; color: var(--primary); transition: transform 0.3s; }
        .be-cart.expanded .be-cart-toggle { transform: rotate(180deg); }
        .be-cart-item-list { display: none; flex-direction: column; gap: 10px; margin-top: 14px; border-top: 1px dashed var(--border); padding-top: 14px; }
        .be-cart.expanded .be-cart-item-list { display: flex; animation: slideDown 0.3s ease forwards; }
        @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
        .be-cart-item { display: flex; justify-content: space-between; align-items: center; font-size: 0.88rem; font-weight: 700; color: var(--ink); background: #f8fafc; padding: 8px 12px; border-radius: 12px; border: 1px solid var(--border); }
        .be-cart-item-rm { background: white; color: #ef4444; border: 1px solid #fca5a5; width: 26px; height: 26px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; transition: 0.2s; box-shadow: 0 2px 4px rgba(239, 68, 68, 0.1); padding: 0; }
        .be-cart-item-rm:hover { background: #ef4444; color: white; border-color: #ef4444; }
        .be-cart-item-price { color: var(--primary); font-weight: 900; }

        .hdr-cart-popover { position: fixed; z-index: 9999; background: var(--surface); border: 1px solid var(--border); padding: 0 16px 16px 16px; margin: 0; box-shadow: 0 24px 60px -20px rgba(15, 23, 42, 0.32); border-radius: 0 0 26px 26px; animation: slideDownPop 0.22s cubic-bezier(0.16, 1, 0.3, 1); box-sizing: border-box; }
        @keyframes slideDownPop { from { opacity: 0; transform: translateY(-6px) scale(0.99); } to { opacity: 1; transform: translateY(0) scale(1); } }
        .hdr-cart-popover > .be-cart { border-top: 1px dashed var(--border); border-radius: 0 0 22px 22px; }

        .svc-card-promo { border: 2px solid transparent !important; background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #ec4899, #8b5cf6, #6366f1) border-box !important; position: relative; }
        .svc-card-promo.sel { box-shadow: 0 15px 35px -8px rgba(236, 72, 153, 0.35) !important; }
        .svc-promo-badge { position: absolute; top: 10px; left: 10px; z-index: 3; background: linear-gradient(135deg, #ec4899, #8b5cf6); color: white; font-size: 0.65rem; font-weight: 900; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.06em; box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4); }

/* === Modal "Antes de reservar" — compacto y estilizado === */
.swal2-popup.brc-popup { border-radius: 24px !important; max-width: 420px !important; width: 92vw !important; padding: 0 !important; overflow: hidden; }
.swal2-popup.brc-popup .swal2-html-container { padding: 0 !important; margin: 0 !important; }
.brc-modal { font-family: var(--font-body, 'DM Sans', sans-serif); }
.brc-head { background: var(--grad); color: white; padding: 18px 20px 14px; text-align: center; position: relative; }
.brc-head-icon { width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,0.18); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 8px; backdrop-filter: blur(6px); }
.brc-head-icon i { font-size: 1.25rem; color: white; }
.brc-head-title { font-family: var(--font-head, 'Playfair Display', serif); font-size: 1.2rem; font-weight: 800; letter-spacing: 0.01em; }
.brc-head-sub { font-size: 0.7rem; font-weight: 800; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.12em; margin-top: 2px; }
.brc-lead { padding: 14px 18px 6px; color: var(--ink); font-weight: 700; font-size: 0.88rem; line-height: 1.35; text-align: center; }
.brc-lead b { color: var(--primary); font-weight: 900; }
.brc-sms-pill { margin: 6px 18px 0; padding: 9px 12px; background: var(--primary-lt, #f0f9ff); color: var(--primary); border: 1px solid color-mix(in srgb, var(--primary) 22%, transparent); border-radius: 12px; font-weight: 900; font-size: 0.82rem; text-align: center; letter-spacing: 0.02em; }
.brc-sms-pill i { margin-right: 6px; opacity: 0.85; }
.brc-list { padding: 10px 16px 4px; display: flex; flex-direction: column; gap: 6px; }
.brc-item { display: flex; align-items: center; gap: 10px; background: #f8fafc; border: 1px solid var(--border); border-radius: 12px; padding: 9px 11px; color: var(--ink); font-weight: 700; font-size: 0.78rem; line-height: 1.3; }
.brc-item b { font-weight: 900; }
.brc-num { flex-shrink: 0; width: 22px; height: 22px; border-radius: 999px; background: var(--grad); color: white; font-weight: 900; font-size: 0.72rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px -4px rgba(99,102,241,0.5); }
.swal2-popup.brc-popup .brc-actions { padding: 12px 16px 16px !important; gap: 8px !important; margin: 0 !important; }
.brc-btn-ok, .brc-btn-cancel { flex: 1; padding: 12px 16px !important; border-radius: 14px !important; font-weight: 900 !important; font-size: 0.88rem !important; border: none !important; cursor: pointer; transition: all .2s ease; }
.brc-btn-ok { background: var(--grad) !important; color: white !important; box-shadow: 0 8px 20px -8px rgba(99,102,241,0.55) !important; }
.brc-btn-ok:hover { transform: translateY(-1px); box-shadow: 0 12px 24px -8px rgba(99,102,241,0.65) !important; }
.brc-btn-cancel { background: #f1f5f9 !important; color: var(--ink) !important; }
.brc-btn-cancel:hover { background: #e2e8f0 !important; }
@media (max-height: 640px) {
    .brc-head { padding: 12px 18px 10px; }
    .brc-head-icon { width: 38px; height: 38px; margin-bottom: 4px; }
    .brc-head-icon i { font-size: 1rem; }
    .brc-head-title { font-size: 1.05rem; }
    .brc-lead { padding: 10px 16px 4px; font-size: 0.82rem; }
    .brc-list { padding: 8px 14px 2px; }
    .brc-item { padding: 7px 10px; font-size: 0.74rem; }
}
