:root {
    --bs-navy: #0d2747;
    --bs-blue: #2772d3;
    --bs-green: #17ad68;
    --bs-orange: #ffaf19;
    --bs-purple: #7042c1;
    --bs-white: #ffffff;
    --bs-text-secondary: #536174;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body.beach-service-page {
    background: #edf5fb;
    color: var(--bs-navy);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

button,
a {
    font: inherit;
}

.bs-customer-page {
    min-height: 100vh;
    background:
        linear-gradient(
            180deg,
            rgba(235, 247, 255, 0.24),
            rgba(255, 255, 255, 0.86)
        ),
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=85")
        center top / cover fixed;
}

.bs-hero {
    min-height: 625px;
    padding: 42px 40px 110px;
    background: rgba(235, 246, 253, 0.25);
}

.bs-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1180px;
    margin: 0 auto;
}

.bs-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bs-logo-icon {
    font-size: 48px;
}

.bs-logo strong,
.bs-logo small {
    display: block;
}

.bs-logo strong {
    font-size: 31px;
    letter-spacing: 1px;
}

.bs-logo small {
    margin-top: 3px;
    font-size: 15px;
    letter-spacing: 5px;
}

.bs-language-button {
    padding: 16px 22px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--bs-navy);
    cursor: pointer;
    font-weight: 700;
}

.bs-welcome {
    max-width: 760px;
    margin: 70px auto 0;
    text-align: center;
}

.bs-welcome-title {
    margin: 0 0 16px;
    font-size: 30px;
    font-weight: 800;
}

.bs-umbrella-icon {
    font-size: 64px;
    line-height: 1;
}

.bs-umbrella-label {
    margin: 10px 0 0;
    font-size: 46px;
    font-weight: 900;
    letter-spacing: 2px;
}

.bs-welcome h1 {
    margin: -4px 0 0;
    font-size: clamp(96px, 12vw, 150px);
    line-height: 0.98;
}

.bs-wave {
    margin-top: 7px;
    color: var(--bs-blue);
    font-size: 72px;
    line-height: 0.65;
}

.bs-intro {
    margin: 30px 0 0;
    font-size: 22px;
    line-height: 1.5;
}

.bs-actions-card {
    width: min(950px, calc(100% - 40px));
    margin: -75px auto 40px;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 60px rgba(13, 39, 71, 0.15);
    backdrop-filter: blur(16px);
}

.bs-action {
    display: grid;
    grid-template-columns: 82px 1fr 35px;
    align-items: center;
    width: 100%;
    min-height: 136px;
    margin-bottom: 20px;
    padding: 22px 30px;
    border: 0;
    border-radius: 22px;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease;
}

.bs-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(13, 39, 71, 0.17);
}

.bs-action:active {
    transform: translateY(1px);
}

.bs-action-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    font-size: 31px;
    font-weight: 800;
}

.bs-action-content {
    display: block;
}

.bs-action-content strong,
.bs-action-content small {
    display: block;
}

.bs-action-content strong {
    margin-bottom: 8px;
    font-size: 29px;
}

.bs-action-content small {
    font-size: 18px;
    line-height: 1.4;
}

.bs-action-arrow {
    justify-self: end;
    font-size: 57px;
    line-height: 1;
}

.bs-action-menu {
    border: 1px solid #9ec3f7;
    background: #f8fbff;
    color: var(--bs-blue);
}

.bs-action-menu .bs-action-icon {
    background: var(--bs-blue);
    color: var(--bs-white);
}

.bs-action-menu small {
    color: var(--bs-text-secondary);
}

.bs-action-order,
.bs-action-help,
.bs-action-payment {
    color: var(--bs-white);
}

.bs-action-order {
    background: var(--bs-green);
}

.bs-action-help {
    background: var(--bs-orange);
}

.bs-action-payment {
    background: var(--bs-purple);
}

.bs-action-order .bs-action-icon,
.bs-action-help .bs-action-icon,
.bs-action-payment .bs-action-icon {
    background: rgba(255, 255, 255, 0.2);
}

.bs-information {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 28px;
    padding: 27px;
    border: 1px solid #dce4ec;
    border-radius: 20px;
    background: #fafcfe;
}

.bs-information-icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 45px;
    height: 45px;
    border: 2px solid var(--bs-navy);
    border-radius: 50%;
    font-size: 23px;
    font-weight: 900;
}

.bs-information strong {
    font-size: 17px;
}

.bs-information p {
    margin: 8px 0 0;
    color: var(--bs-text-secondary);
}

@media (max-width: 700px) {
    .bs-hero {
        min-height: 500px;
        padding: 24px 18px 90px;
    }

    .bs-logo-icon {
        font-size: 35px;
    }

    .bs-logo strong {
        font-size: 20px;
    }

    .bs-logo small {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .bs-language-button {
        padding: 11px 14px;
        font-size: 13px;
    }

    .bs-welcome {
        margin-top: 54px;
    }

    .bs-welcome-title {
        font-size: 25px;
    }

    .bs-umbrella-icon {
        font-size: 47px;
    }

    .bs-umbrella-label {
        font-size: 32px;
    }

    .bs-welcome h1 {
        font-size: 86px;
    }

    .bs-wave {
        font-size: 52px;
    }

    .bs-intro {
        margin-top: 22px;
        font-size: 16px;
    }

    .bs-actions-card {
        width: calc(100% - 24px);
        margin-top: -58px;
        padding: 16px;
        border-radius: 23px;
    }

    .bs-action {
        grid-template-columns: 57px 1fr 23px;
        min-height: 102px;
        margin-bottom: 14px;
        padding: 16px;
        border-radius: 17px;
    }

    .bs-action-icon {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }

    .bs-action-content strong {
        margin-bottom: 4px;
        font-size: 19px;
    }

    .bs-action-content small {
        font-size: 13px;
    }

    .bs-action-arrow {
        font-size: 38px;
    }

    .bs-information {
        padding: 19px;
    }
}
.bs-language-selector {
    position: relative;
}

.bs-language-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-width: 140px;
    height: 52px;
    padding: 0 22px;

    border: none;
    border-radius: 18px;

    background: rgba(255,255,255,.95);
    color: var(--bs-navy);

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 8px 24px rgba(13,39,71,.10);

    transition: .2s;
}

.bs-language-button:hover{
    background:#fff;
    transform:translateY(-1px);
}

.bs-language-button svg{
    width:16px;
    height:16px;

    display:block;
    flex-shrink:0;
}

.bs-language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 20;
    min-width: 150px;
    padding: 8px;
    border: 1px solid rgba(13, 39, 71, 0.12);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(13, 39, 71, 0.18);
}

.bs-language-menu[hidden] {
    display: none;
}

.bs-language-menu a {
    display: block;
    padding: 11px 13px;
    border-radius: 9px;
    color: var(--bs-navy);
    font-weight: 700;
    text-decoration: none;
}

.bs-language-menu a:hover,
.bs-language-menu a:focus-visible {
    background: #edf5fb;
}
.bs-action:disabled {
    cursor: wait;
    opacity: 0.75;
}

.bs-action.is-loading {
    pointer-events: none;
}

.bs-request-notice {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;

    max-width: min(390px, calc(100% - 32px));
    padding: 16px 20px;

    border-radius: 16px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;

    box-shadow: 0 16px 40px rgba(13, 39, 71, 0.22);

    opacity: 0;
    visibility: hidden;

    transform: translateY(18px);

    transition:
        opacity 180ms ease,
        transform 180ms ease,
        visibility 180ms ease;
}

.bs-request-notice.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bs-request-notice.is-success {
    background: var(--bs-green);
}

.bs-request-notice.is-error {
    background: #d93b3b;
}

@media (max-width: 700px) {
    .bs-request-notice {
        right: 16px;
        bottom: 16px;
        left: 16px;

        max-width: none;

        text-align: center;
    }
}