/* ========== Dream Lashes Bad Salzuflen ========== */

:root {
    --color-bg: #0a0a0a;
    --color-bg-card: rgba(18, 14, 14, 0.85);
    --color-rose-gold: #c9a27a;
    --color-rose-gold-light: #e0c4a0;
    --color-rose-gold-dark: #a07d52;
    --color-white: #f5f5f5;
    --color-white-muted: rgba(245, 245, 245, 0.75);
    --font-script: "Great Vibes", cursive;
    --font-sans: "Montserrat", sans-serif;
    --border-radius: 12px;
    --transition: 0.35s ease;
    --navbar-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-white);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(201, 162, 122, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(201, 162, 122, 0.06) 0%, transparent 50%),
        linear-gradient(160deg, #0d0b0b 0%, #0a0a0a 40%, #121010 100%);
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-rose-gold-light);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-white);
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== Typography ========== */

.section__title {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: 400;
    color: var(--color-rose-gold);
    text-align: center;
    line-height: 1.2;
}

.heart-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 16px auto 40px;
    max-width: 280px;
}

.heart-divider__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-rose-gold), transparent);
}

.heart-divider__heart {
    color: var(--color-rose-gold);
    font-size: 12px;
    line-height: 1;
}

/* ========== Buttons ========== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-rose-gold) 0%, var(--color-rose-gold-dark) 100%);
    color: var(--color-bg);
    border-color: var(--color-rose-gold);
}

.btn--primary:hover {
    color: var(--color-bg);
    box-shadow: 0 0 24px rgba(201, 162, 122, 0.45);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--color-rose-gold);
    border-color: var(--color-rose-gold);
}

.btn--outline:hover {
    background: rgba(201, 162, 122, 0.12);
    color: var(--color-rose-gold-light);
}

/* ========== Navbar ========== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 162, 122, 0.2);
    isolation: isolate;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    height: var(--navbar-height);
}

.navbar__brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar__brand:hover {
    opacity: 0.9;
}

.navbar__logo {
    display: block;
    height: 52px;
    width: auto;
    object-fit: contain;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.navbar__menu a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white-muted);
}

.navbar__menu a:hover,
.navbar__menu a.is-active {
    color: var(--color-rose-gold);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.navbar__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-rose-gold);
    transition: transform var(--transition), opacity var(--transition);
}

.navbar__toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== Hero ========== */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--navbar-height) + 40px) 24px 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.55) 0%,
        rgba(10, 10, 10, 0.45) 45%,
        rgba(10, 10, 10, 0.75) 85%,
        var(--color-bg) 100%
    );
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
}

.hero__tagline {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 8px;
}

.hero__title {
    margin-bottom: 12px;
    animation: heroFadeIn 1s ease 0.2s both;
}

.hero__title-image {
    display: block;
    width: min(100%, 520px);
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.hero__name-sep {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-rose-gold);
    line-height: 1;
    margin: 4px 0 8px;
}

.hero__name {
    font-family: var(--font-script);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--color-rose-gold-light);
    margin-bottom: 12px;
}

.hero__role {
    font-size: 14px;
    color: var(--color-white);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.hero__cta {
    margin-top: 8px;
}

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

/* ========== Sections ========== */

.section {
    padding: 80px 0;
}

.section--booking {
    background: #ffffff;
    position: relative;
    z-index: 1;
}

/* Embedded-Buchung: kein Modal-Stacking – beim Scrollen unter der Navbar bleiben */
.booking-embed,
.booking-embed .booking-card,
.booking-embed #booking-root,
.booking-embed #booking-root .booking-modal-content {
    position: relative;
    z-index: auto;
}

.booking-embed #booking-root .booking-modal-content {
    z-index: 1;
}

.section--testimonials {
    background: #ffffff;
    padding-bottom: 48px;
}

.section--testimonials .testimonials-source {
    color: rgba(10, 10, 10, 0.55);
}

.section--treatments {
    padding-bottom: 40px;
}

.section--about {
    background: #ffffff;
}

.section--about .about-text {
    color: rgba(10, 10, 10, 0.72);
}

.section--about .about-text strong {
    color: var(--color-rose-gold-dark);
}

.section--about .about-cta__text {
    color: rgba(10, 10, 10, 0.8);
}

/* ========== Booking Embed ========== */

.booking-embed {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Rahmen kommt aus template.css (.booking-card); nur Branding anpassen */
.booking-embed .booking-modal-close {
    display: none;
}

.booking-embed .booking-title {
    display: none;
}

.booking-embed .template-cta,
.booking-embed .button.template-cta,
.booking-embed .booking-card .template-cta,
.booking-embed .booking-card button[type="submit"] {
    background: var(--color-rose-gold);
    border-color: var(--color-rose-gold);
    color: #fff;
}

.booking-embed .template-cta:hover,
.booking-embed .button.template-cta:hover,
.booking-embed .booking-card .template-cta:hover,
.booking-embed .booking-card button[type="submit"]:hover {
    background: var(--color-rose-gold-dark);
    border-color: var(--color-rose-gold-dark);
}

.booking-embed__fallback {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(10, 10, 10, 0.55);
}

.booking-embed__fallback a {
    color: var(--color-rose-gold-dark);
    text-decoration: underline;
}

.booking-embed__error {
    color: #8c2155;
    font-weight: 600;
    text-align: center;
}

/* ========== Testimonials ========== */

.testimonials-source {
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-white-muted);
    margin: -24px auto 8px;
}

.testimonials-marquee {
    overflow: hidden;
    margin-top: 32px;
    padding: 12px 0 24px;
    mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.testimonials-marquee__track {
    display: flex;
    width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.testimonials-marquee__group {
    display: flex;
    gap: 20px;
    padding-right: 20px;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 340px;
    min-height: 220px;
    padding: 28px;
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 162, 122, 0.25);
    border-radius: var(--border-radius);
    transition: border-color var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: rgba(201, 162, 122, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.testimonial-card__stars {
    color: var(--color-rose-gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.testimonial-card__text {
    font-size: 14px;
    color: var(--color-white-muted);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.testimonial-card__author {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-rose-gold);
    letter-spacing: 0.05em;
    margin-top: auto;
}

@keyframes testimonials-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Fallback wenn JS deaktiviert – läuft unabhängig vom Scroll-Reveal */
.no-js .testimonials-marquee__track {
    animation: testimonials-marquee 120s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    .testimonials-marquee__track {
        animation: none;
    }

    .treatments-slider__track {
        transition: none;
    }
}

/* ========== Treatments ========== */

.treatments-picker {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 820px;
    margin: 0 auto 32px;
}

.treatments-picker__row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.treatments-picker__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-rose-gold);
    text-align: center;
}

.treatments-picker__options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.treatments-picker__btn {
    padding: 14px 12px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-align: center;
    color: var(--color-white-muted);
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 162, 122, 0.3);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition);
}

.treatments-picker__btn:hover {
    border-color: rgba(201, 162, 122, 0.55);
    color: var(--color-white);
}

.treatments-picker__btn.is-active {
    color: var(--color-bg);
    background: linear-gradient(135deg, var(--color-rose-gold) 0%, var(--color-rose-gold-dark) 100%);
    border-color: var(--color-rose-gold);
}

.treatments-slider {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 820px;
    margin: 0 auto 28px;
}

.treatments-slider__viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    border: 1px solid rgba(201, 162, 122, 0.35);
    background: var(--color-bg-card);
    touch-action: pan-y pinch-zoom;
    cursor: grab;
    user-select: none;
}

.treatments-slider__viewport.is-dragging {
    cursor: grabbing;
}

.treatments-slider__track {
    display: flex;
    width: 100%;
    transition: transform 0.4s ease;
    will-change: transform;
}

.treatments-slider__track.is-dragging {
    transition: none;
}

.treatments-slider__slide {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: 480px;
}

.treatments-slider__slide--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    letter-spacing: 0.06em;
    color: var(--color-white-muted);
    background: rgba(201, 162, 122, 0.08);
}

.treatments-slider__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.treatments-slider__nav {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    font-family: var(--font-sans);
    font-size: 28px;
    line-height: 1;
    color: var(--color-rose-gold);
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 162, 122, 0.35);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition);
}

.treatments-slider__nav span {
    display: block;
    margin-top: -2px;
}

.treatments-slider__nav:hover {
    color: var(--color-bg);
    background: linear-gradient(135deg, var(--color-rose-gold) 0%, var(--color-rose-gold-dark) 100%);
    border-color: var(--color-rose-gold);
}

.treatments-slider__nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.treatments-slider__counter {
    max-width: 820px;
    margin: -12px auto 24px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-align: center;
    color: var(--color-rose-gold);
}

.treatments-slider__counter:empty {
    display: none;
}

.treatments-text {
    max-width: 720px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.75;
    color: var(--color-white-muted);
    text-align: center;
}

.treatments-text p {
    margin: 0;
}

.treatments-text--hidden {
    display: none;
}

/* ========== Prices ========== */

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.price-card {
    padding: 32px 28px;
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 162, 122, 0.35);
    border-radius: var(--border-radius);
}

.price-card__label {
    display: block;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-bg);
    background: linear-gradient(135deg, var(--color-rose-gold) 0%, var(--color-rose-gold-dark) 100%);
    padding: 10px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.price-card__list {
    list-style: none;
}

.price-card__list li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--color-white-muted);
    border-bottom: 1px solid rgba(201, 162, 122, 0.1);
}

.price-card__list li:last-child {
    border-bottom: none;
}

.price-card__dots {
    flex: 1;
    border-bottom: 1px dotted rgba(201, 162, 122, 0.4);
    min-width: 20px;
    margin-bottom: 4px;
}

.price-card__amount {
    font-weight: 600;
    color: var(--color-rose-gold);
    white-space: nowrap;
}

.prices-notes {
    display: flex;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.prices-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 162, 122, 0.2);
    border-radius: var(--border-radius);
}

.prices-note__icon {
    font-size: 28px;
    flex-shrink: 0;
}

.prices-note p {
    font-size: 14px;
    color: var(--color-white-muted);
}

/* ========== About ========== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-border {
    position: relative;
    padding: 8px;
    border: 1px solid rgba(201, 162, 122, 0.4);
    border-radius: var(--border-radius);
    background: rgba(201, 162, 122, 0.05);
}

.about-image-border::before {
    content: "";
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(201, 162, 122, 0.15);
    border-radius: calc(var(--border-radius) + 4px);
    pointer-events: none;
}

.about-image {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    border-radius: calc(var(--border-radius) - 4px);
    background: rgba(201, 162, 122, 0.1);
}

.about-content .section__title,
.about-content .heart-divider {
    text-align: left;
    margin-left: 0;
}

.about-content .heart-divider {
    justify-content: flex-start;
    margin-bottom: 28px;
}

.about-text {
    font-size: 15px;
    color: var(--color-white-muted);
    margin-bottom: 18px;
}

.about-text strong {
    color: var(--color-rose-gold-light);
    font-weight: 600;
}

.about-cta {
    margin-top: 8px;
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(201, 162, 122, 0.35);
    background: rgba(201, 162, 122, 0.08);
}

.about-cta__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-white-muted);
    margin-bottom: 20px;
}

.about-content .about-cta .btn {
    margin-top: 0;
}

.about-content .btn {
    margin-top: 12px;
}

/* ========== Footer ========== */

.site-footer {
    padding: 56px 0 32px;
    border-top: 1px solid rgba(201, 162, 122, 0.2);
    background: rgba(0, 0, 0, 0.4);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--color-rose-gold);
    margin-bottom: 6px;
}

.footer-tagline {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-white-muted);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-contact__item {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
}

.footer-contact__link {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    color: #ffffff;
    text-align: left;
}

.footer-contact__link:hover {
    color: var(--color-rose-gold-light);
}

.footer-contact__icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--color-rose-gold);
}

.footer-contact__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-contact a {
    color: #ffffff;
}

.footer-contact a:hover {
    color: var(--color-rose-gold-light);
}

.footer-legal {
    font-size: 13px;
    color: var(--color-white-muted);
}

.footer-legal__links {
    margin-top: 8px;
}

.footer-legal__links a {
    color: var(--color-white-muted);
    font-size: 12px;
}

.footer-legal__links a:hover {
    color: var(--color-rose-gold);
}

/* ========== Scroll Reveal ========== */

.reveal {
    opacity: 0;
    transition: opacity 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
}

/* Marquees nie von Reveal-Styles betroffen */
.testimonials-marquee {
    opacity: 1;
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* ========== Responsive ========== */

@media (max-width: 1024px) {
    .about-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(10, 10, 10, 0.98);
        border-bottom: 1px solid rgba(201, 162, 122, 0.2);
        padding: 16px 0;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
    }

    .navbar__menu.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar__menu li {
        width: 100%;
    }

    .navbar__menu a {
        display: block;
        padding: 14px 24px;
        text-align: center;
    }

    .hero__content,
    .hero__role {
        max-width: 100%;
    }

    .section {
        padding: 60px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-content .section__title,
    .about-content .heart-divider {
        text-align: center;
    }

    .about-content .heart-divider {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .about-content .btn {
        display: flex;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .treatments-picker {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .treatments-picker__btn {
        font-size: 11px;
        padding: 12px 8px;
    }

    .treatments-slider {
        gap: 0;
    }

    .treatments-slider__nav {
        display: none;
    }

    .treatments-slider__slide {
        height: 320px;
    }

    .testimonial-card {
        width: 300px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .booking-embed .booking-card {
        padding: 28px 20px;
    }

    .treatments-picker__options {
        grid-template-columns: 1fr;
    }

    .treatments-slider__slide {
        height: 280px;
    }

    .testimonial-card {
        width: 280px;
        min-height: 190px;
        padding: 22px;
    }
}
