:root {
    --lavana-bg: #0d0d0e;
    --lavana-surface: #151516;
    --lavana-surface-2: #1b1b1d;
    --lavana-surface-3: #232326;
    --lavana-text: #f7f3ea;
    --lavana-muted: #aaa7a0;
    --lavana-line: rgba(255, 255, 255, 0.085);
    --lavana-gold: #d7b46a;
    --lavana-gold-strong: #e7c77f;
    --lavana-gold-soft: rgba(215, 180, 106, 0.14);
    --lavana-danger: #ff9b9b;
    --lavana-radius-xl: 28px;
    --lavana-radius-lg: 22px;
    --lavana-radius-md: 17px;
    --lavana-radius-sm: 13px;
    --lavana-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
    --lavana-bottom-nav-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--lavana-bg);
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    padding-bottom: calc(var(--lavana-bottom-nav-height) + 20px + env(safe-area-inset-bottom));
    color: var(--lavana-text);
    background:
        radial-gradient(circle at 100% -8%, rgba(215, 180, 106, 0.12), transparent 32%),
        radial-gradient(circle at -8% 24%, rgba(117, 79, 138, 0.1), transparent 28%),
        var(--lavana-bg);
    font-family: "primary-font", Tahoma, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

body.sheet-open {
    overflow: hidden;
    touch-action: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

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

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

a {
    color: inherit;
    text-decoration: none;
}

svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

[hidden] {
    display: none !important;
}

.menu-app {
    position: relative;
    width: min(100%, 780px);
    min-height: 100vh;
    margin: 0 auto;
    overflow: clip;
}

.menu-hero {
    position: relative;
    min-height: 262px;
    overflow: hidden;
    padding: max(20px, env(safe-area-inset-top)) 18px 28px;
    border-radius: 0 0 34px 34px;
    background:
        linear-gradient(180deg, rgba(8, 8, 9, 0.25), rgba(8, 8, 9, 0.92)),
        url("/images/background/image-10.jpg") center 48% / cover no-repeat;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.menu-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(215, 180, 106, 0.15), transparent 44%),
        radial-gradient(circle at 84% 17%, rgba(255, 255, 255, 0.12), transparent 25%);
    pointer-events: none;
}

.menu-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13, 13, 14, 0.82) 0%, rgba(13, 13, 14, 0.08) 70%);
    pointer-events: none;
}

.menu-hero__top,
.menu-hero__content {
    position: relative;
    z-index: 2;
}

.menu-hero__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

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

.brand-lockup__logo {
    display: grid;
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    place-items: center;
    overflow: hidden;
    padding: 4px;
    border: 1px solid rgba(231, 199, 127, 0.34);
    border-radius: 18px;
    background: rgba(10, 10, 11, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.brand-lockup__logo img {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.brand-lockup__copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.brand-lockup__copy strong {
    overflow: hidden;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-lockup__copy small {
    color: rgba(255, 255, 255, 0.63);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 1.4px;
}

.hero-action {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 15px;
    background: rgba(12, 12, 13, 0.58);
    backdrop-filter: blur(12px);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.hero-action:active {
    transform: scale(0.96);
}

.hero-action:hover {
    border-color: rgba(215, 180, 106, 0.42);
}

.hero-action svg {
    width: 21px;
    height: 21px;
}

.menu-hero__content {
    margin-top: 31px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--lavana-gold-strong);
    font-size: 12px;
    font-weight: 700;
}

.eyebrow::before {
    content: "";
    width: 21px;
    height: 1px;
    background: currentColor;
}

.menu-hero h1 {
    margin: 6px 0 5px;
    font-size: clamp(27px, 8.5vw, 41px);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.7px;
}

.menu-hero p {
    max-width: 540px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.9;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.hero-stats span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.77);
    background: rgba(10, 10, 11, 0.56);
    font-size: 10px;
    backdrop-filter: blur(12px);
}

.hero-stats svg {
    width: 14px;
    height: 14px;
    color: var(--lavana-gold);
}

.search-panel {
    position: relative;
    z-index: 20;
    margin: -23px 15px 0;
}

.search-box {
    display: flex;
    min-height: 60px;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 19px;
    background: rgba(25, 25, 27, 0.97);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box:focus-within {
    border-color: rgba(215, 180, 106, 0.42);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.38), 0 0 0 3px rgba(215, 180, 106, 0.08);
}

.search-box > svg {
    width: 22px;
    height: 22px;
    flex: none;
    color: var(--lavana-gold);
}

.search-box input {
    width: 100%;
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: var(--lavana-text);
    background: transparent;
    font-size: 14px;
}

.search-box input::-webkit-search-cancel-button {
    display: none;
}

.search-box input::placeholder {
    color: #807f7b;
}

.search-clear {
    display: none;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 11px;
    color: #aaa7a0;
    background: rgba(255, 255, 255, 0.045);
    cursor: pointer;
}

.search-clear.is-visible {
    display: grid;
}

.search-clear svg {
    width: 17px;
    height: 17px;
}

.search-status {
    min-height: 18px;
    margin: 6px 6px 0;
    color: var(--lavana-muted);
    font-size: 10px;
}

.category-nav {
    position: sticky;
    top: 0;
    z-index: 18;
    margin-top: 4px;
    padding: 8px 0 5px;
    background: linear-gradient(180deg, rgba(13, 13, 14, 0.98) 72%, rgba(13, 13, 14, 0));
    backdrop-filter: blur(14px);
}

.category-nav__scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 3px 15px 14px;
    scroll-padding-inline: 15px;
    scrollbar-width: none;
}

.category-nav__scroll::-webkit-scrollbar {
    display: none;
}

.category-chip {
    flex: 0 0 auto;
    padding: 9px 14px;
    border: 1px solid var(--lavana-line);
    border-radius: 999px;
    color: #c5c1b9;
    background: var(--lavana-surface);
    font-size: 11px;
    font-weight: 400;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.category-chip:active {
    transform: scale(0.97);
}

.category-chip.is-active {
    border-color: var(--lavana-gold);
    color: #17140e;
    background: var(--lavana-gold);
    box-shadow: 0 8px 22px rgba(215, 180, 106, 0.2);
    font-weight: 700;
}

.category-nav.is-searching .category-chip {
    opacity: 0.46;
    pointer-events: none;
}

.menu-intro {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1px 15px 17px;
    padding: 11px 13px;
    border: 1px solid rgba(215, 180, 106, 0.15);
    border-radius: 15px;
    color: #c9c3b8;
    background: linear-gradient(135deg, rgba(215, 180, 106, 0.1), rgba(255, 255, 255, 0.02));
    font-size: 10px;
}

.menu-intro svg {
    width: 18px;
    height: 18px;
    flex: none;
    color: var(--lavana-gold);
}

.menu-sections {
    padding: 0 15px;
}

.category-section {
    scroll-margin-top: 80px;
    margin-bottom: 28px;
}

.category-section__header {
    margin-bottom: 11px;
    padding: 0 2px;
}

.category-section__header > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-section__mark {
    width: 4px;
    height: 39px;
    flex: 0 0 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--lavana-gold-strong), rgba(215, 180, 106, 0.24));
    box-shadow: 0 0 18px rgba(215, 180, 106, 0.2);
}

.category-section__header h2 {
    margin: 0;
    color: #fbf8f1;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}

.category-section__header p {
    margin: -1px 0 0;
    color: #79766f;
    font-size: 9px;
}

.product-grid {
    display: grid;
    gap: 10px;
}

.product-card {
    position: relative;
    display: grid;
    width: 100%;
    min-height: 126px;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: stretch;
    gap: 13px;
    overflow: hidden;
    padding: 10px;
    border: 1px solid var(--lavana-line);
    border-radius: var(--lavana-radius-lg);
    color: inherit;
    text-align: right;
    background: linear-gradient(145deg, rgba(27, 27, 29, 0.98), rgba(20, 20, 21, 0.98));
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.product-card::after {
    content: "";
    position: absolute;
    right: -24px;
    bottom: -28px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(215, 180, 106, 0.08), transparent 68%);
    pointer-events: none;
}

.product-card:active {
    transform: scale(0.987);
}

.product-card:hover,
.product-card:focus-visible {
    border-color: rgba(215, 180, 106, 0.28);
    outline: none;
    background: linear-gradient(145deg, #1d1d1f, #171718);
}

.product-card__image {
    position: relative;
    display: block;
    width: 96px;
    min-height: 105px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    background: #101011;
}

.product-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
    pointer-events: none;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    min-height: 105px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.035);
}

.product-card__body {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 4px 0 2px;
}

.product-card__title {
    display: block;
    overflow: hidden;
    color: #faf7f0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card__description {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 2px;
    color: #96938c;
    font-size: 10px;
    line-height: 1.85;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 6px;
}

.product-card__price {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    color: var(--lavana-gold-strong);
    text-align: left;
    white-space: nowrap;
}

.product-card__price b {
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.15px;
}

.product-card__price small {
    color: #a8a399;
    font-size: 9px;
    font-weight: 400;
}

.product-card__more {
    display: grid;
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    place-items: center;
    border: 1px solid rgba(215, 180, 106, 0.13);
    border-radius: 10px;
    color: var(--lavana-gold);
    background: var(--lavana-gold-soft);
    direction: ltr;
}

.product-card__more svg {
    width: 15px;
    height: 15px;
}

.empty-state {
    margin: 18px 15px 35px;
    padding: 35px 20px;
    border: 1px dashed rgba(215, 180, 106, 0.25);
    border-radius: var(--lavana-radius-xl);
    text-align: center;
    background: rgba(255, 255, 255, 0.018);
}

.empty-state__icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    place-items: center;
    border-radius: 19px;
    color: var(--lavana-gold);
    background: var(--lavana-gold-soft);
}

.empty-state__icon svg {
    width: 27px;
    height: 27px;
}

.empty-state h2 {
    margin: 0;
    font-size: 17px;
}

.empty-state p {
    margin: 4px 0 17px;
    color: var(--lavana-muted);
    font-size: 11px;
}

.secondary-button,
.primary-button {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.secondary-button:active,
.primary-button:active {
    transform: scale(0.98);
}

.secondary-button {
    border: 1px solid rgba(215, 180, 106, 0.23);
    color: var(--lavana-gold-strong);
    background: var(--lavana-gold-soft);
}

.survey-section {
    scroll-margin-top: 24px;
    margin: 38px 15px 24px;
    padding: 20px 16px 17px;
    border: 1px solid rgba(215, 180, 106, 0.18);
    border-radius: var(--lavana-radius-xl);
    background:
        radial-gradient(circle at 0 0, rgba(215, 180, 106, 0.12), transparent 40%),
        linear-gradient(145deg, #1b1b1d, #151516);
    box-shadow: var(--lavana-shadow);
}

.survey-section__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.survey-section__icon {
    display: grid;
    width: 49px;
    height: 49px;
    flex: 0 0 49px;
    place-items: center;
    border: 1px solid rgba(215, 180, 106, 0.17);
    border-radius: 16px;
    color: var(--lavana-gold);
    background: var(--lavana-gold-soft);
}

.survey-section__icon svg {
    width: 23px;
    height: 23px;
}

.survey-section__head span {
    color: var(--lavana-gold-strong);
    font-size: 10px;
}

.survey-section__head h2 {
    margin: 1px 0 0;
    font-size: 15px;
    line-height: 1.65;
}

.survey-form,
.survey-form__row {
    display: grid;
    gap: 11px;
}

.survey-form label {
    display: grid;
    gap: 6px;
}

.survey-form label > span {
    padding-inline: 2px;
    color: #bab6ae;
    font-size: 10px;
}

.survey-form input,
.survey-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    outline: 0;
    color: var(--lavana-text);
    background: rgba(10, 10, 11, 0.5);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.survey-form input {
    min-height: 49px;
    padding: 0 13px;
}

.survey-form textarea {
    min-height: 110px;
    padding: 12px 13px;
    resize: vertical;
}

.survey-form input::placeholder,
.survey-form textarea::placeholder {
    color: #6f6d68;
}

.survey-form input:focus,
.survey-form textarea:focus {
    border-color: rgba(215, 180, 106, 0.42);
    box-shadow: 0 0 0 3px rgba(215, 180, 106, 0.07);
}

.primary-button {
    width: 100%;
    min-height: 51px;
    margin-top: 2px;
    border: 0;
    color: #19150d;
    background: linear-gradient(135deg, var(--lavana-gold-strong), #cda65b);
    box-shadow: 0 12px 30px rgba(215, 180, 106, 0.14);
}

.primary-button svg {
    width: 19px;
    height: 19px;
    stroke-width: 2.2;
}

.menu-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 11px 15px 34px;
    color: #79766f;
    text-align: center;
}

.menu-footer img {
    width: 48px;
    height: 48px;
    margin-bottom: 7px;
    border-radius: 15px;
    object-fit: cover;
    opacity: 0.78;
}

.menu-footer strong {
    color: #b8b3aa;
    font-size: 10px;
    letter-spacing: 1.9px;
}

.menu-footer span {
    margin-top: 1px;
    font-size: 9px;
}

.bottom-nav {
    position: fixed;
    z-index: 50;
    right: 50%;
    bottom: max(10px, env(safe-area-inset-bottom));
    display: grid;
    width: min(calc(100% - 24px), 520px);
    min-height: var(--lavana-bottom-nav-height);
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(24, 24, 26, 0.94);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(18px);
    transform: translateX(50%);
}

.bottom-nav__item {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    padding: 5px 3px;
    border: 0;
    border-radius: 16px;
    color: #85827b;
    background: transparent;
    font-size: 9px;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.bottom-nav__item:active {
    transform: scale(0.96);
}

.bottom-nav__item svg {
    width: 21px;
    height: 21px;
}

.bottom-nav__item.is-active {
    color: var(--lavana-gold-strong);
    background: rgba(215, 180, 106, 0.1);
}

.product-sheet {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: flex;
    visibility: hidden;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.product-sheet.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.product-sheet__backdrop {
    position: absolute;
    inset: 0;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.product-sheet__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 680px);
    max-height: min(86vh, 720px);
    overflow-y: auto;
    padding: 13px 15px calc(22px + env(safe-area-inset-bottom));
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 0;
    border-radius: 29px 29px 0 0;
    background:
        radial-gradient(circle at 100% 0, rgba(215, 180, 106, 0.12), transparent 36%),
        #171718;
    box-shadow: 0 -22px 70px rgba(0, 0, 0, 0.52);
    transform: translateY(104%);
    transition: transform 0.34s cubic-bezier(0.22, 0.8, 0.25, 1);
}

.product-sheet.is-open .product-sheet__panel {
    transform: translateY(0);
}

.product-sheet__handle {
    display: block;
    width: 42px;
    height: 4px;
    margin: 0 auto 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.product-sheet__close {
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 22px;
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
    color: #d7d3cb;
    background: rgba(13, 13, 14, 0.72);
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.product-sheet__close svg {
    width: 18px;
    height: 18px;
}

.product-sheet__image {
    width: 100%;
    height: min(56vw, 330px);
    min-height: 225px;
    overflow: hidden;
    border-radius: 21px;
    background: #101011;
}

.product-sheet__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-sheet__content {
    padding: 17px 4px 2px;
}

.product-sheet__label {
    color: var(--lavana-gold);
    font-size: 10px;
}

.product-sheet__content h2 {
    margin: 2px 0 3px;
    color: #faf7f0;
    font-size: 22px;
    line-height: 1.55;
}

.product-sheet__content p {
    margin: 0;
    color: #9d9991;
    font-size: 11px;
    line-height: 2;
}

.product-sheet__price {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 16px;
    color: var(--lavana-gold-strong);
}

.product-sheet__price b {
    font-size: 29px;
    line-height: 1;
}

.product-sheet__price small {
    color: #aaa59c;
    font-size: 10px;
}

@media (min-width: 560px) {
    .menu-hero {
        min-height: 290px;
        padding-inline: 27px;
    }

    .menu-hero__content {
        margin-top: 42px;
    }

    .search-panel,
    .menu-intro,
    .survey-section {
        margin-inline: 22px;
    }

    .category-nav__scroll,
    .menu-sections {
        padding-inline: 22px;
    }

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

    .product-card {
        min-height: 142px;
        grid-template-columns: 102px minmax(0, 1fr);
    }

    .product-card__image {
        width: 102px;
        min-height: 121px;
    }

    .product-card__image img {
        min-height: 121px;
    }

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

@media (min-width: 820px) {
    body {
        padding-top: 18px;
    }

    .menu-app {
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 34px;
        box-shadow: 0 30px 100px rgba(0, 0, 0, 0.32);
    }

    .menu-hero {
        border-radius: 0 0 34px 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
