@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* Actay Font Family Integration */
@font-face {
    font-family: 'Actay';
    src: url('../fonts/Actay-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Actay';
    src: url('../fonts/Actay-RegularItalic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Actay';
    src: url('../fonts/ActayCondensed-Thin.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Actay';
    src: url('../fonts/ActayCondensed-ThinItalic.woff2') format('woff2');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Actay';
    src: url('../fonts/ActayWide-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Actay';
    src: url('../fonts/ActayWide-BoldItalic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
}

:root {
    --bg-color: #080808;
    --card-bg: #111111;
    --primary-purple: #9ca3ff;
    --text-white: #ffffff;
    --text-light: #f4f4f5;
    --text-gray: #a1a1aa;
    --border-color: #27272a;
    --font-main: 'Actay', 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.hidden {
    display: none !important;
}

/* Global Font Override */
#livora-form-wrapper,
#livora-form-wrapper *,
#livora-form-wrapper input,
#livora-form-wrapper button,
#livora-form-wrapper textarea,
#livora-form-wrapper select {
    font-family: 'Actay', 'Outfit', sans-serif !important;
}

body.livora-configurator-active {
    background: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
}

#livora-form-wrapper {
    min-height: 100vh;
    background: var(--bg-color);
    padding-bottom: 100px;
    display: block;
    width: 100%;
}

.livora-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.livora-logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 18px;
    color: var(--primary-purple);
}

.livora-header-right {
    font-size: 14px;
    color: var(--text-gray);
    letter-spacing: 0.5px;
}

#livora-form-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 50px;
}

#livora-form-container.sidebar-hidden {
    grid-template-columns: 1fr;
}

#livora-form-container.sidebar-hidden #livora-sidebar {
    display: none;
}

/* Stepper */
.livora-stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 80px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    width: 60px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #111;
    border: 2px solid #27272a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-gray);
    transition: 0.3s;
}

.step-line {
    width: 120px;
    height: 1.5px;
    background: #27272a;
    margin-bottom: 24px;
    /* Align with centers of numbers */
}

.step-item.active .step-number {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    color: var(--bg-color);
}

.step-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    font-weight: 400;
    position: absolute;
    bottom: -30px;
}

/* Typography & Layout */
.centered {
    text-align: center;
}

h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #ffffff !important;
}

h1.centered {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--primary-purple) !important;
    font-weight: 700;
    -webkit-text-fill-color: var(--primary-purple) !important;
    background: none !important;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Experience Selection UI Redesign */
.exp-selection-control {
    margin-top: 20px;
}

.qty-control {
    display: flex;
    align-items: center;
    background: #18181b;
    border-radius: 12px;
    padding: 8px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #000;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.qty-btn:hover {
    background: #27272a;
}

.qty-val {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    width: 40px;
    text-align: center;
}

.toggle-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #18181b;
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 20px;
}

.toggle-label {
    font-size: 16px;
    font-weight: 500;
    color: #a1a1aa;
}

.exp-card.selected .toggle-label {
    color: #fff;
}

/* Premium Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #27272a;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--primary-purple);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.exp-card-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.exp-cost-display {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

/* Remove old room chip styles */
.room-chip,
.room-selector,
.selector-label,
.exp-action-v2 {
    display: none !important;
}

.step-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Info Cards */
.info-card {
    background: #0F1119;
    border: 1px solid #18181b;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.info-card-compact {
    padding: 30px;
}

.info-title {
    font-size: 14px;
    color: #9ca3ff;
    margin-bottom: 20px;
    font-weight: 700;
}

.check-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 15px;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: var(--primary-purple);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
}

/* Pricing Card */
.pricing-card {
    background: #0F1119;
    border: 1px solid #18181b;
    border-radius: 20px;
    padding: 35px;
    margin-top: 20px;
    margin-bottom: 60px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.p-card-top h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #ffffff;
}

.p-card-meta {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 5px;
}

.p-card-meta strong {
    color: #9FACF9;
}

/* Circle Checkbox */
.membership-selection {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.circle-checkbox-container {
    display: flex;
    gap: 20px;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.circle-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark-circle {
    min-width: 24px;
    height: 24px;
    border: 2px solid var(--text-gray);
    border-radius: 50%;
    margin-top: 3px;
    transition: 0.3s;
}

.circle-checkbox-container:hover input~.checkmark-circle {
    border-color: var(--primary-purple);
}

.circle-checkbox-container input:checked~.checkmark-circle {
    border-color: var(--primary-purple);
}

.circle-checkbox-container input:checked~.checkmark-circle:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: var(--primary-purple);
    border-radius: 50%;
    margin: 4px;
}

.membership-label-text {
    text-align: left;
}

.membership-label-text strong {
    display: block;
    color: #9ca3ff;
    font-size: 16px;
    margin-bottom: 10px;
}

.membership-label-text ul {
    list-style: none;
    padding: 0;
}

.membership-label-text li {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 4px;
    position: relative;
    padding-left: 12px;
}

.membership-label-text li::before {
    content: "•";
    position: absolute;
    left: 0;
}

/* Action Buttons */
.step-actions {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.action-hint {
    font-size: 13px;
    color: var(--text-gray);
    margin: 12px 0 35px;
}

.btn-outline {
    background: transparent;
    border: 1px solid #27272a !important;
    color: var(--text-white);
    padding: 16px 36px;
}

.btn-outline:hover {
    border-color: var(--text-gray) !important;
    background: rgba(255, 255, 255, 0.03);
}

/* Cards (Existing Classes Cleanup) */
/* Step 1C: Core Only Path */
.core-summary-card {
    background: #0F1119;
    border: 1px solid #18181b;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.summary-card-header h3 {
    font-size: 20px;
    color: #9ca3ff;
    margin-bottom: 25px;
    font-weight: 600;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-gray);
}

.summary-row span:last-child {
    color: var(--text-white);
}

.summary-row.highlight-row {
    color: var(--primary-purple);
    font-weight: 600;
}

.summary-row.highlight-row span:last-child {
    color: var(--primary-purple);
}

.summary-row.savings-row {
    color: var(--text-gray);
    font-size: 11px;
    margin-top: 5px;
    opacity: 0.7;
}

.summary-row.savings-row span:last-child {
    color: var(--text-gray);
}

.step-actions-central {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.btn-hero {
    width: 100%;
    background: #9ca3ff;
    color: #080808;
    font-size: 18px;
    font-weight: 700;
    padding: 18px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-hero:hover {
    background: #b4bcff;
}

.hero-icon {
    font-size: 20px;
}

.hero-subtext {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    /* Stack vertically as per 2nd image */
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-subtext li {
    font-size: 14px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-subtext .check-mini {
    color: var(--primary-purple);
    font-size: 12px;
}

.btn-outline-wide {
    width: 100%;
    background: transparent;
    border: 1px solid #4b5563;
    /* Lighter gray border as per image */
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    text-align: center;
}

.btn-outline-wide:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
}

/* Level Selection Grid */
.levels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.level-card-full {
    grid-column: 1 / -1;
}

.level-card {
    background: #0F1119;
    border: 1px solid #18181b;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.level-card:hover {
    border-color: #27272a;
    background: #0a0a0c;
}

.level-card.selected {
    border-color: var(--primary-purple);
    background: rgba(156, 163, 255, 0.05);
}

.level-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--primary-purple);
    color: var(--bg-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.level-icon {
    font-size: 24px;
    margin-bottom: 20px;
}

.level-svg-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.level-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #ffffff;
}

.level-card p {
    color: #9FACF9;
    font-size: 15px;
    margin-bottom: 20px;
}

.level-footer {
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.membership-price {
    font-size: 14px;
    color: var(--text-gray);
}

.membership-price strong {
    color: var(--primary-purple);
}

.select-btn {
    background: transparent;
    border: none;
    color: var(--primary-purple);
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

/* Bespoke Selection Area */
.bespoke-selection-area {
    margin-top: 20px;
    text-align: left;
}

.bespoke-label {
    font-size: 24px;
    color: var(--text-white);
    margin-bottom: 30px;
    font-weight: 500;
}

.select-btn-bespoke {
    background: var(--primary-purple) !important;
    color: var(--bg-color) !important;
    padding: 16px 32px !important;
    border-radius: 12px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer;
    width: auto !important;
    transition: 0.3s;
}

.select-btn-bespoke:hover {
    background: #b4bcff !important;
    transform: translateY(-2px);
}

.level-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.level-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.4;
}

.level-features li span {
    color: var(--primary-purple);
    font-weight: 700;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-svg-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.best-for {
    margin-bottom: 20px;
}

.best-for-label {
    display: block;
    font-size: 10px;
    color: #9ca3ff;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.best-for ul {
    list-style: none;
    padding: 0;
}

.best-for li {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.experiences-grid {
    grid-template-columns: repeat(3, 1fr);
}

.exp-card p {
    color: var(--text-light);
    /* Brighter */
    opacity: 0.8;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.exp-card.selected p {
    opacity: 1;
}

.room-selector label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-gray);
    margin-bottom: 12px;
    font-weight: 600;
}

/* Consolidated styles above */

/* Toggle Fix */
.membership-toggle-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.toggle-text strong {
    display: block;
    color: var(--text-white);
    margin-bottom: 5px;
    font-size: 17px;
}

.toggle-text small {
    color: var(--text-gray);
    font-size: 14px;
}

.switch {
    position: relative;
    width: 60px;
    height: 32px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #333;
    border-radius: 32px;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background: white;
    border-radius: 50%;
    transition: .4s;
}

input:checked+.slider {
    background: var(--primary-purple);
}

input:checked+.slider:before {
    transform: translateX(28px);
}

/* Buttons */
.livora-btn {
    padding: 22px 45px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    border: none;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-purple);
    color: var(--bg-color);
}

.btn-primary:hover {
    background: #b4b9ff;
    transform: scale(1.02);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border-color);
    color: var(--text-white);
}

.btn-outline:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.prev-step {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.prev-step:hover {
    color: var(--text-white);
}

/* Sidebar */
#livora-sidebar {
    background: #0F1119;
    border: 1.5px solid var(--border-color);
    border-radius: 32px;
    padding: 50px;
    height: fit-content;
    position: sticky;
    top: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.sidebar-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-white);
    font-weight: 700;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--text-light);
}

.summary-totals {
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
    padding-top: 30px;
}

.summary-totals .summary-line {
    margin-bottom: 12px;
}

.summary-totals span:last-child {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
}

/* Form Elements */
.form-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .field-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.field label {
    display: block;
    margin-bottom: 12px;
    color: var(--text-light);
    /* Brighter */
    font-weight: 600;
    font-size: 15px;
}

.field input {
    width: 100%;
    background: #111;
    /* Slightly lighter bg for better contrast */
    border: 1.5px solid var(--border-color);
    padding: 20px;
    border-radius: 14px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 17px;
    outline: none;
    transition: 0.3s;
}

.field input:focus {
    border-color: var(--primary-purple);
    background: #1a1a1a;
}

.p-choices {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.p-choice {
    padding: 14px 28px;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    background: #1a1a1a;
    /* Slightly lighter background */
    color: var(--text-light);
    /* Brighter text */
    font-weight: 500;
    font-size: 15px;
}

.p-choice:hover {
    border-color: var(--primary-purple);
    background: #222;
}

.p-choice.selected {
    background: var(--primary-purple) !important;
    color: var(--bg-color) !important;
    border-color: var(--primary-purple) !important;
    font-weight: 700;
}

.form-step.active .livora-btn.next-step {
    margin-top: 50px;
    /* Space between fields/property selection and button */
}

/* Premium Form Styling (Step 5) */
.header-large {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    color: #ffffff !important;
}

.step-description {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 500px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.step-subhint {
    font-size: 14px;
    color: #52525b;
    margin-bottom: 40px;
}

.premium-form {
    max-width: 550px;
    margin: 0 0 50px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.premium-form .field.full {
    grid-column: span 2;
}

.premium-form .field label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
    display: block;
    font-weight: 500;
}

.premium-form input[type="text"],
.premium-form input[type="email"],
.premium-form input[type="tel"],
.premium-form textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #27272a;
    color: var(--text-white);
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 16px;
    width: 100%;
    transition: 0.3s;
}

.premium-form input:focus,
.premium-form textarea:focus {
    border-color: var(--primary-purple);
    outline: none;
    background: rgba(255, 255, 255, 0.06);
}

.premium-form textarea {
    min-height: 100px;
    resize: vertical;
}

.form-actions-left {
    max-width: 550px;
}

.action-footer-text {
    font-size: 14px;
    color: #52525b;
    margin-top: 15px;
    text-align: center;
}

.form-actions-left .livora-btn {
    width: 100%;
}

/* Sidebar Styling Overhaul (Matching Screenshot) */
#livora-sidebar {
    width: 320px;
    background: #0F1119;
    border: 1px solid #18181b;
    border-radius: 20px;
    padding: 30px;
}

.sidebar-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-white);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    align-items: center;
    gap: 10px;
}

/* Sidebar Checkmark icon */
.summary-line .check-icon-mini {
    color: var(--primary-purple);
    font-size: 10px;
    font-weight: 900;
}

.sidebar-footer {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#total-upfront-val,
#total-monthly-val {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-white);
}

.summary-line.savings {
    color: #9ca3ff;
    font-weight: 600;
    margin-top: 12px;
}

.summary-line.savings span:last-child {
    color: #9ca3ff;
}

.r-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
}

.r-total span {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-purple);
}

/* Sidebar Redesign - Step 2 */
.sidebar-toggle-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-toggle-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sidebar-toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
}

.sidebar-section-title {
    font-size: 13px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sidebar-included-label {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 15px;
    display: block;
}

.sidebar-total-block {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-total-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.sidebar-total-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-white);
}

.sidebar-care-block {
    margin-bottom: 30px;
}

.sidebar-care-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 8px;
    display: block;
}

.sidebar-care-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    display: block;
    margin-bottom: 5px;
}

.sidebar-care-hint {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 15px;
    display: block;
}

.sidebar-microcopy {
    font-size: 12px;
    color: #52525b;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Step 4: Review Receipt Styling */
.review-receipt-container {
    max-width: 600px;
    margin: 40px auto;
    background: #0F1119;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
}

.receipt-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.receipt-item {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.receipt-item::before {
    content: "✓";
    color: var(--primary-purple);
    font-weight: 800;
}

.receipt-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 30px 0;
}

.receipt-pricing-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pricing-label {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-white);
    display: block;
}
@media(max-width: 768px){
}.pricing-value{
font-size: 28px;
}
}

.pricing-micro {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 4px;
}

#review-savings-row .pricing-value {
    font-size: 20px;
}

#review-total-care {
    color: var(--primary-purple);
}

/* Animation Fix */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: smoothIn 0.4s ease-out forwards;
}

@keyframes smoothIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Step 11: Calendar Specific Styling */
.calendar-container {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.calendar-left {
    flex: 1;
}

.calendar-right {
    width: 300px;
}

.selection-section {
    margin-bottom: 30px;
}

.selection-label {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
    font-weight: 500;
}

.bubble-grid {
    display: grid;
    gap: 12px;
}

.date-grid {
    grid-template-columns: repeat(7, 1fr);
}

.time-grid {
    grid-template-columns: repeat(5, 1fr);
}

.bubble-btn {
    background: #111113;
    border: 1px solid #27272a;
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.bubble-btn span {
    font-size: 11px;
    color: #52525b;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.bubble-btn strong {
    font-size: 18px;
    color: var(--text-white);
}

.bubble-btn:hover {
    border-color: #3f3f46;
    background: #18181b;
}

.bubble-btn.selected {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
}

.bubble-btn.selected span,
.bubble-btn.selected strong {
    color: #000;
}

/* Time bubbles are simpler */
.time-grid .bubble-btn {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-white);
    padding: 10px 5px;
}

.time-grid .bubble-btn.selected {
    color: #000;
}

/* Internal Summary Card */
.internal-summary-card {
    background: #0F1119;
    border: 1px solid #18181b;
    border-radius: 20px;
    padding: 24px;
    height: fit-content;
}

.internal-summary-card .card-title {
    font-size: 12px;
    color: #52525b;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 700;
}

.internal-summary-card .card-item {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.internal-summary-card .card-item span {
    color: var(--primary-purple);
    margin-right: 8px;
}

.internal-summary-card .card-footer {
    border-top: 1px solid #18181b;
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.internal-summary-card .card-footer span {
    font-size: 13px;
    color: #52525b;
}

.internal-summary-card .card-footer strong {
    font-size: 18px;
    color: var(--text-white);
}

/* Bundle Notification Area */
#bundle-notification-area {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bundle-box {
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid transparent;
    animation: smoothIn 0.4s ease-out;
}

.bundle-box.discount-applied {
    background: rgba(167, 139, 250, 0.1);
    border-color: rgba(167, 139, 250, 0.4);
    color: #ffffff;
}

.bundle-box.upsell {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

.bundle-box h4 {
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bundle-box.discount-applied h4 {
    color: #9FACF9;
}

.bundle-box.upsell h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 5px;
}

.bundle-box-text {
    font-size: 15px;
    line-height: 1.5;
}

.bundle-box-details {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: monospace;
    font-size: 14px;
    margin-top: 5px;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.5;
}

.sale-price {
    color: #ef4444;
}

.extra-save {
    color: #22c55e;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(34, 197, 94, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.final-price {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
}

.success-step {
    text-align: center;
    padding: 60px 20px;
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.success-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.confirmation-card {
    background: #0F1119;
    border: 1px solid #18181b;
    border-radius: 20px;
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    min-width: 320px;
}

.conf-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: var(--text-white);
    font-weight: 500;
}

.conf-icon {
    font-size: 22px;
    color: var(--primary-purple);
}

.success-footer {
    font-size: 14px;
    color: #52525b;
    line-height: 1.6;
    margin-bottom: 40px;
}

.success-footer p {
    margin: 5px 0;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-success-main {
    background: #a78bfa !important;
    color: #000 !important;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.btn-success-secondary {
    background: transparent !important;
    color: #a78bfa !important;
    border: 1px solid #18181b !important;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-icon {
    font-size: 20px;
}

/* ==========================================================================
   Responsive Design - Mobile First Adjustments
   ========================================================================== */

/* Large Tablets & Laptops (Below 1200px) */
@media (max-width: 1200px) {
    #livora-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
        margin: 40px auto;
    }

    #livora-sidebar {
        width: 100%;
        position: static;
        margin-top: 40px;
    }

    h1 {
        font-size: 42px;
    }

    .header-large {
        font-size: 46px;
    }
}

/* Tablets (Below 992px) */
@media (max-width: 992px) {
    .livora-header {
        padding: 20px 30px;
        margin-bottom: 40px;
    }

    .livora-stepper {
        margin-bottom: 60px;
    }

    .step-line {
        width: 60px;
    }

    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calendar-container {
        flex-direction: column;
        gap: 30px;
    }

    .calendar-left,
    .calendar-right {
        width: 100%;
    }

    .date-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile Devices (Below 768px) */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    .header-large {
        font-size: 34px;
    }

    .step-subtitle {
        font-size: 16px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .step-label {
        display: none;
        /* Hide labels to save space */
    }

    .step-line {
        width: 40px;
    }

    .levels-grid {
        grid-template-columns: 1fr;
    }

    .premium-form {
        grid-template-columns: 1fr;
    }

    .premium-form .field.full {
        grid-column: auto;
    }

    .p-choices {
        flex-wrap: wrap;
    }

    .success-title {
        font-size: 32px;
    }

    .confirmation-card {
        padding: 30px 20px;
        min-width: 100%;
    }

    .success-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-success-main,
    .btn-success-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile (Below 480px) */
@media (max-width: 480px) {
    .livora-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .experiences-grid {
        grid-template-columns: 1fr;
    }

    .date-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .time-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn-hero,
    .livora-btn {
        padding: 16px 20px;
        font-size: 16px;
    }

    .info-card,
    .pricing-card {
        padding: 20px;
    }
}

/* Redesigned Experiences UI - Restored Layout */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.exp-card {
    background: #0F1119;
    border: 1px solid #18181b;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1.5px solid #18181b;
    cursor: pointer;
}

.exp-card:hover {
    border-color: #27272a;
    background: #0a0a0c;
}

.exp-card.selected {
    border-color: var(--primary-purple);
    background: rgba(156, 163, 255, 0.05);
}

.exp-header {
    display: flex;
    gap: 20px;
    margin-bottom: 25px; 
    align-items: center;
    justify-content: space-between;
}

.exp-icon {
    font-size: 24px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-title-area h3 {
    font-size: 24px;
    margin-bottom: 6px;
    color: var(--text-white);
    font-weight: 700;
    
}
.exp-title-area {
    width: 74%;
}

.exp-tagline {
    font-size: 15px;
    color: #9FACF9;
    margin: 0;
}

.exp-pricing-info {
    margin-bottom: 30px;
}

.exp-pricing-info p {
    font-size: 16px;
    color: var(--text-white);
    margin: 0 0 8px 0;
    opacity: 0.9;
}

.exp-pricing-info p:last-child {
    color: var(--text-gray);
    font-size: 15px;
    margin-top: 15px;
}

.exp-selection-label-area {
    margin-bottom: 12px;
}

.select-rooms-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #52525b;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.exp-selection-control {
    margin-top: auto;
    margin-bottom: 25px;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    background: #0d0d0f;
    border: 1px solid #18181b;
    border-radius: 10px;
    padding: 6px;
    gap: 20px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid #27272a;
    color: var(--text-white);
    border-radius: 6px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

.qty-btn:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.qty-val {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    min-width: 30px;
    text-align: center;
}

.exp-card-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    margin-top: auto;
}

.exp-cost-display {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
}

/* Security Toggle Styling */
.toggle-control {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #0d0d0f;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #18181b;
    justify-content: space-between;
}

.toggle-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-gray);
}

.exp-card.selected .toggle-label {
    color: var(--text-white);
}

/* Success Page Styles */
.success-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px);
    /* Adjust based on header/footer height */
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 80px;
    color: var(--primary-purple);
    margin-bottom: 30px;
}

.success-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.success-message {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.success-actions .livora-btn {
    min-width: 180px;
}

/* Tiny Switch */
.switch.tiny {
    width: 34px;
    height: 18px;
}

.switch.tiny input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch.tiny .slider {
    background-color: #27272a;
    transition: .4s;
    border-radius: 34px;
}

.switch.tiny .slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.switch.tiny input:checked+.slider {
    background-color: var(--primary-purple);
}

.switch.tiny input:checked+.slider:before {
    transform: translateX(16px);
}

/* Monthly Info Alignment in Sidebar */
.summary-line span:last-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.exp-pricing-info p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.exp-pricing-info p:first-child {
    color: var(--text-white);
    font-weight: 600;
}

.monthly-price-row p {
    font-size: 14px;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .success-title {
        font-size: 36px;
    }

    .success-message {
        font-size: 18px;
    }

    .success-icon {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .success-actions {
        flex-direction: column;
    }

    .success-actions .livora-btn {
        width: 100%;
    }
}

/* Simplified Pricing Styles */
.core-foundation-tag {
    display: inline-block;
    background: #27272a;
    color: #a1a1aa;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.total-prominent {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 5px;
}

.total-prominent span:first-child {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-prominent span:last-child {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: var(--text-white) !important;
}

/* Custom Multi-Select Dropdown */
.livora-multi-select {
    position: relative;
    width: 100%;
    user-select: none;
}

.multi-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.multi-select-trigger:hover {
    border-color: var(--primary-purple);
    background: rgba(255, 255, 255, 0.03);
}

.multi-select-trigger .trigger-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
}

.multi-select-trigger i {
    font-size: 12px;
    color: var(--primary-purple);
    transition: transform 0.3s ease;
}

.livora-multi-select.active .multi-select-trigger i {
    transform: rotate(180deg);
}

.multi-select-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 8px;
    z-index: 100;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-height: 250px;
    overflow-y: auto;
}

.livora-multi-select.active .multi-select-options {
    display: block;
}

.multi-select-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-bottom: 2px;
}

.multi-select-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.multi-select-option .option-checkbox {
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: all 0.2s ease;
}

.multi-select-option.selected .option-checkbox {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
}

.multi-select-option.selected .option-checkbox::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    color: var(--bg-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.multi-select-option .option-label {
    font-size: 13px;
    color: #a1a1aa;
    transition: color 0.2s ease;
}

.multi-select-option.selected .option-label {
    color: #fff;
}

.multi-select-empty {
    padding: 15px;
    color: var(--text-gray);
    font-size: 13px;
    font-style: italic;
    text-align: center;
}

/* Custom Scrollbar for Options */
.multi-select-options::-webkit-scrollbar {
    width: 6px;
}

.multi-select-options::-webkit-scrollbar-track {
    background: transparent;
}

.multi-select-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.multi-select-options::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

.addon-control p {
    font-size: 10px !important;
    color: var(--text-gray) !important;
    margin-bottom: 8px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}