* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #0b0908;
    color: #f3ece5;
    line-height: 1.6;
}

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

a {
    color: #d5a36a;
    text-decoration: none;
}

a:hover {
    color: #efc18d;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 8, 7, 0.88);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(213, 163, 106, 0.16);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border: 1px solid #d5a36a;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #d5a36a;
    font-size: 20px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 14px;
    letter-spacing: 0.22em;
    color: #f3ece5;
}

.brand-tag {
    font-size: 12px;
    color: #c5b4a2;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #f3ece5;
    font-size: 15px;
}

.nav-button {
    padding: 10px 16px;
    border: 1px solid rgba(213, 163, 106, 0.45);
    border-radius: 999px;
    background: rgba(213, 163, 106, 0.08);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 56px;
    background:
        radial-gradient(circle at top right, rgba(213, 163, 106, 0.14), transparent 30%),
        linear-gradient(180deg, #0b0908 0%, #120d0b 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(11, 9, 8, 0.95) 10%, rgba(11, 9, 8, 0.62) 45%, rgba(11, 9, 8, 0.35) 100%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.eyebrow,
.section-label {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 13px;
    color: #d5a36a;
    margin: 0 0 14px;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(46px, 7vw, 92px);
    line-height: 0.95;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    color: #f6efe8;
}

.hero-lead {
    font-size: 27px;
    line-height: 1.35;
    color: #f1e8df;
    max-width: 680px;
    margin-bottom: 18px;
}

.hero-description {
    max-width: 700px;
    color: #d5cbc1;
    font-size: 18px;
    margin-bottom: 28px;
}

.hero-highlight {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 28px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-highlight strong {
    color: #d5a36a;
    font-size: 24px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(180deg, #d5a36a 0%, #b78247 100%);
    color: #160f0b;
    border: 1px solid #d5a36a;
}

.button-primary:hover {
    color: #160f0b;
    filter: brightness(1.05);
}

.button-secondary {
    background: transparent;
    border: 1px solid rgba(243, 236, 229, 0.25);
    color: #f3ece5;
}

.button-secondary:hover {
    color: #fff5eb;
    border-color: rgba(213, 163, 106, 0.55);
}

.button-full {
    width: 100%;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 16px;
    max-width: 720px;
}

.meta-box {
    padding: 16px;
    border: 1px solid rgba(213, 163, 106, 0.18);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
}

.meta-label {
    display: block;
    font-size: 13px;
    color: #bba996;
    margin-bottom: 6px;
}

.meta-value {
    display: block;
    font-size: 17px;
    color: #f4ede6;
    font-weight: 600;
}

.hero-image-wrap {
    justify-self: end;
    width: 100%;
    max-width: 383px;
}

.hero-image-wrap img {
    width: 100%;
    border-radius: 26px;
    border: 1px solid rgba(213, 163, 106, 0.12);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.section {
    padding: 80px 0;
}

.section h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    color: #f7efe8;
}

.section p {
    color: #d8ccc1;
    font-size: 18px;
}

.section-dark {
    background: #100c0a;
}

.two-col {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: start;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 30px;
}

.info-card,
.contact-card,
.booking-box {
    border: 1px solid rgba(213, 163, 106, 0.14);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.info-card {
    padding: 28px;
}

.info-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #f5eee7;
    font-size: 22px;
}

.info-card p {
    margin-bottom: 0;
    font-size: 17px;
}

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

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 28px;
}

.pill-list span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(213, 163, 106, 0.22);
    background: rgba(213, 163, 106, 0.06);
    color: #f1e7dc;
}

.booking-box {
    padding: 32px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: center;
}

.booking-actions {
    display: grid;
    gap: 14px;
}

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

.contact-card {
    padding: 30px;
}

.contact-card h3 {
    margin-bottom: 8px;
    color: #f5eee7;
}

.site-footer {
    border-top: 1px solid rgba(213, 163, 106, 0.12);
    background: #090706;
}

.footer-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-inner p {
    margin: 0;
    color: #a89786;
    font-size: 14px;
}

@media (max-width: 980px) {
    .hero-grid,
    .two-col,
    .booking-box,
    .contact-grid,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .hero-image-wrap {
        justify-self: start;
        max-width: 100%;
    }

    .hero-meta {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

@media (max-width: 760px) {
    .header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 0;
    }

    .main-nav {
        width: 100%;
        gap: 14px;
    }

    .hero {
        padding-top: 42px;
    }

    .hero h1 {
        font-size: 56px;
    }

    .hero-lead {
        font-size: 22px;
    }

    .section {
        padding: 58px 0;
    }
}

.booking-page {
    background:
        radial-gradient(circle at top right, rgba(213, 163, 106, 0.10), transparent 28%),
        linear-gradient(180deg, #090807 0%, #110d0b 100%);
}

.booking-hero {
    padding: 44px 0 70px;
}

.booking-layout {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.booking-sidebar {
    padding: 18px 8px 0 0;
}

.booking-display-title {
    margin: 0 0 22px;
    font-size: clamp(54px, 7vw, 88px);
    line-height: 0.95;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    color: #f6efe8;
}

.booking-lead {
    margin: 0;
    max-width: 320px;
    font-size: 21px;
    line-height: 1.6;
    color: #e7ddd4;
}

.booking-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 26px 0 28px;
    width: 120px;
}

.booking-divider span {
    flex: 1;
    height: 1px;
    background: rgba(213, 163, 106, 0.38);
}

.booking-divider i {
    width: 8px;
    height: 8px;
    border: 1px solid #d5a36a;
    transform: rotate(45deg);
    display: inline-block;
}

.booking-feature-list {
    display: grid;
    gap: 26px;
    margin-bottom: 34px;
}

.booking-feature {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: start;
}

.booking-feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid rgba(213, 163, 106, 0.25);
    background: rgba(213, 163, 106, 0.08);
    display: grid;
    place-items: center;
    font-size: 30px;
}

.booking-feature h3 {
    margin: 0 0 6px;
    font-size: 20px;
    color: #f4ede6;
}

.booking-feature p {
    margin: 0;
    color: #cdbdaf;
    font-size: 16px;
    line-height: 1.55;
}

.booking-contact-box {
    padding: 26px;
    border: 1px solid rgba(213, 163, 106, 0.14);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.booking-contact-box p {
    margin: 0 0 18px;
    color: #f0e7df;
    font-size: 18px;
    line-height: 1.5;
}

.booking-phone {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #d5a36a;
}

.booking-messenger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid rgba(213, 163, 106, 0.35);
    color: #e9dfd6;
    background: transparent;
}

.booking-form-panel {
    min-width: 0;
}

.booking-form-card {
    padding: 34px 36px;
    border: 1px solid rgba(213, 163, 106, 0.14);
    background: rgba(255, 255, 255, 0.025);
    border-radius: 26px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.booking-form-section + .booking-form-section {
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid rgba(213, 163, 106, 0.12);
}

.booking-form-section h2 {
    margin: 0 0 22px;
    color: #d9a667;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.booking-form-section h2 small {
    color: #d9a667;
    font-size: inherit;
    font-weight: inherit;
    opacity: 0.9;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 22px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-field label {
    color: #f3ece5;
    font-size: 15px;
    font-weight: 600;
}

.form-field label span {
    color: #d08d6b;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    font: inherit;
    color: #f3ece5;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(213, 163, 106, 0.18);
    border-radius: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input,
.form-field select {
    min-height: 56px;
    padding: 0 18px;
}

.form-field textarea {
    min-height: 150px;
    padding: 16px 18px;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #8f7f72;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(213, 163, 106, 0.58);
    box-shadow: 0 0 0 4px rgba(213, 163, 106, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.booking-info-box {
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(213, 163, 106, 0.32);
    background: rgba(213, 163, 106, 0.07);
    color: #ddb27d;
    line-height: 1.6;
}

.booking-submit-button {
    width: 100%;
    min-height: 58px;
    margin-top: 28px;
    border: 0;
    border-radius: 14px;
    font: inherit;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(180deg, #d5a36a 0%, #c89257 100%);
    color: #150f0b;
    cursor: pointer;
    transition: transform 0.15s ease, filter 0.2s ease;
}

.booking-submit-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.booking-privacy-note {
    margin: 16px 0 0;
    color: #9b8b7d;
    font-size: 14px;
}

.alert {
    padding: 16px 18px;
    border-radius: 16px;
    margin-bottom: 18px;
    border: 1px solid;
}

.alert ul {
    margin: 0;
    padding-left: 18px;
}

.alert-success {
    background: rgba(82, 160, 82, 0.12);
    border-color: rgba(82, 160, 82, 0.35);
    color: #d9f3d9;
}

.alert-error {
    background: rgba(184, 64, 64, 0.12);
    border-color: rgba(184, 64, 64, 0.35);
    color: #ffd7d7;
}

@media (max-width: 1180px) {
    .booking-layout {
        grid-template-columns: 320px minmax(0, 1fr);
        gap: 28px;
    }

    .booking-display-title {
        font-size: clamp(44px, 6vw, 72px);
    }

    .booking-lead {
        font-size: 19px;
        max-width: none;
    }
}

@media (max-width: 900px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-sidebar {
        padding: 0;
    }

    .booking-lead {
        max-width: 100%;
    }

    .booking-contact-box {
        max-width: 520px;
    }
}

@media (max-width: 680px) {
    .booking-hero {
        padding: 28px 0 46px;
    }

    .booking-display-title {
        font-size: 58px;
    }

    .booking-form-card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .booking-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .booking-feature {
        grid-template-columns: 56px 1fr;
        gap: 14px;
    }

    .booking-feature-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .booking-phone {
        font-size: 24px;
    }

    .booking-submit-button {
        font-size: 18px;
        min-height: 54px;
    }

    .main-nav {
        gap: 10px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .nav-button {
        padding: 9px 14px;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .header-inner {
        min-height: auto;
        padding: 14px 0;
    }

    .brand-name {
        font-size: 12px;
        letter-spacing: 0.16em;
    }

    .brand-tag {
        font-size: 11px;
    }

    .booking-display-title {
        font-size: 46px;
    }

    .booking-lead {
        font-size: 18px;
    }

    .booking-contact-box {
        padding: 20px;
    }

    .booking-form-section h2 {
        font-size: 16px;
    }

    .form-field input,
    .form-field select {
        min-height: 52px;
    }

    .form-field textarea {
        min-height: 130px;
    }
}

/* Native date + select themed to match booking page */

.form-field input[type="date"],
.form-field select {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(213, 163, 106, 0.22);
    background: rgba(255, 255, 255, 0.025);
    color: #e9dfd6;
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-field input[type="date"] {
    padding-right: 52px;
}

.form-field input[type="date"]:focus,
.form-field select:focus {
    outline: none;
    border-color: rgba(213, 163, 106, 0.58);
    box-shadow: 0 0 0 4px rgba(213, 163, 106, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #f6e3c9;
}

/* Tekstfarge i native date */
.form-field input[type="date"]::-webkit-datetime-edit,
.form-field input[type="date"]::-webkit-datetime-edit-text,
.form-field input[type="date"]::-webkit-datetime-edit-month-field,
.form-field input[type="date"]::-webkit-datetime-edit-day-field,
.form-field input[type="date"]::-webkit-datetime-edit-year-field {
    color: #e9dfd6;
}

/* Kalenderikon i Chromium */
.form-field input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.85;
    filter: invert(78%) sepia(21%) saturate(523%) hue-rotate(344deg) brightness(93%) contrast(86%);
    cursor: pointer;
}

/* Select pil */
.form-field select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23d5a36a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    padding-right: 50px;
}

/* Option-rader i dropdown */
.form-field select option {
    background: #14100d;
    color: #e9dfd6;
}

/* Placeholder-ish first option */
.form-field select option[value=""] {
    color: #cbb49a;
}

/* For enkelte Chromium-varianter */
.form-field select,
.form-field input[type="date"] {
    color-scheme: dark;
}

/* Hover / active states on the field itself */
.form-field input[type="date"]:hover,
.form-field select:hover {
    border-color: rgba(213, 163, 106, 0.40);
    background: rgba(255, 255, 255, 0.035);
}

/* Custom time dropdown */

.time-select {
    position: relative;
}

.time-select-trigger {
    width: 100%;
    min-height: 56px;
    padding: 0 22px 0 28px;
    border-radius: 22px;
    border: 1px solid rgba(213, 163, 106, 0.20);
    background: rgba(255, 255, 255, 0.025);
    color: #f0e2d2;
    font: inherit;
    font-size: 17px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(213, 163, 106, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.time-select-trigger:hover {
    border-color: rgba(213, 163, 106, 0.34);
    background: rgba(255, 255, 255, 0.035);
}

.time-select.is-open .time-select-trigger,
.time-select-trigger:focus {
    outline: none;
    border-color: rgba(213, 163, 106, 0.52);
    background: rgba(255, 255, 255, 0.04);
    box-shadow:
        0 0 0 4px rgba(213, 163, 106, 0.07),
        inset 0 0 0 1px rgba(213, 163, 106, 0.08);
}

.time-select-chevron {
    color: #d5a36a;
    font-size: 22px;
    line-height: 1;
    transform: translateY(-1px);
}

.time-select.is-open .time-select-chevron {
    transform: rotate(180deg) translateY(1px);
}

.time-select-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 60;
    display: none;
    padding: 8px;
    background: #3b3a3a;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.time-select.is-open .time-select-menu {
    display: block;
}

.time-select-option {
    width: 100%;
    min-height: 28px;
    padding: 0 4px;
    border: 0;
    background: transparent;
    color: #f2efe9;
    font: inherit;
    font-size: 15px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.time-select-option:hover {
    background: rgba(213, 163, 106, 0.10);
    color: #f6e3c9;
}

.time-select-option.is-selected {
    background: rgba(213, 163, 106, 0.16);
    color: #f6e3c9;
}

.time-select-placeholder {
    color: #f2efe9;
    background: rgba(157, 187, 233, 0.95);
    color: #2a2a2a;
    margin-bottom: 2px;
}

.time-select-placeholder:hover {
    background: rgba(157, 187, 233, 0.95);
    color: #2a2a2a;
}

@media (max-width: 680px) {
    .time-select-trigger {
        min-height: 54px;
        font-size: 18px;
        padding: 0 18px 0 22px;
    }

    .time-select-option {
        min-height: 42px;
        font-size: 17px;
    }
}

.time-select-empty {
    padding: 14px 16px;
    color: #c9ae8c;
    font-size: 15px;
    line-height: 1.5;
}
/* === FLATPICKR DARK THEME CLEAN OVERRIDE === */

.flatpickr-calendar,
.flatpickr-days,
.dayContainer,
.flatpickr-weekdays,
.flatpickr-months,
.flatpickr-month,
.flatpickr-innerContainer {
    background: #3b3a3a !important;
    color: #f0e2d2 !important;
}

.flatpickr-calendar {
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 0 !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28) !important;
}

.flatpickr-current-month,
.flatpickr-current-month input.cur-year,
.flatpickr-monthDropdown-months {
    color: #f0e2d2 !important;
    background: #3b3a3a !important;
}

.flatpickr-weekday {
    color: #d5c2aa !important;
    background: #3b3a3a !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

.flatpickr-day {
    color: #f2efe9 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    font-size: 14px !important;
}

.flatpickr-day:hover {
    background: rgba(213, 163, 106, 0.16) !important;
    color: #f6e3c9 !important;
}

.flatpickr-day.today {
    border: 1px solid rgba(213, 163, 106, 0.55) !important;
}

.flatpickr-day.selected {
    background: rgba(213, 163, 106, 0.28) !important;
    color: #fff3df !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.flatpickr-disabled {
    color: rgba(240, 226, 210, 0.28) !important;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    color: #d5a36a !important;
    fill: #d5a36a !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: #d5a36a !important;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
    border-bottom-color: #3b3a3a !important;
}

/* Reserved/requested time states */
.time-select-option.is-booked {
    cursor: not-allowed;
    opacity: 1;
}

.time-select-option.is-pending {
    color: rgba(240, 226, 210, 0.45);
    font-style: italic;
}

.time-select-option.is-confirmed {
    color: rgba(240, 226, 210, 0.32);
    font-style: italic;
}

.time-select-option.is-booked:hover {
    background: transparent;
}
.time-select-option.is-booked {
    position: relative;
}

.time-select-option.is-booked:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    padding: 3px 8px;
    font-size: 12px;
    color: #1b120d;
    background: #d5a36a;
    border-radius: 8px;
    white-space: nowrap;
    pointer-events: none;
}
.time-select-option.is-disabled {
    position: relative;
    cursor: not-allowed;
}

.time-select-option.is-disabled::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    padding: 3px 8px;
    font-size: 11px;
    color: #1b120d;
    background: #d5a36a;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    pointer-events: none;
}

.time-select-option.is-disabled:hover::after {
    opacity: 1;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* === HEIMDALL HEADER LOGO FIX === */
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-logo {
    display: block;
    width: auto !important;
    height: 44px !important;
    max-width: 190px;
    max-height: 44px;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand-text {
    min-width: 0;
}

@media (max-width: 760px) {
    .brand-logo {
        height: 38px !important;
        max-height: 38px;
        max-width: 160px;
    }
}
.brand-logo {
    display: block;
    width: auto;
    height: 44px;
    max-height: 44px;
    object-fit: contain;
}
