:root {
    --bg-main: #0b1120;
    --bg-surface: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-primary: #9447aa;
    --accent-hover: #722e84;
    --accent-glow: rgba(148, 71, 170, 0.3);
    --danger: #ef4444;
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* Glassmorphism Utility */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.text-accent {
    color: var(--accent-primary);
}

.icon-large {
    width: 32px;
    height: 32px;
}

.icon-huge {
    width: 64px;
    height: 64px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, #c084fc 0%, #9447aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
.navbar {
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    background: rgba(11, 17, 32, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-primary);
}

.logo-icon {
    width: 48px;
    height: auto;
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.logo-text-img {
    height: 38px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-primary);
}

/* Buttons */
button {
    font-family: var(--font-main);
    cursor: pointer;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent-primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 14px var(--accent-glow);
    border-radius: 8px;
    text-decoration: none;
}

.btn-primary:hover:not(:disabled) {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-primary:disabled {
    background: var(--bg-surface);
    color: var(--text-secondary);
    cursor: not-allowed;
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--glass-border);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    margin-top: 4rem;
    position: relative;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(148, 71, 170, 0.1);
    color: var(--accent-primary);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(148, 71, 170, 0.2);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-align: left;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.hero-visual {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-hero-card {
    padding: 2.5rem;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
    border-color: rgba(148, 71, 170, 0.3);
}

.about-hero-card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--accent-primary);
}

/* Booking Modal */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.booking-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.booking-modal-container {
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 2.5rem 2.5rem 0 2.5rem;
    transform: translateY(20px);
    transition: var(--transition);
    overflow: hidden;
    background-clip: padding-box;
    border: none !important;
    box-shadow: inset 0 0 0 1px var(--glass-border), 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
}

.booking-modal-overlay.active .booking-modal-container {
    transform: translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    color: var(--text-secondary);
    padding: 0.5rem;
}

.close-modal-btn:hover {
    color: var(--text-primary);
    background: var(--glass-border);
}

.booking-header {
    margin-bottom: 2.5rem;
    text-align: center;
    flex-shrink: 0;
}

.booking-body {
    overflow-y: auto;
    padding-bottom: 2.5rem;
}

.booking-header h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Progress Bar */
.progress-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--glass-border);
    z-index: 0;
}

.progress-step {
    position: relative;
    z-index: 1;
    background: var(--bg-surface);
    padding: 0.25rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.progress-step.active {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-glow);
}

/* Step Content */
.step-content {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-content h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.step-actions {
    margin-top: 2.5rem;
    display: flex;
    justify-content: flex-end;
}

.step-actions.split {
    justify-content: space-between;
}

/* Step 1: Services */
.service-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card input {
    display: none;
}

.service-card-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
    background-clip: padding-box;
}

.service-card-inner i {
    color: var(--text-secondary);
    transition: var(--transition);
}

.service-card:hover .service-card-inner {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.service-card input:checked+.service-card-inner {
    border-color: var(--accent-primary);
    background: rgba(148, 71, 170, 0.1);
}

.service-card input:checked+.service-card-inner i {
    color: var(--accent-primary);
}

.service-card-inner h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.service-card-inner p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.service-card-inner .price {
    margin-left: auto;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Step 2: Date & Time */
.datetime-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.calendar-header,
.time-slots-wrapper h4 {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.cal-day.header {
    color: var(--text-secondary);
    font-size: 0.8rem;
    cursor: default;
}

.cal-day.empty {
    cursor: default;
}

.cal-day.available {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--glass-border);
}

.cal-day.available:hover {
    background: rgba(148, 71, 170, 0.2);
    border-color: var(--accent-primary);
}

.cal-day.selected {
    background: var(--accent-primary);
    color: #fff;
    box-shadow: 0 0 10px var(--accent-glow);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.time-slot {
    padding: 0.75rem;
    text-align: center;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: var(--transition);
}

.time-slot:hover {
    border-color: var(--accent-primary);
}

.time-slot.selected {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
}

/* Step 3: Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.form-group input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.checkbox-group {
    margin-top: 1.5rem;
}

.health-disclaimer-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.health-disclaimer-box h4 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.health-disclaimer-box h5 {
    color: var(--text-primary);
    margin: 1.5rem 0 0.5rem;
    font-size: 0.95rem;
}

.health-disclaimer-box ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.health-disclaimer-box li {
    margin-bottom: 0.25rem;
}

.health-disclaimer-box p {
    margin-bottom: 0.75rem;
    line-height: 1.5;
    text-align: left;
}

.health-disclaimer-box::-webkit-scrollbar {
    width: 6px;
}

.health-disclaimer-box::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.health-disclaimer-box::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 3px;
}

.exclusion-alert {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 1rem;
    border-radius: 8px;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    position: relative;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    top: 10px;
    left: 10px;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
}

.custom-checkbox input:checked+.checkmark {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.custom-checkbox input:checked+.checkmark::after {
    content: '';
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.label-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.label-text strong {
    color: var(--text-primary);
}

/* Step 4: Summary */
.summary-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.summary-item span {
    color: var(--text-secondary);
}

/* Success State */
.success-message {
    text-align: center;
    padding: 3rem 0;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: rgba(148, 71, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-message p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* --- NEW SECTIONS STYLING --- */
.section {
    padding: 6rem 5%;
}

.bg-surface {
    background: var(--bg-surface);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    /* Jobb oldal (Szakmai megközelítés) szélesebb */
    gap: 3rem;
    align-items: stretch;
}

.about-text h2,
.section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
}

.about-text .lead {
    font-size: 1.25rem;
    color: var(--accent-primary);
}

.philosophy-box {
    padding: 2rem;
    border-left: 4px solid var(--accent-primary);
    background: rgba(30, 41, 59, 0.5);
}

.philosophy-box h3 {
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.disclaimer {
    font-size: 0.85rem !important;
    color: var(--text-secondary);
    opacity: 0.8;
}


.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-card-main {
    padding: 2.5rem;
    transition: var(--transition);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(148, 71, 170, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card-main h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card-main p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: left;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.benefits-list svg,
.benefits-list i {
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-box {
    background: rgba(148, 71, 170, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    color: var(--text-primary);
    border: 1px solid rgba(148, 71, 170, 0.2);
    line-height: 1.6;
    text-align: left;
}

.audience-box,
.contact-info {
    padding: 2.5rem;
    height: 100%;
}

.contact-info p {
    text-align: left;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.audience-box h3,
.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
    font-size: 1.5rem;
}

.contact-info.border-accent {
    border: 1px solid var(--accent-primary);
    box-shadow: 0 0 30px rgba(148, 71, 170, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Mobile Bottom Bar (Hidden on desktop) */
.mobile-bottom-bar {
    display: none;
}

/* Swiper Képgaléria CSS */
.swiper {
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 3rem;
    overflow: visible !important;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(148, 71, 170, 0.3);

    /* Csak 3 képet engedünk látszani */
    opacity: 0 !important;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* A középső és a közvetlen mellette lévő képek láthatók */
.swiper-slide-active,
.swiper-slide-next,
.swiper-slide-prev,
.swiper-slide-duplicate-active,
.swiper-slide-duplicate-next,
.swiper-slide-duplicate-prev {
    opacity: 1 !important;
    pointer-events: auto;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    background: var(--accent-primary) !important;
}

/* Swiper nyilak pozicionálása a középső képre */
.swiper-button-prev,
.swiper-button-next {
    color: var(--accent-primary) !important;
    background: rgba(30, 41, 59, 0.6) !important;
    width: 64px !important;
    height: 64px !important;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    top: 50% !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 2.0rem !important;
    font-weight: bold;
}

/* Asztali elrendezés: a középső kép (50% széles) két szélére */
.swiper-button-prev {
    left: 26.5% !important;
    margin-top: 0 !important;
    transform: translate(-50%, -50%) !important;
}

.swiper-button-next {
    right: 26.5% !important;
    margin-top: 0 !important;
    transform: translate(50%, -50%) !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent-primary) !important;
}

/* Phone link styling (Desktop by default: not clickable) */
.phone-link {
    pointer-events: none;
    cursor: default;
}
.phone-link .phone-number-text {
    text-decoration: none;
}


/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero {
        padding-top: 15rem;
    }

    .swiper-slide {
        width: 220px;
        height: 200px;
    }


    /* Mobil nézet javítása: sorkizárás kikapcsolása */
    p,
    .hero p,
    .about-text p,
    .service-card-main p,
    .highlight-box,
    .contact-info p,
    .health-disclaimer-box p {
        text-align: left !important;
    }

    /* Navbar mobil nézet javítása */
    .navbar {
        padding: 1.5rem 5%;
        background: rgba(11, 17, 32, 0.95);
    }

    .nav-container {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
    }

    .logo {
        justify-content: center;
        width: 100%;
    }

    .nav-links {
        display: flex;
        justify-content: center;
        width: 100%;
        gap: 1.5rem;
        font-size: 1rem;
    }

    .logo-icon {
        width: 48px;
    }

    .logo-text-img {
        height: 38px;
        margin-bottom: 0.5rem;
    }

    .navbar .btn-primary {
        display: inline-flex;
        width: 100%;
        padding: 0.75rem;
        font-size: 1rem;
    }

    .hero .btn-primary {
        display: none;
        /* Mobilon elrejtjük a belső gombot */
    }

    .hero h1 {
        font-size: 1.6rem;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .datetime-container,
    .form-row {
        grid-template-columns: 1fr;
    }

    .progress-bar {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .progress-bar::before {
        display: none;
    }

    .progress-step {
        width: 100%;
        border: none;
        background: transparent;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--glass-border);
        border-radius: 0;
    }

    .progress-step.active {
        background: transparent;
        border-bottom-color: var(--accent-primary);
        box-shadow: none;
        color: var(--accent-primary);
    }

    .about-grid,
    .contact-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Foglalási ablak (Modal) mobil nézet finomhangolása */
    .booking-modal-container {
        width: 95%;
        padding: 1.5rem 1.5rem 0 1.5rem;
    }

    .booking-body {
        padding-bottom: 1.5rem;
    }

    .health-disclaimer-box {
        padding: 1rem;
    }

    .service-card-inner {
        flex-wrap: wrap;
    }

    .service-card-inner .price {
        width: 100%;
        text-align: right;
        margin-top: 0.5rem;
    }

    /* Összegzés oldal (Step 4) mobil nézet */
    #step4 h3 {
        margin-top: 1rem !important;
    }

    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .summary-item strong {
        text-align: left;
        width: 100%;
        word-break: break-word;
        /* hosszú email címek miatt */
    }

    /* A 'Kezelés ára' maradjon egy sorban (2. elem) */
    .summary-item:nth-child(2) {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .summary-item:nth-child(2) strong {
        width: auto;
        text-align: right;
    }

    /* Kikapcsoljuk a modal háttérképét mobilon, mert nem mutat jól */
    .booking-modal-container {
        background-image: none !important;
    }

    /* Mobile viewport: make phone link clickable */
    .phone-link {
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    .phone-link .phone-number-text {
        text-decoration: underline !important;
        text-underline-offset: 4px !important;
    }
}