/* Explain: Luxury yoga studio component styles and interactions with new color palette. - */
.site-header {
    background: linear-gradient(180deg, rgba(10, 6, 14, 0.86), rgba(10, 6, 14, 0.52));
    backdrop-filter: blur(18px);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--sage-dark);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-kicker::before {
    display: inline-block;
    width: 2.4rem;
    height: 1px;
    background: var(--accent-color);
    content: "";
}

.glass-panel {
    border: 1px solid var(--glass-border);
    background: linear-gradient(145deg, rgba(36, 22, 52, 0.78), rgba(60, 36, 85, 0.48));
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.arch-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(124, 64, 184, 0.38);
    background: var(--surface-color);
    box-shadow: var(--shadow-soft);
}

.arch-frame::after {
    position: absolute;
    inset: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.arch-frame-large {
    height: min(74vh, 720px);
    min-height: 500px;
    border-radius: 999px 999px 2.5rem 2.5rem;
}

.arch-frame-medium {
    height: 620px;
    max-width: 450px;
    border-radius: 999px 999px 2.1rem 2.1rem;
}

.floating-note {
    position: absolute;
    right: -1.5rem;
    bottom: 4rem;
    display: flex;
    max-width: 250px;
    align-items: center;
    gap: 0.85rem;
    border-radius: 999px;
    padding: 1rem 1.2rem;
    color: var(--text-color);
    font-size: 0.82rem;
    font-weight: 600;
}

.story-card {
    position: absolute;
    right: 0;
    bottom: 2.5rem;
    max-width: 290px;
    border-radius: 2rem;
    padding: 1.5rem;
}

.quiet-detail,
.amenity-row,
.contact-note {
    border: 1px solid var(--glass-border);
    border-radius: 1.6rem;
    background: rgba(36, 22, 52, 0.58);
    padding: 1.25rem;
}

.quiet-detail span {
    display: inline-flex;
    margin-bottom: 0.9rem;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
}

.quiet-detail p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

.class-card {
    min-height: 360px;
    border-radius: 2.2rem;
    padding: 2rem;
    transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.class-card:hover {
    border-color: rgba(233, 155, 59, 0.58);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.4);
    transform: translateY(-6px);
}

.amenity-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
}

.amenity-dot {
    width: 0.8rem;
    height: 0.8rem;
    margin-top: 0.4rem;
    border-radius: 999px;
    background: var(--accent-color);
    box-shadow: 0 0 0 0.45rem var(--terracotta-soft);
}

.amenity-image-wrap {
    height: 660px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    border-radius: 3rem 999px 999px 3rem;
    box-shadow: var(--shadow-soft);
}

.booking-form,
.booking-overlay-panel {
    border-radius: 2.4rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.form-label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--text-color);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.form-status.success {
    color: var(--accent-color);
}

.form-status.error {
    color: #ff4d4d;
}

.mobile-book-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    border-top: 1px solid var(--glass-border);
    background: rgba(10, 6, 14, 0.86);
    padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
    backdrop-filter: blur(18px);
}

/* Пока открыто мобильное меню, плавающая панель Telegram не должна перекрывать его нижние пункты */
body.nav-open .mobile-book-bar {
    display: none;
}

/* Нижний отступ у прокручиваемой области меню, чтобы последний пункт не упирался в край экрана / safe area */
.nav-overlay-body {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
}

.booking-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
}

.booking-overlay.is-open {
    display: block;
}

.booking-overlay-panel {
    min-height: calc(100vh - 2rem);
    background: var(--background-color);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

/* ---- Ежедневный подарок (круглая кнопка на аватаре, js/app.js) ---- */
#gift-wrap.flex {
    display: flex;
}

.gift-btn {
    position: relative;
    display: inline-flex;
    width: 3.75rem;
    height: 3.75rem;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(253, 252, 255, 0.18);
    border-radius: 999px;
    background: linear-gradient(140deg, var(--primary-color) 0%, #b0459a 55%, var(--accent-color) 100%);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(124, 64, 184, 0.45), 0 0 0 0 rgba(233, 155, 59, 0.55);
    transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease, opacity 200ms ease;
}

.gift-btn.is-ready {
    animation: gift-pulse 2.2s ease-out infinite;
}

.gift-btn.is-ready:hover {
    transform: scale(1.08) rotate(-6deg);
}

.gift-btn.is-ready:active {
    transform: scale(0.94);
}

/* Кулдаун: кнопка «выключена», но остаётся кликабельной — показывает время до следующего подарка */
.gift-btn.is-locked {
    cursor: default;
    filter: grayscale(0.85);
    opacity: 0.55;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.gift-btn.is-busy {
    cursor: wait;
    animation: gift-shake 500ms ease-in-out infinite;
}

.gift-btn:disabled {
    cursor: wait;
    opacity: 0.4;
}

.gift-btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

.gift-badge {
    margin-top: 0.35rem;
    min-width: 2.4rem;
    padding: 0.15rem 0.55rem;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    background: var(--nav-bg);
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: center;
    white-space: nowrap;
    backdrop-filter: blur(12px);
}

.gift-badge:empty {
    display: none;
}

.gift-btn.is-locked + .gift-badge {
    color: var(--text-muted);
}

.gift-tip {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    max-width: 14rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    background: var(--nav-bg);
    color: var(--text-color);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.35;
    text-align: right;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 200ms ease, transform 200ms ease;
    backdrop-filter: blur(12px);
}

.gift-tip.is-visible,
#gift-wrap:hover .gift-tip:not(:empty),
#gift-wrap:focus-within .gift-tip:not(:empty) {
    opacity: 1;
    transform: translateY(0);
}

.gift-tip.error {
    color: #ff6b6b;
}

/* «+5», улетающее вверх после открытия */
.gift-float {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 30;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    pointer-events: none;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    animation: gift-float 1.3s ease-out forwards;
}

@keyframes gift-pulse {
    0% { box-shadow: 0 12px 30px rgba(124, 64, 184, 0.45), 0 0 0 0 rgba(233, 155, 59, 0.55); }
    70% { box-shadow: 0 12px 30px rgba(124, 64, 184, 0.45), 0 0 0 16px rgba(233, 155, 59, 0); }
    100% { box-shadow: 0 12px 30px rgba(124, 64, 184, 0.45), 0 0 0 0 rgba(233, 155, 59, 0); }
}

@keyframes gift-shake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-10deg) scale(1.05); }
    75% { transform: rotate(10deg) scale(1.05); }
}

@keyframes gift-float {
    0% { opacity: 0; transform: translate(-50%, 0) scale(0.6); }
    20% { opacity: 1; transform: translate(-50%, -0.5rem) scale(1.15); }
    100% { opacity: 0; transform: translate(-50%, -4rem) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .gift-btn.is-ready,
    .gift-btn.is-busy {
        animation: none;
    }
}

/* ---- Редактор контента (расписание, победители) ---- */
/* Иконки Font Awesome, которых нет в собранном подмножестве vendor.css (шрифты полные, нужны только правила) */
.fa-pen::before { content: "\f304"; }
.fa-plus::before { content: "\2b"; }
.fa-trash::before { content: "\f1f8"; }
.fa-check::before { content: "\f00c"; }
.fa-lock::before { content: "\f023"; }
.fa-lock-open::before { content: "\f3c1"; }
.fa-arrow-up::before { content: "\f062"; }
.fa-arrow-down::before { content: "\f063"; }
.fa-arrow-left::before { content: "\f060"; }
.fa-arrow-right::before { content: "\f061"; }
.fa-image::before { content: "\f03e"; }
.fa-upload::before { content: "\f093"; }
.fa-hourglass-half::before { content: "\f252"; }
.fa-lightbulb::before { content: "\f0eb"; }
.fa-flag-checkered::before { content: "\f11e"; }

.editor-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.editor-bar.hidden {
    display: none;
}

.editor-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 2.4rem;
    padding: 0.45rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    background: var(--surface-color);
    color: var(--text-color);
    font: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    transition: border-color 200ms ease, background 200ms ease;
}

.editor-btn:hover {
    border-color: var(--accent-color);
    background: var(--glass-bg);
}

.editor-btn.primary {
    border-color: transparent;
    background: var(--button-color);
    color: #fff;
}

.editor-btn.primary:hover {
    background: var(--primary-hover);
}

.editor-btn.danger {
    color: #ff6b6b;
}

.editor-btn:disabled {
    opacity: 0.5;
    cursor: wait;
}

.editor-row {
    display: grid;
    gap: 0.6rem;
    padding: 1rem;
    border: 1px dashed var(--glass-border);
    border-radius: 1.25rem;
    background: rgba(36, 22, 52, 0.58);
}

.editor-row-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.4rem;
}

.editor-icon-btn {
    display: inline-flex;
    width: 2.1rem;
    height: 2.1rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.editor-icon-btn:hover {
    border-color: var(--accent-color);
    color: var(--text-color);
}

.editor-icon-btn.danger:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.editor-label {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.editor-input {
    width: 100%;
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--glass-border);
    border-radius: 0.8rem;
    background: var(--field-bg);
    color: var(--text-color);
    font: inherit;
    font-size: 0.9rem;
}

.editor-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

textarea.editor-input {
    min-height: 7rem;
    line-height: 1.6;
    resize: vertical;
}

select.editor-input option {
    background: var(--surface-color);
    color: var(--text-color);
}

.editor-status {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.editor-status.error {
    color: #ff6b6b;
}

.editor-status.success {
    color: var(--accent-color);
}

.editor-empty {
    padding: 1.5rem;
    border: 1px dashed var(--glass-border);
    border-radius: 1.25rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
}

/* ---- Дорожная карта: лента кружочков «сделано → в процессе → в будущем» (js/app.js) ---- */
.roadmap {
    --rm-size: 6rem;          /* диаметр кружка */
    --rm-top: 2.4rem;         /* место под заголовок группы над кружками */
    --rm-line: rgba(253, 252, 255, 0.28);
}

.roadmap.hidden {
    display: none;
}

.roadmap-scroll {
    overflow-x: auto;
    padding: 0.5rem 0 1.25rem;
    scrollbar-width: thin;
    scrollbar-color: var(--glass-border) transparent;
    -webkit-overflow-scrolling: touch;
}

/* width: max-content + margin auto: если лента влезает — она по центру, если нет — прокрутка от левого края */
.roadmap-track {
    display: flex;
    width: max-content;
    min-width: 0;
    margin: 0 auto;
    padding: 0 0.75rem;
    align-items: flex-start;
}

.rm-edge {
    flex: none;
    margin-top: calc(var(--rm-top) + var(--rm-size) / 2);
    color: var(--text-color);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    transform: translateY(-50%);
    opacity: 0.8;
    user-select: none;
}

.rm-group {
    position: relative;
    display: flex;
    flex: none;
    flex-direction: column;
    align-items: center;
    padding-top: var(--rm-top);
}

.rm-group-label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
}

.rm-group--progress .rm-group-label {
    color: var(--accent-color);
}

.rm-group--planned .rm-group-label {
    opacity: 0.7;
}

.rm-group-nodes {
    display: flex;
    align-items: flex-start;
}

/* Отрезок линии между кружками. Снаружи группы он учитывает высоту заголовка, внутри — нет. */
.rm-link {
    flex: none;
    width: 2.75rem;
    height: 0;
    margin-top: calc(var(--rm-top) + var(--rm-size) / 2);
    border-top: 2px solid var(--rm-line);
}

.rm-link--inner {
    width: 1.75rem;
    margin-top: calc(var(--rm-size) / 2);
}

.rm-link--accent {
    border-top-color: var(--accent-color);
}

.rm-link--dashed {
    border-top-style: dashed;
    opacity: 0.8;
}

.rm-node {
    display: flex;
    flex: none;
    flex-direction: column;
    align-items: center;
    width: calc(var(--rm-size) + 2rem);
}

.rm-hit {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.rm-hit:focus-visible .rm-circle {
    outline: 2px solid var(--accent-color);
    outline-offset: 4px;
}

.rm-circle {
    position: relative;
    display: flex;
    width: var(--rm-size);
    height: var(--rm-size);
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--rm-line);
    border-radius: 999px;
    background: var(--surface-color);
    color: var(--text-muted);
    font-size: 1.7rem;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}

.rm-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rm-hit:hover .rm-circle {
    border-color: var(--accent-color);
    transform: translateY(-4px);
}

/* Сделано: спокойный тонкий контур, картинка чуть приглушена */
.rm-circle--done {
    border-color: rgba(253, 252, 255, 0.4);
}

.rm-circle--done img {
    filter: saturate(0.85);
}

.rm-circle--done i {
    color: var(--text-color);
    opacity: 0.7;
}

/* В процессе: жирный акцентный контур и мягкое свечение */
.rm-circle--progress {
    border: 3px solid var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 0 0 6px var(--terracotta-soft), 0 16px 40px rgba(233, 155, 59, 0.28);
    animation: rm-glow 2.6s ease-in-out infinite;
}

/* В будущем: пунктирный полупрозрачный контур */
.rm-circle--planned {
    border-style: dashed;
    border-color: rgba(253, 252, 255, 0.45);
    opacity: 0.75;
}

.rm-hit:hover .rm-circle--planned {
    opacity: 1;
}

.rm-caption {
    display: -webkit-box;
    max-width: 100%;
    margin-top: 0.8rem;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    overflow-wrap: anywhere;
}

.rm-node--progress .rm-caption {
    color: var(--text-color);
}

.rm-node--planned .rm-caption {
    opacity: 0.8;
}

/* Режим редактирования: кнопка «+» в каждой группе и стрелки под кружками */
.rm-circle--add {
    width: calc(var(--rm-size) * 0.72);
    height: calc(var(--rm-size) * 0.72);
    margin: calc(var(--rm-size) * 0.14) 0;
    border: 2px dashed var(--accent-color);
    background: rgba(233, 155, 59, 0.08);
    color: var(--accent-color);
    font-size: 1.4rem;
    box-shadow: none;
}

.rm-node--add .rm-caption {
    color: var(--accent-color);
}

.rm-node-actions {
    display: flex;
    gap: 0.35rem;
    margin-top: 0.6rem;
}

.rm-node-actions .editor-icon-btn {
    width: 1.8rem;
    height: 1.8rem;
    font-size: 0.7rem;
}

.rm-node-actions .editor-icon-btn:disabled {
    opacity: 0.3;
    pointer-events: none;
}

@keyframes rm-glow {
    0%, 100% { box-shadow: 0 0 0 6px var(--terracotta-soft), 0 16px 40px rgba(233, 155, 59, 0.28); }
    50% { box-shadow: 0 0 0 10px rgba(233, 155, 59, 0.1), 0 16px 40px rgba(233, 155, 59, 0.4); }
}

/* Модальное окно кружочка: описание (для всех) или форма редактирования (для редактора) */
.rm-modal {
    --rm-size: 5.25rem; /* кружок в шапке окна; .rm-circle снаружи .roadmap берёт размеры отсюда */
    --rm-line: rgba(253, 252, 255, 0.28);
    position: fixed;
    inset: 0;
    z-index: 70;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(5, 3, 8, 0.7);
    backdrop-filter: blur(8px);
}

.rm-modal.is-open {
    display: flex;
}

.rm-modal-panel {
    position: relative;
    width: 100%;
    max-width: 34rem;
    max-height: calc(100vh - 2rem);
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    background: linear-gradient(145deg, #1d1229, #140c1c);
    padding: 1.75rem;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}

.rm-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    width: 2.4rem;
    height: 2.4rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    background: var(--surface-color);
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
}

.rm-modal-close:hover {
    border-color: var(--accent-color);
}

.rm-modal-head {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding-right: 2.5rem;
}

.rm-modal-head .rm-circle {
    flex: none;
    animation: none;
}

.rm-modal-title {
    color: var(--text-color);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.rm-status-pill {
    display: inline-flex;
    margin-bottom: 0.5rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: var(--sage-soft);
    color: var(--sage-dark);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.rm-status-pill--done {
    background: rgba(253, 252, 255, 0.08);
    color: var(--text-muted);
}

.rm-status-pill--progress {
    background: var(--terracotta-soft);
    color: var(--accent-color);
}

.rm-modal-desc {
    margin-top: 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    white-space: pre-line;
    overflow-wrap: anywhere;
}

.rm-modal-desc.is-empty {
    font-style: italic;
    opacity: 0.6;
}

.rm-modal-form {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.25rem;
}

.rm-image-field {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.rm-image-field .rm-circle {
    --rm-size: 4.5rem;
    flex: none;
    cursor: default;
}

.rm-image-field input[type="file"] {
    display: none;
}

.rm-modal-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.rm-modal-actions .editor-btn.danger {
    margin-right: auto;
}

@media (prefers-reduced-motion: reduce) {
    .rm-circle--progress {
        animation: none;
    }
}

@media (max-width: 639px) {
    .roadmap {
        --rm-size: 5rem;
    }

    .rm-edge {
        font-size: 1.8rem;
    }

    .rm-node {
        width: calc(var(--rm-size) + 1.25rem);
    }

    .rm-link {
        width: 1.75rem;
    }

    .rm-link--inner {
        width: 1.25rem;
    }

    .rm-modal-panel {
        padding: 1.25rem;
        border-radius: 1.5rem;
    }
}

@media (max-width: 767px) {
    .section-kicker::before {
        width: 1.6rem;
    }

    .arch-frame-large,
    .arch-frame-medium,
    .amenity-image-wrap {
        height: 510px;
        min-height: 0;
    }

    .arch-frame-large {
        margin-right: auto;
        margin-left: auto;
        width: min(100%, 450px);
    }

    .floating-note,
    .story-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin: -2.5rem auto 0;
    }

    .amenity-image-wrap {
        border-radius: 999px 999px 2rem 2rem;
    }
}
