/* Halpit InstaCoach Styles - Adapted from feedback form */

/* ── Page entry animation (triggered when arriving from landing page) ── */
@keyframes halpit-slide-in {
  from { transform: translateY(48px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

body.halpit-entry .card,
body.halpit-entry .halpit-view {
  animation: halpit-slide-in 400ms cubic-bezier(0.4, 0, 0.2, 1) both;
}
/* *,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
} */

body {
    font-family: 'Poppins', sans-serif;
    background: #f0f2f7;
    padding: 10vh 16px 4vh;
}

.card {
    background: #fff;
    max-width: 540px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.09);
    margin-bottom: 10%;
}

/* ── App wrapper: centres the card on desktop, fills width on mobile ── */
.halpit-view {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    padding: 24px 16px;
}

@media (max-width: 560px) {
    body {
        font-family: 'Poppins', sans-serif;
        background: #f0f2f7;
        padding: 6vh 6px 3vh;
    }
    .halpit-view {
        padding: 0;
    }

    .card {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.09);
        
    }
}

.header {
    background: #0d1a3a;
    padding: 22px 18px;
}


.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    text-decoration: none;
}

.logo-by-pill {
    display: inline-flex;
    align-items: center;
    background: #0238a8;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding: 3px 10px;
    border-radius: 20px;
    line-height: 1.4;
    white-space: nowrap;
    
}

.body {
    padding: 32px 36px 36px;
}

.heading {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0d1a3a;
    margin-bottom: 4px;
}

.subheading {
    font-size: 13.5px;
    color: #6b738f;
    /* margin-bottom: 28px; */
}

.q-block {
    margin-bottom: 24px;
}

.q-label {
    font-size: 13px;
    font-weight: 500;
    color: #0d1a3a;
    margin-bottom: 10px;
    display: block;
}

.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid #dde1f0;
    font-size: 13px;
    color: #5a6480;
    cursor: pointer;
    background: #fff;
    transition: all 0.12s;
    user-select: none;
}

.chip:hover {
    border-color: #4f7fff;
    color: #0d1a3a;
}

.chip.selected {
    background: #0d1a3a;
    color: #fff;
    border-color: #0d1a3a;
}

b{
    font-weight: bold;
}
.submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: #4f7fff;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;

}

.submit-btn:hover {
    opacity: 0.88;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.divider {
    height: 1px;
    background: #f0f2f7;
    margin: 24px 0;
}

/* Additional styles for booking */
.slot-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slot {
    padding: 12px;
    border: 1px solid #dde1f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.12s;
}

.slot.available {
    background: #fff;
}

.slot.available:hover {
    border-color: #4f7fff;
}

.slot.unavailable {
    background: #f7f9ff;
    color: #a0a8c0;
    cursor: not-allowed;
}

.slot.selected {
    background: #0d1a3a;
    color: #fff;
    border-color: #0d1a3a;
}

.price-display {
    font-size: 16px;
    font-weight: 600;
    color: #0d1a3a;
    margin: 16px 0;
    text-align: center;
}

/* Login form */
input {
    width: 100%;
    padding: 12px;
    border: 1px solid #dde1f0;
    border-radius: 8px;
    font-size: 14px;
}

input:focus {
    outline: none;
    border-color: #4f7fff;
}

#message {
    margin-top: 16px;
    font-size: 14px;
}

/* Calendar View Styles */
.calendar-view {
    margin-top: 24px;
}

.calendar-view h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0d1a3a;
    margin-bottom: 16px;
    text-align: center;
}

.calendar-dates {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.calendar-dates::-webkit-scrollbar {
    display: none;
}

.calendar-date {
    flex: 0 0 80px;
    text-align: center;
    padding: 16px 8px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.calendar-date.available {
    background: #f8f9ff;
    border-color: #4f7fff;
}

.calendar-date.available:hover {
    background: #4f7fff;
    color: white;
}

.calendar-date.unavailable {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.calendar-date.selected {
    background: #4f7fff;
    color: white;
}

.day-name {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.day-num {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.month-name {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.8;
}

.slots-count {
    font-size: 10px;
    margin-top: 4px;
    opacity: 0.7;
}

/* Time Slots View */
.time-slots-view {
    margin-top: 24px;
}

.time-slots-view h3 {
    font-size: 18px;
    color: #0d1a3a;
    margin-bottom: 16px;
    text-align: center;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.time-slot {
    padding: 12px 16px;
    border: 2px solid #dde1f0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    font-size: 0.8em !important;
}

.time-slot.available:hover {
    border-color: #4f7fff;
    background: #4f7fff;
    color: white;
}

.time-slot.selected {
    border-color: #4f7fff;
    background: #4f7fff;
    color: white;
}

.time-slot.unavailable {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.back-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease;
    margin-top: 16px;
}

.back-btn:hover {
    background: #5a6268;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .calendar-dates {
        gap: 8px;
    }

    .calendar-date {
        flex: 0 0 70px;
        padding: 12px 6px;
        min-height: 70px;
    }

    .time-slots {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 8px;
    }

    .header {
        background: #0d1a3a;
        gap: 10px;
    }
    .header-left {
        display: flex;
        align-items: center;
        gap: 15px;
    }
}

/* ── Login form inputs ───────────────────────────────────────────── */
#halpit-phone {
    font-size: 16px;
    letter-spacing: 0.5px;
    box-sizing: border-box;
}

/* ── 4-box OTP input ─────────────────────────────────────────────── */
.otp-boxes-wrap {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 28px 0 20px;
}

.otp-box {
    width: 60px;
    height: 64px;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #0d1a3a;
    border: 2px solid #dde1f0;
    border-radius: 12px;
    background: #f8f9ff;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    caret-color: transparent;
    /* Override the global `input` width rule */
    width: 60px !important;
    padding: 0;
}

.otp-box:focus {
    border-color: #4f7fff;
    box-shadow: 0 0 0 3px rgba(79, 127, 255, 0.15);
    background: #fff;
}

.otp-box.otp-box--filled {
    border-color: #0d1a3a;
    background: #fff;
}

/* ── OTP meta (timer + resend) ───────────────────────────────────── */
.otp-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 13px;
}

.otp-timer {
    color: #6b738f;
}

.otp-timer strong {
    font-variant-numeric: tabular-nums;
}

.otp-timer--red,
.otp-timer--red strong {
    color: #e53935;
}

.otp-resend {
    background: none;
    border: none;
    color: #4f7fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.otp-resend:disabled {
    color: #a0a8c0;
    cursor: not-allowed;
    text-decoration: none;
}

/* ── Generic message / change-number link ────────────────────────── */
.halpit-msg {
    margin-top: 12px;
    font-size: 13.5px;
    min-height: 20px;
    text-align: center;
}

.halpit-text-btn {
    display: block;
    background: none;
    border: none;
    color: #6b738f;
    font-size: 13px;
    cursor: pointer;
    margin: 16px auto 0;
    text-decoration: underline;
    text-underline-offset: 2px;
    padding: 0;
}

.halpit-text-btn:hover {
    color: #0d1a3a;
}

/* ── Logout button (header, top-right) ───────────────────────────── */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 11px;
    padding: 5px 9px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.logout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ic-header-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s;
    padding: 0;
}

.ic-header-icon-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ic-header-icon-btn img {
    display: block;
    width: 22px;
    height: 22px;
}

@media (max-width: 480px) {
    .otp-box {
        width: 52px !important;
        height: 56px;
        font-size: 22px;
    }
    .otp-boxes-wrap {
        gap: 8px;
    }
}

/* ════════════════════════════════════════════════════════════════════
   BOOKING STEP MACHINE — new styles (Steps 1-8)
   ════════════════════════════════════════════════════════════════════ */

/* ── Progress bar ────────────────────────────────────────────────── */
.progress-bar-wrap {
    background: #eef0f7;
    height: 4px;
    width: 100%;
}

.progress-bar {
    height: 4px;
    background: #4f7fff;
    transition: width 0.35s ease;
    border-radius: 0 4px 4px 0;
}

.step-counter {
    font-size: 11.5px;
    font-weight: 600;
    color: #6b738f;
    text-align: right;
    padding: 8px 36px 0;
    letter-spacing: 0.2px;
}

/* ── Step containers ─────────────────────────────────────────────── */
.step {
    animation: stepFadeIn 0.2s ease;
}

@keyframes stepFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Nav row (Back | Next) ───────────────────────────────────────── */
.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
    gap: 12px;
}

.nav-row > span {
    /* placeholder to push Next to the right on step 1 */
    flex: 1;
}

.next-btn {
    flex: 1;
    padding: 13px 20px;
    border-radius: 12px;
    background: #4f7fff;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s;
    text-align: center;
}

.next-btn:hover  { opacity: 0.88; }
.next-btn:disabled { background: #ccc; cursor: not-allowed; }

/* Override global .back-btn for step-navigation context */
.nav-row .back-btn {
    flex: 1;
    padding: 13px 20px;
    border-radius: 12px;
    background: transparent;
    color: #6b738f;
    border: 1.5px solid #dde1f0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.15s, color 0.15s;
    margin-top: 0;
}

.nav-row .back-btn:hover {
    border-color: #0d1a3a;
    color: #0d1a3a;
    background: transparent;
}

/* Inline back link inside step 7 calendar/time views */
.back-btn-inline {
    background: none;
    border: none;
    color: #4f7fff;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-top: 12px;
    display: inline-block;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.back-btn-inline:hover { color: #0d1a3a; }

/* ── Rebooking coach toggle (step 7) ─────────────────────────────── */
.rebooking-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.rebooking-pill {
    display: inline-flex;
    background: #f0f2f7;
    border-radius: 100px;
    padding: 3px;
    gap: 2px;
}

.rebooking-option {
    padding: 7px 14px;
    border-radius: 100px;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    min-height: 36px;
    line-height: 1.2;
    -webkit-tap-highlight-color: transparent;
}

.rebooking-option.active {
    background: #0d1a3a;
    color: #fff;
    box-shadow: 0 1px 4px rgba(13, 26, 58, 0.18);
}

.rebooking-option:not(.active):hover {
    color: #0d1a3a;
}

@media (max-width: 480px) {
    .rebooking-option {
        font-size: 11px;
        padding: 6px 10px;
        min-height: 34px;
    }
}

/* ── Calendar skeleton shimmer (toggle switch loading state) ─────── */
.calendar-skeleton {
    display: flex;
    gap: 10px;
}

.calendar-skeleton-card {
    flex: 1;
    height: 90px;
    border-radius: 12px;
    background: linear-gradient(90deg, #e8eaf0 25%, #f5f6fa 50%, #e8eaf0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.2s ease-in-out infinite;
}

@keyframes skeleton-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Chip sizing bump for question steps ─────────────────────────── */
.step .chip-group {
    gap: 10px;
    margin-bottom: 8px;
}

.step .chip {
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
}

/* ── Step 1: Duration box cards ─────────────────────────────────── */

/* Wrapper enables the right-edge fade without clipping the scroll */
.duration-scroll-wrap {
    position: relative;
    /* Extend slightly so cards don't clip against the body padding */
    margin-left: -4px;
    margin-right: -4px;
}

/* Right-edge fade gradient — hints at horizontal scroll */
.duration-scroll-wrap::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    bottom: 4px; /* match padding-bottom of the chip-group */
    width: 52px;
    background: linear-gradient(to right, transparent, #fff 85%);
    pointer-events: none;
    border-radius: 0 16px 16px 0;
}

#ic-step-duration .chip-group--duration {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;          /* no wrapping — single row */
    overflow-x: auto;
    gap: 12px;
    padding: 16px 4px 8px;      /* top gives space for popular badge; bottom for scrollbar */
    scrollbar-width: none;      /* Firefox */
    -webkit-overflow-scrolling: touch;
}

#ic-step-duration .chip-group--duration::-webkit-scrollbar {
    display: none;              /* Chrome / Safari */
}

#ic-step-duration .duration-card {
    position: relative;
    border-radius: 12px;
    padding: 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    border-width: 1.5px;
    flex-shrink: 0;             /* cards keep their natural width — don't compress */
    box-sizing: border-box;
    min-width: 130px;           /* minimum so cards stay legible on small screens */
}

#ic-step-duration .duration-card.selected {
    background: #eef3ff;
    border-color: #4f7fff;
    color: inherit;
}

/* ── Pack features: excluded divider (inset, label on line) ─────── */
.pack-features__divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0 14px;
}

.pack-features__divider::before{
    content: '';
    flex: 1;
    height: 1px;
    background: #e8ecf4;
}

.pack-features__divider-label {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #8896b3;
    white-space: nowrap;
}

.duration-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #0d1a3a;
}

.duration-card__pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.duration-card__price {
    font-size: 20px;
    font-weight: 700;
    color: #0d1a3a;
}

.duration-card__original {
    font-size: 14px;
    color: #a0a8c0;
    text-decoration: line-through;
}

.duration-card__discount {
    display: flex;
    align-items: center;
    gap: 5px;
}

.duration-card__offer-icon {
    width: 16px;
    height: 16px;
    display: block;
}

.duration-card__off {
    font-size: 13px;
    font-weight: 600;
    color: #065f46;
}

/* ── Pack features panel (Step 1) ───────────────────────────────── */

/* Outer wrapper: vertical stack of cards, slide-in animation */
.pack-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    /* Slide-in: starts collapsed + invisible */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                opacity    0.25s ease,
                margin-top 0.25s ease;
    pointer-events: none;
}

.pack-features--visible {
    max-height: 800px;
    opacity: 1;
    pointer-events: auto;
}

/* ── Card 1: single white card — included + excluded list ── */
.pack-features__inc-exc-card {
    background: #ffffff;
    border: 1.5px solid #e8ecf4;
    border-radius: 16px;
    padding: 0;          /* padding moved to inner scroll div so gradient overlays correctly */
    position: relative;
    overflow: hidden;    /* clips gradient to the card's border-radius */
}
/* Bottom fade gradient — stays pinned; content scrolls beneath it */
.pack-features__inc-exc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 44px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.95) 70%, #ffffff);
    pointer-events: none;
    z-index: 1;
}
/* Inner scroll container — owns the padding and scroll behaviour */
.pack-features__inc-exc-scroll {
    max-height: 300px;
    overflow-y: scroll;
    padding: 18px 20px;
    scrollbar-width: thin;
    scrollbar-color: #c4cde0 #eef0f7;  /* thumb / track — track always visible */
}
.pack-features__inc-exc-scroll::-webkit-scrollbar {
    width: 4px;
}
/* Visible track = always-on affordance on Mac Chrome */
.pack-features__inc-exc-scroll::-webkit-scrollbar-track {
    background: #eef0f7;
    border-radius: 4px;
}
.pack-features__inc-exc-scroll::-webkit-scrollbar-thumb {
    background: #c4cde0;
    border-radius: 4px;
}

/* ── Card 2: dark navy card — suitable for ─────────────── */
.pack-features__suitable-card {
    background: #0d1a3a;
    border-radius: 16px;
    padding: 18px 20px;
}

/* ── Shared heading ─────────────────────────────────────── */
.pack-features__heading {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 0 0 14px;
}

/* Card 1 heading: muted grey (matches image "WHAT'S INCLUDED") */
.pack-features__heading--card1 {
    color: #8896b3;
}

/* Card 2 heading: lighter grey on dark bg */
.pack-features__heading--suitable {
    color: #6b7fa8;
}

/* ── Combined list (included + excluded items) ──────────── */
.pack-features__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pack-features__item {
    font-size: 14px;
    color: #0d1a3a;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
    font-weight: 500;
}
.pack-features__item--included::before,
.pack-features__item--excluded::before {
    margin-top: 2px; /* optical alignment with first line of text */
}
.pack-features__item-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.pack-features__item-text {
    display: block;
}
.pack-features__item-desc {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #8896b3;
    line-height: 1.4;
}

/* ── Included: green circle with white checkmark ────────── */
.pack-features__item--included::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #d1fae5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M3 7l3 3 5-5' stroke='%23059669' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px 15px;
}

/* ── Excluded: pink circle with red cross ───────────────── */
.pack-features__item--excluded {
    color: #8896b3;
    font-weight: 400;
}

.pack-features__item--excluded::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fee2e2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M4.5 4.5l5 5M9.5 4.5l-5 5' stroke='%23ef4444' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px 15px;
}

/* ── Suitable for: pill tags on dark card ───────────────── */
.pack-features__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pack-features__pill {
    display: inline-flex;
    align-items: center;
    /* background: rgba(255, 255, 255, 0.10); */
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #e8ecf4;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 500;
    border-radius: 11px;
    padding: 6px 16px;
    white-space: nowrap;
}

.ic-nav{
    margin-top:0;
}

/* ── Text inputs & textarea ──────────────────────────────────────── */
.text-field {
    width: 100%;
    padding: 13px 14px;
    border: 1.5px solid #dde1f0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: #0d1a3a;
    background: #fafbff;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    resize: none;
    box-sizing: border-box;
}

.text-field::placeholder { color: #a0a8c0; }

.text-field:focus {
    border-color: #4f7fff;
    box-shadow: 0 0 0 3px rgba(79, 127, 255, 0.12);
    background: #fff;
}

/* ── Character counter ───────────────────────────────────────────── */
.char-count {
    font-size: 11.5px;
    color: #a0a8c0;
    text-align: right;
    margin-top: 5px;
    transition: color 0.15s;
}

.char-count--full {
    color: #e53935;
    font-weight: 600;
}

/* ── Inline field errors ─────────────────────────────────────────── */
.field-error {
    font-size: 12.5px;
    color: #e53935;
    min-height: 18px;
    margin-top: 6px;
}

/* ── Price display (step 6) ──────────────────────────────────────── */
#price-display {
    font-size: 15px;
    font-weight: 600;
    color: #0d1a3a;
    margin: 18px 0 0;
    text-align: center;
}

/* ── No-slots message ────────────────────────────────────────────── */
.no-slots {
    color: #6b738f;
    font-size: 13.5px;
    text-align: center;
    padding: 16px 0;
}

/* ── Review card (step 8) ────────────────────────────────────────── */
.review-card {
    border: 1.5px solid #eef0f7;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 8px;
}

.review-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 13px 18px;
    gap: 12px;
    border-bottom: 1px solid #f0f2f7;
}

.review-row:last-child { border-bottom: none; }

.review-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #6b738f;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.review-value {
    font-size: 14px;
    color: #0d1a3a;
    text-align: right;
    word-break: break-word;
}

.review-total {
    background: #f8f9ff;
}

.review-total .review-label,
.review-total .review-value {
    font-size: 15px;
    font-weight: 700;
    color: #0d1a3a;
}

/* ── Success modal ───────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 26, 58, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 9999;
}

.modal-box {
    background: #fff;
    border-radius: 20px;
    padding: 44px 36px 40px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 16px 60px rgba(0,0,0,0.18);
    animation: modalPop 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.88); }
    to   { opacity: 1; transform: scale(1); }
}

.modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #e8f0fe;
    color: #4f7fff;
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0d1a3a;
    margin-bottom: 10px;
}

.modal-body {
    font-size: 14px;
    color: #6b738f;
    line-height: 1.6;
    margin-bottom: 28px;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .step-counter { padding: 6px 20px 0; }

    .body { padding: 24px 20px 28px; }

    .step .chip { padding: 8px 14px; font-size: 14px; font-weight: 600;}

    .nav-row { gap: 8px; }

    .next-btn,
    .nav-row .back-btn { font-size: 13.5px; padding: 12px 14px; }

    .review-card { border-radius: 10px; }
    .review-row  { padding: 11px 14px; }

    .modal-box { padding: 36px 24px 32px; }
    .modal-icon { width: 54px; height: 54px; font-size: 26px; }
}

/* ════════════════════════════════════════════════════════════════════
   DASHBOARD — Post-login landing
   ════════════════════════════════════════════════════════════════════ */

.halpit-dashboard .dashboard-body {
    padding-top: 36px;
}

.dashboard-welcome {
    text-align: center;
    margin-bottom: 32px;
}

.dashboard-welcome .heading {
    font-size: 22px;
    margin-bottom: 6px;
}

/* ── CTA cards ───────────────────────────────────────────────────── */
.dashboard-ctas {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.dashboard-cta-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    border-radius: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    border: 1.5px solid transparent;
}

.dashboard-cta-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
    text-decoration: none;
}

.dashboard-cta-primary {
    background: #0d1a3a;
    border-color: #0d1a3a;
    color: #fff;
}

.dashboard-cta-primary:hover {
    background: #162347;
    color: #fff;
}

.dashboard-cta-secondary {
    background: #fff;
    border-color: #dde1f0;
    color: #0d1a3a;
}

.dashboard-cta-secondary:hover {
    border-color: #4f7fff;
    color: #0d1a3a;
}

.dashboard-cta-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.dashboard-cta-disabled:hover {
    transform: none;
    box-shadow: none;
}

span.dashboard-cta-disabled {
    pointer-events: auto;
}

.cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dashboard-cta-primary .cta-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.dashboard-cta-secondary .cta-icon {
    background: #f0f4ff;
    color: #4f7fff;
}

.cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.cta-desc {
    font-size: 13px;
    opacity: 0.72;
    line-height: 1.4;
}

.cta-arrow {
    flex-shrink: 0;
    opacity: 0.5;
}

.dashboard-cta-primary .cta-arrow { color: #fff; }
.dashboard-cta-secondary .cta-arrow { color: #0d1a3a; }

/* ── Service info strip ──────────────────────────────────────────── */
.dashboard-service-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 28px;
    border-top: 1px solid #f0f2f7;
}

.service-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: #6b738f;
}

.service-info-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #f0f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* ── Tooltip ─────────────────────────────────────────────────────── */
.halpit-tooltip {
    position: fixed;
    background: #0d1a3a;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
    z-index: 10000;
}

.halpit-tooltip--visible {
    opacity: 1;
}

/* ════════════════════════════════════════════════════════════════════
   SESSIONS — My Requests list
   ════════════════════════════════════════════════════════════════════ */

.halpit-sessions .sessions-body {
    padding-top: 28px;
}

.sessions-phone-hint {
    margin-bottom: 24px;
}

.masked-phone {
    font-family: 'Poppins', monospace;
    letter-spacing: 1px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    text-decoration: none;
    transition: background 0.15s;
    flex-shrink: 0;
}

.header-back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* ── Loading spinner ─────────────────────────────────────────────── */
.sessions-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 48px 0;
    color: #6b738f;
    font-size: 14px;
}

.sessions-spinner {
    width: 20px;
    height: 20px;
    border: 2.5px solid #eef0f7;
    border-top-color: #4f7fff;
    border-radius: 50%;
    animation: halpit-spin 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes halpit-spin {
    to { transform: rotate(360deg); }
}

/* ── Session cards list ──────────────────────────────────────────── */
.sessions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.session-card {
    background: #fff;
    border: 1.5px solid #eef0f7;
    border-radius: 16px;
    padding: 18px 20px;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
}

.session-card:hover,
.session-card:focus {
    border-color: #4f7fff;
    box-shadow: 0 4px 16px rgba(79, 127, 255, 0.10);
}

.session-card--closed {
    background: #fafbff;
    border-color: #eef0f7;
}

.session-card--closed:hover,
.session-card--closed:focus {
    border-color: #c4c9dc;
    box-shadow: none;
}

.session-card-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: space-between;
}

.session-chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 13px;
    border-radius: 100px;
    border: 1.5px solid #c5cdff;
    background: #f0f4ff;
    font-size: 13px;
    font-weight: 600;
    color: #3557d6;
    white-space: nowrap;
}

.session-card-date {
    font-size: 13.5px;
    color: #6b738f;
    flex: 1;
    max-width: fit-content;
}

/* ── Status badges ───────────────────────────────────────────────── */
.session-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 600;
    white-space: nowrap;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.badge-closed {
    background: #f5f5f5;
    color: #757575;
    border: 1px solid #e0e0e0;
}
.badge-closed .badge-dot     { background: #9e9e9e; }

.badge-cancelled {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #f8bbd0;
}
.badge-cancelled .badge-dot  { background: #c62828; }

.badge-paid {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}
.badge-paid .badge-dot        { background: #2e7d32; }

.badge-pending-pay {
    background: #f5f5f5;
    color: #757575;
    border: 1px solid #e0e0e0;
}
.badge-pending-pay .badge-dot { background: #9e9e9e; }

.badge-failed {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #f8bbd0;
}
.badge-failed .badge-dot      { background: #c62828; }

.badge-completed {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
}
.badge-completed .badge-dot   { background: #94a3b8; }


.session-card-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.session-closed-note {
    font-size: 13px;
    color: #9e9e9e;
    font-style: italic;
    margin-top: 4px;
}

/* ── Empty / error state ─────────────────────────────────────────── */
.sessions-empty {
    text-align: center;
    padding: 56px 24px;
}

.sessions-empty-icon {
    font-size: 44px;
    margin-bottom: 16px;
}

.sessions-empty-title {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #0d1a3a;
    margin-bottom: 8px;
}

.sessions-empty-desc {
    font-size: 14px;
    color: #6b738f;
    margin-bottom: 28px;
}

.sessions-book-btn {
    display: inline-block;
    text-decoration: none;
    padding: 13px 32px;
    border-radius: 12px;
    background: #4f7fff;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    width: auto;
    margin-top: 0;
}

.sessions-book-btn:hover {
    opacity: 0.88;
    color: #fff;
    text-decoration: none;
}

/* ════════════════════════════════════════════════════════════════════
   SESSIONS MODAL
   ════════════════════════════════════════════════════════════════════ */

.sessions-modal-overlay {
    align-items: flex-end;
    padding: 0;
}

@media (min-width: 600px) {
    .sessions-modal-overlay {
        align-items: center;
        padding: 24px;
    }
}

.sessions-modal-box {
    padding: 0;
    max-width: 480px;
    width: 100%;
    border-radius: 24px 24px 0 0;
    display: flex;
    flex-direction: column;
    max-height: 92vh;
    overflow: hidden;
    text-align: left;
}

@media (min-width: 600px) {
    .sessions-modal-box {
        border-radius: 20px;
        max-height: 85vh;
    }
}

.sessions-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0d1a3a;
    padding: 22px 24px 20px;
    flex-shrink: 0;
}

.sessions-modal-subtitle {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.sessions-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
    flex-shrink: 0;
}

.sessions-modal-close:hover { background: rgba(255, 255, 255, 0.2); }

.sessions-modal-content {
    overflow-y: auto;
    flex: 1;
    padding: 24px;
    -webkit-overflow-scrolling: touch;
}

.sessions-modal-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
}

.modal-error {
    color: #e53935;
    font-size: 14px;
    text-align: center;
    padding: 24px 0;
}

.sessions-modal-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 24px;
    border-top: 1px solid #f0f2f7;
    flex-shrink: 0;
}

body.halpit-modal-open {
    overflow: hidden;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .halpit-dashboard .dashboard-body,
    .halpit-sessions .sessions-body {
        padding: 24px 20px 28px;
    }

    .dashboard-welcome .heading { font-size: 19px; }
    .dashboard-cta-card { padding: 16px 14px; }
    .cta-icon { width: 44px; height: 44px; border-radius: 12px; }
    .cta-title { font-size: 15px; }
    .cta-desc { font-size: 12.5px; }

    .session-card { padding: 15px 16px; }
    .session-card-top { gap: 8px; }
}

/* ── Grouped slot sections (single-step time selection) ─────────── */
.slot-section-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #9ca3af;
    margin: 20px 0 16px;
}
.slot-section-divider::before,
.slot-section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.calendar-date .today-badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #f97316;
    margin-top: 3px;
}
.calendar-date.selected .today-badge {
    color: rgba(255,255,255,0.85);
}

.time-slots-grouped {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slot-section-header {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
}

.slot-section-icon {
    font-size: 15px;
    line-height: 1;
}

.slot-section-label {
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slot-section-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ── AI Suggestions Panel (step 4) ──────────────────────────────────────── */

.ai-suggestions-panel {
    margin-top: 12px;
    margin-bottom: 4px;
}

/* Loading state */
.ai-suggestions-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0 6px;
}

@keyframes ai-spin {
    to { transform: rotate(360deg); }
}

.ai-loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #dde1f0;
    border-top-color: #4f7fff;
    border-radius: 50%;
    animation: ai-spin 0.7s linear infinite;
    flex-shrink: 0;
}

.ai-loading-text {
    font-size: 13px;
    color: #a0a8c0;
}

/* Header label */
.ai-suggestions-label {
    font-size: 12.5px;
    font-weight: 500;
    color: #6b738f;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ai-suggestions-icon {
    color: #4f7fff;
    font-size: 13px;
    line-height: 1;
}

/* Cards list */
.ai-suggestions-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.ai-suggestion-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1.5px solid #dde1f0;
    border-radius: 12px;
    background: #fafbff;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
    user-select: none;
}

.ai-suggestion-card:hover {
    border-color: #4f7fff;
    background: #f4f7ff;
    box-shadow: 0 0 0 3px rgba(79, 127, 255, 0.08);
}

.ai-suggestion-card.selected {
    border-color: #4f7fff;
    background: #eef2ff;
    box-shadow: 0 0 0 3px rgba(79, 127, 255, 0.12);
}

.ai-suggestion-card:focus {
    outline: none;
    border-color: #4f7fff;
    box-shadow: 0 0 0 3px rgba(79, 127, 255, 0.18);
}

.ai-suggestion-text {
    font-size: 13.5px;
    color: #1e2a4a;
    line-height: 1.55;
    flex: 1;
}

.ai-suggestion-use {
    font-size: 11.5px;
    font-weight: 600;
    color: #4f7fff;
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.15s;
}

.ai-suggestion-card:hover .ai-suggestion-use,
.ai-suggestion-card.selected .ai-suggestion-use {
    opacity: 1;
}

/* All-used nudge */
.ai-suggestions-exhausted {
    font-size: 12.5px;
    color: #a0a8c0;
    text-align: center;
    padding: 6px 0 2px;
    margin: 0;
}

/* Regenerate button */
.ai-regenerate-btn {
    background: none;
    border: none;
    padding: 4px 0 0;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    color: #4f7fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.12s;
}

.ai-regenerate-btn:hover { opacity: 0.75; }

.ai-regenerate-btn:disabled {
    color: #a0a8c0;
    cursor: not-allowed;
    pointer-events: none;
}

/* Mobile: always show "Use this" label (no hover state on touch) */
@media (max-width: 560px) {
    .ai-suggestion-card { padding: 11px 12px; }
    .ai-suggestion-text { font-size: 13px; }
    .ai-suggestion-use  { opacity: 1; }
}

/* ════════════════════════════════════════════════════════════════════
   VIDEO SESSION — Join button + fullscreen meeting modal
   ════════════════════════════════════════════════════════════════════ */

.ic-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #4f7fff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}

.ic-join-btn:hover {
    background: #2e3a55;
}

.ic-join-btn--soon,
.ic-join-btn:disabled {
    background: #c0c8d8;
    color: #6b7280;
    cursor: not-allowed;
    pointer-events: none;
}

/* Meeting iframe modal — fullscreen overlay */
#ic-meeting-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #000;
    display: flex;
    flex-direction: column;
}

#ic-meeting-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 100000;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.15s;
}

#ic-meeting-close:hover {
    background: rgba(0,0,0,0.85);
}

#ic-meeting-frame {
    flex: 1;
    width: 100%;
    border: none;
}

body.ic-meeting-open {
    overflow: hidden;
}

/* Session-end toast — inside #ic-meeting-modal */
#ic-session-toast {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100001;
    background: rgba(15, 15, 15, 0.92);
    color: #fff;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    max-width: 380px;
    width: calc(100% - 40px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: none;
    align-items: flex-start;
    gap: 12px;
}

#ic-session-toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
    padding: 0;
    margin-left: auto;
}

#ic-session-toast-close:hover {
    color: #fff;
}

#ic-recording-toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    background: rgba(16, 185, 129, 0.92);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
    align-items: center;
    gap: 8px;
    max-width: 340px;
    width: calc(100% - 40px);
    backdrop-filter: blur(6px);
    pointer-events: none;
}

/* ── Popular badge on duration cards ─────────────────────────────────────── */
.duration-card__popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f97316;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 3px 11px;
    border-radius: 100px;
    white-space: nowrap;
    pointer-events: none;
}

/* ── Login page toast banner ─────────────────────────────────────────────── */
.ic-toast-banner {
    background: rgb(240, 245, 255);
    border: 1px solid rgb(191, 219, 254);
    padding: 10px 16px;
    font-size: 13.5px;
    color: #2563EB;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    line-height: 1.5;
    margin: 10px 10px 0px 10px;
    border-radius: 12px;
}

.ic-toast-banner a {
    color: #4f7fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
}

.ic-toast-banner a:hover {
    color: #0d1a3a;
}
