/* ========================================
   LUNA LUXURY THEME
========================================= */

:root {
    --primary: #3a2030;
    --primary-dark: #241820;
    --primary-deep: #160e14;
    --primary-light: #eadde0;
    --champagne: #c6a56b;
    --champagne-light: #ead7aa;
    --champagne-soft: #f5ead2;
    --rose: #cfa7ad;
    --background: #eee7df;
    --surface: #fffdf9;
    --surface-soft: #f8f2e9;
    --text-dark: #281d23;
    --text-medium: #756a6e;
    --text-light: #9f9497;
    --border: rgba(117, 90, 70, 0.16);
    --success: #567560;
    --danger: #a44f59;
    --shadow: 0 24px 70px rgba(31, 17, 25, 0.14);
    --small-shadow: 0 10px 30px rgba(31, 17, 25, 0.08);
    --gold-shadow: 0 14px 34px rgba(130, 92, 35, 0.2);
    --radius-large: 30px;
    --radius-medium: 20px;
    --radius-small: 13px;
}

html {
    background: var(--primary-deep);
}

body {
    padding: 0;
    color: var(--text-dark);
    background:
        radial-gradient(circle at 10% 0%, rgba(198, 165, 107, 0.18), transparent 34rem),
        radial-gradient(circle at 92% 82%, rgba(207, 167, 173, 0.13), transparent 32rem),
        var(--primary-deep);
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: -0.01em;
}

button,
input,
textarea {
    font-family: inherit;
}

button,
a,
input,
textarea {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(198, 165, 107, 0.42);
    outline-offset: 3px;
}

::selection {
    color: var(--surface);
    background: var(--primary);
}

.app-container {
    position: relative;
    max-width: 720px;
    min-height: 100svh;
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 253, 249, 0.96), rgba(255, 253, 249, 0.96)),
        radial-gradient(circle at 15% 18%, var(--champagne-soft), transparent 22rem);
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.34);
}

/* Header */

.salon-header {
    position: sticky;
    top: 0;
    z-index: 50;
    justify-content: space-between;
    min-height: 74px;
    padding: max(11px, env(safe-area-inset-top)) 22px 11px;
    color: #fffaf1;
    background:
        linear-gradient(100deg, rgba(28, 17, 25, 0.98), rgba(58, 32, 48, 0.98));
    border-bottom: 1px solid rgba(234, 215, 170, 0.22);
    box-shadow: 0 8px 28px rgba(20, 10, 17, 0.2);
    backdrop-filter: blur(18px);
}

.salon-header::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: -1px;
    left: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--champagne), transparent);
    opacity: 0.48;
}

.salon-logo {
    gap: 12px;
    color: #fffaf1;
}

.brand-icon {
    display: block;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    object-fit: cover;
    border: 1px solid rgba(234, 215, 170, 0.48);
    border-radius: 15px;
    box-shadow:
        0 8px 20px rgba(7, 3, 6, 0.32),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.logo-text strong {
    color: #fffaf1;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 0.9;
    text-transform: uppercase;
}

.logo-text small {
    margin-top: 7px;
    color: var(--champagne-light);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.24em;
}

.header-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 250, 241, 0.72);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.header-status i {
    width: 7px;
    height: 7px;
    background: #98bd9e;
    border: 2px solid rgba(152, 189, 158, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(152, 189, 158, 0.1);
}

/* Shared screens and typography */

.screen {
    padding: 36px 26px 52px;
    animation: luna-screen-in 0.42s ease both;
}

@keyframes luna-screen-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.screen-heading {
    margin-bottom: 30px;
}

.screen-heading h2,
.my-appointments-screen > h2,
.confirmation-screen h2,
.location-section h2,
.privacy-page h1,
.privacy-page h2 {
    color: var(--primary-dark);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.screen-heading h2,
.my-appointments-screen > h2,
.confirmation-screen h2 {
    margin-bottom: 9px;
    font-size: clamp(2.3rem, 9vw, 3.2rem);
    line-height: 0.98;
}

.screen-heading > p:last-child,
.screen-description {
    max-width: 500px;
    color: var(--text-medium);
    font-size: 0.94rem;
    line-height: 1.7;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #96733d;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.24em;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, var(--champagne), transparent);
}

.screen-top {
    margin-bottom: 30px;
}

.back-button {
    width: 44px;
    height: 44px;
    color: var(--primary-dark);
    background: rgba(255, 253, 249, 0.88);
    border: 1px solid rgba(198, 165, 107, 0.34);
    box-shadow: var(--small-shadow);
    transition: 0.22s ease;
}

.back-button:hover {
    color: var(--surface);
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateX(-2px);
}

.step-indicator {
    padding: 8px 13px;
    color: #8c6a35;
    background: rgba(245, 234, 210, 0.72);
    border: 1px solid rgba(198, 165, 107, 0.26);
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

/* Welcome hero */

.welcome-screen {
    display: block;
    min-height: auto;
    padding: 0 0 48px;
    overflow: visible;
    background: var(--surface);
}

.welcome-screen::before {
    display: none;
}

.welcome-hero {
    position: relative;
    z-index: 1;
    min-height: 650px;
    padding: 32px 28px 38px;
    overflow: hidden;
    color: #fffaf1;
    background:
        linear-gradient(150deg, rgba(20, 12, 18, 0.97), rgba(58, 32, 48, 0.98)),
        var(--primary-dark);
    border-radius: 0 0 44px 44px;
    box-shadow: 0 26px 58px rgba(34, 19, 28, 0.22);
    text-align: center;
}

.welcome-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(115deg, transparent 47%, rgba(255, 255, 255, 0.025) 48%, transparent 50%),
        radial-gradient(circle at 50% 15%, rgba(234, 215, 170, 0.12), transparent 32%);
    pointer-events: none;
}

.welcome-hero::after {
    content: "";
    position: absolute;
    right: -115px;
    bottom: 62px;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(198, 165, 107, 0.16);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(198, 165, 107, 0.025);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero-glow-one {
    top: 32px;
    left: -85px;
    width: 230px;
    height: 230px;
    background: radial-gradient(circle, rgba(198, 165, 107, 0.18), transparent 68%);
}

.hero-glow-two {
    right: 8%;
    bottom: -110px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(207, 167, 173, 0.13), transparent 68%);
}

.welcome-decoration {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: auto;
    height: auto;
    margin: 0 auto 11px;
    color: var(--champagne-light);
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.welcome-decoration span {
    font-size: 0.62rem;
}

.welcome-decoration .decoration-line {
    width: 52px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--champagne), transparent);
}

.welcome-logo {
    position: relative;
    z-index: 2;
    display: block;
    width: 174px;
    height: 174px;
    margin: 0 auto 14px;
    padding: 12px;
    object-fit: contain;
    background:
        radial-gradient(circle at 45% 32%, #fffef9, #f4e8d5 72%, #e3cc9b);
    border: 1px solid rgba(234, 215, 170, 0.72);
    border-radius: 50%;
    box-shadow:
        0 18px 50px rgba(6, 2, 5, 0.34),
        0 0 0 7px rgba(198, 165, 107, 0.06),
        inset 0 0 26px rgba(198, 165, 107, 0.12);
}

.welcome-hero > .eyebrow {
    position: relative;
    z-index: 2;
    justify-content: center;
    color: var(--champagne-light);
}

.welcome-hero > .eyebrow::before {
    display: none;
}

.welcome-hero h1 {
    position: relative;
    z-index: 2;
    max-width: 570px;
    margin: 0 auto 14px;
    color: #fffaf1;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.55rem, 10vw, 4.25rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 0.92;
    text-shadow: 0 8px 34px rgba(0, 0, 0, 0.22);
}

.welcome-description {
    position: relative;
    z-index: 2;
    max-width: 460px;
    margin: 0 auto 24px;
    color: rgba(255, 250, 241, 0.7);
    font-size: 0.91rem;
    line-height: 1.7;
}

.welcome-actions {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 11px;
    max-width: 470px;
    margin: 0 auto;
}

.primary-button {
    position: relative;
    min-height: 56px;
    overflow: hidden;
    color: var(--primary-deep);
    background: linear-gradient(135deg, #ead7aa 0%, #c6a56b 48%, #ecdcb4 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    box-shadow: var(--gold-shadow);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.085em;
    text-transform: uppercase;
}

.primary-button::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -50%;
    width: 36%;
    height: 220%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
    transform: rotate(22deg);
    transition: left 0.6s ease;
}

.primary-button:hover::before {
    left: 120%;
}

.primary-button:hover {
    color: var(--primary-deep);
    background: linear-gradient(135deg, #f3e4bc, #c7a15c 55%, #f2e2b9);
    transform: translateY(-2px);
}

.primary-button:disabled {
    color: #a39a91;
    background: #e5ded5;
    border-color: transparent;
    box-shadow: none;
}

.secondary-button {
    min-height: 56px;
    margin-top: 0;
    padding: 14px 20px;
    color: #fffaf1;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(234, 215, 170, 0.52);
    border-radius: 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: 0.22s ease;
}

.secondary-button:hover {
    color: var(--primary-deep);
    background: var(--champagne-light);
    border-color: var(--champagne-light);
    transform: translateY(-2px);
}

.admin-demo-button {
    grid-column: 1 / -1;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    color: var(--champagne-light);
    background: rgba(234, 215, 170, 0.08);
    border: 1px solid rgba(234, 215, 170, 0.32);
    border-radius: 14px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.22s ease;
}

.admin-demo-button:hover {
    color: var(--primary-deep);
    background: var(--champagne-light);
    border-color: var(--champagne-light);
    transform: translateY(-2px);
}

.hero-note {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 17px;
    color: rgba(255, 250, 241, 0.55);
    font-size: 0.67rem;
    letter-spacing: 0.03em;
}

.hero-note span {
    display: grid;
    place-items: center;
    width: 17px;
    height: 17px;
    color: var(--champagne-light);
    border: 1px solid rgba(234, 215, 170, 0.4);
    border-radius: 50%;
    font-size: 0.58rem;
}

/* Details and location */

.salon-details {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: -22px 22px 38px;
}

.detail-item {
    gap: 12px;
    min-height: 94px;
    padding: 18px 15px;
    background: rgba(255, 253, 249, 0.98);
    border: 1px solid rgba(198, 165, 107, 0.22);
    border-radius: 19px;
    box-shadow: 0 13px 36px rgba(32, 18, 26, 0.1);
}

.detail-icon {
    width: 38px;
    min-width: 38px;
    height: 38px;
    color: #9a7338;
    background: linear-gradient(145deg, #fbf4e5, #ead6ac);
    border: 1px solid rgba(198, 165, 107, 0.32);
}

.detail-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.detail-item strong {
    color: var(--primary-dark);
    font-size: 0.78rem;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.detail-item div span {
    margin-top: 5px;
    color: var(--text-medium);
    font-size: 0.73rem;
    line-height: 1.45;
}

.location-section {
    width: auto;
    margin: 0 22px;
    padding: 27px;
    background: linear-gradient(150deg, #faf4e9, #fffdf9 60%);
    border: 1px solid rgba(198, 165, 107, 0.22);
    border-radius: 28px;
    box-shadow: var(--small-shadow);
}

.location-section h2 {
    margin-bottom: 18px;
    font-size: 2.05rem;
    line-height: 1;
}

.map-container {
    position: relative;
    height: 250px;
    overflow: hidden;
    border: 1px solid rgba(198, 165, 107, 0.28);
    border-radius: 19px;
    box-shadow: 0 14px 35px rgba(36, 24, 32, 0.1);
}

.map-container::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 6px solid rgba(255, 253, 249, 0.38);
    border-radius: inherit;
    pointer-events: none;
}

.map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    margin-top: 14px;
    color: var(--primary-dark);
    background: transparent;
    border: 1px solid rgba(58, 32, 48, 0.3);
    border-radius: 13px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.22s ease;
}

.map-link:hover {
    color: var(--surface);
    background: var(--primary-dark);
}

/* Services */

.services-list {
    gap: 13px;
}

.service-card {
    position: relative;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 92px;
    padding: 18px 17px;
    overflow: hidden;
    background:
        linear-gradient(100deg, rgba(255, 253, 249, 0.99), rgba(248, 242, 233, 0.86));
    border: 1px solid rgba(198, 165, 107, 0.2);
    border-radius: 19px;
    box-shadow: 0 9px 24px rgba(31, 17, 25, 0.065);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 0;
    width: 2px;
    background: linear-gradient(var(--champagne-light), var(--champagne));
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transform: scaleY(0.35);
    transition: 0.25s ease;
}

.service-card::after {
    content: "→";
    position: absolute;
    right: 17px;
    bottom: 11px;
    color: rgba(154, 115, 56, 0.54);
    font-size: 0.9rem;
    transition: 0.22s ease;
}

.service-card:hover {
    border-color: rgba(198, 165, 107, 0.62);
    box-shadow: 0 16px 38px rgba(31, 17, 25, 0.11);
    transform: translateY(-3px);
}

.service-card:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

.service-card:hover::after {
    right: 13px;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, #f9efd9, #e9d3a6);
    border: 1px solid rgba(198, 165, 107, 0.3);
    border-radius: 16px;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.7);
    font-size: 1.35rem;
}

.service-information strong {
    margin-bottom: 5px;
    color: var(--primary-dark);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.08;
}

.service-information span {
    padding-right: 10px;
    color: var(--text-medium);
    font-size: 0.74rem;
    line-height: 1.45;
}

.service-price {
    align-self: start;
    padding: 7px 9px;
    color: #815f2e;
    background: rgba(245, 234, 210, 0.72);
    border: 1px solid rgba(198, 165, 107, 0.22);
    border-radius: 999px;
    font-size: 0.72rem;
}

/* Date, time and forms */

.selected-service-card {
    margin-bottom: 27px;
    padding: 19px;
    background: linear-gradient(120deg, var(--primary-dark), #4a293b);
    border: 1px solid rgba(234, 215, 170, 0.24);
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(31, 17, 25, 0.19);
}

.selected-service-card span {
    color: rgba(255, 250, 241, 0.58);
}

.selected-service-card strong {
    color: #fffaf1;
}

.selected-service-details strong {
    color: var(--champagne-light);
}

.booking-field label {
    margin-bottom: 9px;
    color: var(--primary-dark);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.045em;
}

.booking-field input,
.booking-field textarea {
    min-height: 54px;
    padding: 15px 16px;
    color: var(--text-dark);
    background: rgba(255, 253, 249, 0.92);
    border: 1px solid rgba(105, 80, 88, 0.18);
    border-radius: 13px;
    box-shadow: inset 0 1px 2px rgba(31, 17, 25, 0.025);
}

.booking-field textarea {
    min-height: 110px;
}

.booking-field input:focus,
.booking-field textarea:focus {
    border-color: var(--champagne);
    box-shadow:
        0 0 0 4px rgba(198, 165, 107, 0.12),
        0 7px 20px rgba(31, 17, 25, 0.045);
}

.optional-label {
    color: var(--text-light);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0;
}

.time-selection h3,
.booking-summary h3 {
    color: var(--primary-dark);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.42rem;
    font-weight: 700;
}

.time-instruction {
    color: var(--text-medium);
}

.time-slots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.time-slot {
    min-height: 58px;
    color: var(--primary-dark);
    background: rgba(255, 253, 249, 0.9);
    border: 1px solid rgba(105, 80, 88, 0.16);
    border-radius: 13px;
    box-shadow: 0 5px 14px rgba(31, 17, 25, 0.045);
    transition: 0.2s ease;
}

.time-slot:not(:disabled):hover {
    color: #7c5927;
    background: var(--champagne-soft);
    border-color: var(--champagne);
}

.time-slot.selected {
    color: var(--primary-deep);
    background: linear-gradient(135deg, #ead7aa, #c6a56b);
    border-color: var(--champagne);
    box-shadow: 0 9px 22px rgba(130, 92, 35, 0.22);
}

.time-slot:disabled {
    color: #aca2a4;
    background: #eee9e4;
    border-color: transparent;
    opacity: 0.72;
}

.booking-summary {
    padding: 22px;
    background:
        linear-gradient(150deg, rgba(250, 244, 233, 0.98), rgba(255, 253, 249, 0.98));
    border: 1px solid rgba(198, 165, 107, 0.24);
    border-radius: 21px;
    box-shadow: var(--small-shadow);
}

.summary-row {
    border-color: rgba(105, 80, 88, 0.1);
}

.summary-row span {
    color: var(--text-medium);
}

.summary-row strong {
    color: var(--primary-dark);
}

.booking-privacy-notice {
    color: var(--text-light);
    line-height: 1.65;
}

.booking-privacy-notice a {
    color: #8a652e;
    text-decoration-color: rgba(138, 101, 46, 0.35);
}

.booking-form-message,
.customer-appointments-message {
    color: var(--danger);
}

/* Appointments and confirmation */

.customer-appointments-group-title {
    color: var(--primary-dark);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.customer-appointment-card {
    padding: 20px;
    background: linear-gradient(145deg, #fffdf9, #faf5ed);
    border: 1px solid rgba(198, 165, 107, 0.22);
    border-radius: 20px;
    box-shadow: var(--small-shadow);
}

.customer-appointment-header h3 {
    color: var(--primary-dark);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.3rem;
}

.customer-appointment-status {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.035em;
}

.customer-appointment-detail {
    border-color: rgba(105, 80, 88, 0.1);
}

.cancel-appointment-button {
    min-height: 46px;
    color: var(--danger);
    background: transparent;
    border: 1px solid rgba(164, 79, 89, 0.3);
    border-radius: 12px;
    font-size: 0.74rem;
    font-weight: 700;
}

.confirmation-screen {
    min-height: calc(100svh - 74px);
    padding-block: 48px;
}

.confirmation-icon {
    position: relative;
    width: 92px;
    height: 92px;
    color: var(--primary-dark);
    background: linear-gradient(145deg, #f5e7c7, #c6a56b);
    border: 8px solid rgba(245, 234, 210, 0.62);
    box-shadow:
        0 18px 42px rgba(130, 92, 35, 0.22),
        0 0 0 1px rgba(198, 165, 107, 0.38);
}

.confirmation-message {
    color: var(--text-medium);
    line-height: 1.7;
}

.confirmation-summary {
    width: 100%;
}

.confirmation-screen .secondary-button {
    width: 100%;
    color: var(--primary-dark);
    background: transparent;
    border-color: rgba(58, 32, 48, 0.32);
}

.confirmation-screen .secondary-button:hover {
    color: var(--surface);
    background: var(--primary-dark);
}

/* Privacy */

.privacy-page {
    width: 100%;
    max-width: 650px;
    padding: 40px 28px 56px;
}

.privacy-page h1 {
    font-size: clamp(2.35rem, 8vw, 3.4rem);
    line-height: 1;
}

.privacy-page h2 {
    font-size: 1.55rem;
}

.privacy-page section {
    padding: 22px;
    background: rgba(255, 253, 249, 0.82);
    border: 1px solid rgba(198, 165, 107, 0.18);
    border-radius: 18px;
    box-shadow: 0 7px 22px rgba(31, 17, 25, 0.045);
}

.privacy-back-link {
    color: #87642f;
}

/* Footer */

.salon-footer {
    padding: 28px 22px max(28px, env(safe-area-inset-bottom));
    color: rgba(255, 250, 241, 0.6);
    background: var(--primary-deep);
    border-top: 1px solid rgba(234, 215, 170, 0.18);
    font-size: 0.67rem;
    letter-spacing: 0.04em;
}

.salon-footer a {
    color: var(--champagne-light);
}

/* Responsive */

@media (min-width: 721px) {
    .app-container {
        margin-block: 28px;
        min-height: calc(100svh - 56px);
        border: 1px solid rgba(234, 215, 170, 0.18);
        border-radius: 34px;
    }

    .salon-header {
        border-radius: 34px 34px 0 0;
    }

    .welcome-hero {
        border-radius: 0 0 44px 44px;
    }

    .services-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card {
        grid-template-columns: auto minmax(0, 1fr);
        align-content: start;
    }

    .service-price {
        grid-column: 2;
        justify-self: start;
        margin-top: 8px;
    }
}

@media (max-width: 520px) {
    .salon-header {
        padding-inline: 16px;
    }

    .brand-icon {
        width: 43px;
        height: 43px;
        border-radius: 13px;
    }

    .logo-text strong {
        font-size: 1.34rem;
    }

    .header-status {
        max-width: 64px;
        justify-content: flex-end;
        text-align: right;
        line-height: 1.25;
    }

    .screen {
        padding: 31px 18px 46px;
    }

    .welcome-screen {
        padding: 0 0 42px;
    }

    .welcome-hero {
        min-height: 628px;
        padding: 27px 20px 35px;
        border-radius: 0 0 34px 34px;
    }

    .welcome-logo {
        width: 160px;
        height: 160px;
        padding: 11px;
    }

    .welcome-hero h1 {
        font-size: clamp(2.55rem, 12vw, 3.25rem);
    }

    .welcome-actions {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .welcome-actions .secondary-button {
        min-height: 50px;
    }

    .salon-details {
        grid-template-columns: 1fr;
        margin: -18px 16px 32px;
    }

    .detail-item {
        min-height: 80px;
    }

    .location-section {
        margin-inline: 16px;
        padding: 21px;
    }

    .map-container {
        height: 220px;
    }

    .service-card {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 12px;
    }

    .service-price {
        grid-column: 2;
        justify-self: start;
        margin-top: 2px;
    }

    .service-card::after {
        bottom: 16px;
    }

    .time-slots {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 370px) {
    .header-status {
        display: none;
    }

    .welcome-hero {
        padding-inline: 16px;
    }

    .time-slots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* ========================================
   DIGITAL NEST DEMO
========================================= */
.demo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 38px;
    padding: 8px 16px;
    color: #fff7e6;
    background: linear-gradient(90deg, #26131f, #4d2638, #26131f);
    border-bottom: 1px solid rgba(225, 187, 111, 0.45);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    text-align: center;
}

.demo-banner strong {
    color: #e7c77d;
    letter-spacing: 0.08em;
}

.demo-data-note {
    margin: 0 0 18px;
    padding: 12px 14px;
    color: #5e4650;
    background: #fff7e8;
    border: 1px solid rgba(198, 165, 107, 0.4);
    border-radius: 14px;
    font-size: 0.84rem;
    line-height: 1.45;
}

.digital-nest-link {
    display: inline-block;
    margin-top: 8px;
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 520px) {
    .demo-banner {
        flex-direction: column;
        gap: 2px;
        padding: 7px 12px;
        font-size: 0.72rem;
    }
}
