/* ========== THEME TOKENS ========== */
:root {
    --glass-bg: rgba(0, 0, 0, 0.35);
    --glass-card: rgba(255, 255, 255, 0.06);
    --accent: #FFD54F;
    --accent-2: #FFB300;
    --accent2: #FFA726;
    --text: #fff;
    --muted: rgba(255, 255, 255, 0.78);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    --radius: 14px;
    --radius-sm: 10px;
    --blur: blur(8px);
    --transition: .25s ease;
    --card-bg: rgba(0, 0, 0, 0.45);
    --stroke: rgba(255, 255, 255, 0.14);
    --text-dim: rgba(255, 255, 255, 0.85);
    --text-dim2: #afa2a2d9;
}


/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* susun konten + footer ke bawah */
    align-items: center;
    justify-content: flex-start;
    color: #fff;
}

/* Background fix pakai pseudo element biar stabil di semua device */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url('../../images/bg-blur.png') center/cover no-repeat;
    z-index: -1;
}

input,
textarea,
select {
    font-size: 16px !important;
}

/* ===== Container ===== */
.content {
    position: relative;
    z-index: 2;
    /* background: rgba(0, 0, 0, 0.4); */
    background: var(--glass-card);
    backdrop-filter: var(--blur);
    padding: 30px;
    border-radius: 10px;
    max-width: 1000px;
    width: 95%;
    text-align: center;
    margin-top: 90px;
    margin-bottom: 20px;
}

/* ========== HERO ========== */
.hero {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: calc(var(--radius) + 6px);
    box-shadow: var(--shadow);
    padding: 44px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* aksen gradien lembut */
.hero::after {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(60% 60% at 50% 0%, rgba(255, 213, 79, 0.18) 0%, rgba(255, 255, 255, 0) 65%);
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(1.9rem, 2.6vw, 2.6rem);
    letter-spacing: .3px;
    margin-bottom: 10px;
}

.hero h1 span {
    color: var(--accent);
}

/* ===== Top Buttons (Member & Cart) ===== */
.top-buttons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.top-buttons a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
}

.top-buttons a:hover {
    background: rgba(255, 255, 255, 0.3);
}

.top-buttons a .badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #FFD54F;
    color: #000;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    font-weight: 700;
}

/* state disable untuk tombol keranjang */
.top-buttons a.btn-disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

/* ===== Branding ===== */
.logo {
    max-width: 270px;
    margin-bottom: 20px;
}

/* ===== Menu Layout ===== */
.menu-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.menu-column {
    text-align: left;
}

h2 {
    font-size: 1.4rem;
    margin: 16px 0 8px;
}

.note {
    font-size: 0.95rem;
    font-weight: normal;
    opacity: 0.9;
}

.legend {
    font-size: 0.9rem;
    opacity: 0.95;
    margin-left: 8px;
    background: rgba(255, 213, 79, 0.15);
    padding: 2px 8px;
    border-radius: 999px;
}

/* ===== Menu Items ===== */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.menu-list li {
    display: block;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 10px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.menu-list li:hover {
    background: rgba(255, 255, 255, 0.14);
}

.menu-list li.selected {
    border: 2px solid #FFD54F;
    background: rgba(255, 213, 79, 0.16);
}

.star {
    color: #FFD54F;
    margin-left: 6px;
}

/* ===== Header line & active feedback ===== */
.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: transform 0.12s ease;
}

.item-header:active {
    transform: scale(0.98);
}

.menu-list li .price {
    font-weight: 500;
}

/* ===== Expandable Panel with Smooth Transition ===== */
.item-panel {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
}

.item-panel.is-open {
    opacity: 1;
    transform: translateY(0);
}

/* Panel form layout */
.panel-form {
    display: grid;
    grid-template-columns: 90px 1fr;
    /* kiri label, kanan control */
    gap: 8px 12px;
    align-items: center;
    font-size: 0.95rem;
    margin-bottom: 10px;
    padding-top: 20px;
    /* tambahan jarak atas */
}

.panel-form label {
    text-align: right;
    opacity: 0.9;
}

.panel-form select {
    padding: 6px 8px;
    border-radius: 6px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.panel-form select option {
    background: #fff;
    color: #000;
}

/* Panel actions */
.panel-actions {
    display: flex;
    justify-content: flex-end;
    /* tombol ke kanan */
    margin-top: 8px;
}

.btn-add {
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    background: #25D366;
    color: #000;
    font-weight: 400;
    /* normal (tidak bold) */
    cursor: pointer;
}

/* Pulse animasi saat tambah ke keranjang */
@keyframes addedPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 213, 79, 0.6);
    }

    100% {
        box-shadow: 0 0 0 14px rgba(255, 213, 79, 0);
    }
}

.menu-list li.added {
    animation: addedPulse 0.6s ease-out;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #25D366;
    color: #000;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 10000;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-6px);
}

/* ===== Modal Cart ===== */

/* ===== Modal Styles ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px);
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal {
    background: #1f1f1f;
    color: #fff;
    width: min(480px, 100%);
    max-height: 90vh;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--stroke);
    transform: scale(0.7) translateY(40px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.show .modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Modal entrance animation keyframes */
@keyframes modalSlideIn {
    0% {
        transform: scale(0.7) translateY(40px);
        opacity: 0;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes modalSlideOut {
    0% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }

    100% {
        transform: scale(0.7) translateY(40px);
        opacity: 0;
    }
}

/* Add bounce effect for buttons */
.modal-overlay.show .modal {
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.closing .modal {
    animation: modalSlideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-header {
    padding: 20px 24px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--stroke);
}

.modal-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.modal-header .item-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    transform: rotate(0deg);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
}

/* Cart row with two lines */
.cart-row {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.cart-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.cart-title {
    font-weight: 700;
    letter-spacing: .2px;
}

.cart-right {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cart-price {
    font-weight: 600;
}

.cart-del {
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: .85rem;
}

.cart-del:hover {
    background: rgba(255, 255, 255, 0.28);
}

.cart-sub {
    margin-top: 6px;
    font-size: .9rem;
    opacity: .9;
}

/* Total box di bawah list */
.cart-total-box {
    margin-top: 16px;
    background: rgba(255, 213, 79, 0.12);
    color: #fff;
    border-radius: 10px;
    padding: 12px 14px;
}

.cart-total-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-weight: 700;
}

.cart-total-amount {
    font-size: 1.2rem;
    font-weight: 800;
    text-align: right;
}

/* Footer modal: tombol WA */

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #25D366;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
}

/* ===== Confirm Dialog (custom) ===== */
.confirm-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .55);
    z-index: 4000;
}

.confirm-overlay.show {
    display: flex;
}

.confirm-box {
    width: min(420px, 92vw);
    background: #1f1f1f;
    color: #fff;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .45);
}

.confirm-title {
    font-size: 1rem;
    font-weight: 700;
}

.confirm-sub {
    margin-top: 4px;
    font-size: .9rem;
    opacity: .9;
}

.confirm-sep {
    margin: 12px 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .25), rgba(255, 255, 255, .08));
}

.confirm-question {
    font-size: 1rem;
    margin-bottom: 10px;
}

.confirm-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(0, 0, 0, .35);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background: #14b8a6;
    border-color: #14b8a6;
    color: #001312;
}

.btn-danger {
    background: #e11d48;
    border-color: #e11d48;
}

.btn-warning {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #111;
}

.btn-success {
    background: #11b5524d;
    border-color: #ffffff33;
}


/* .btn-danger {
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.btn-danger {
    background: #b00020;
    color: #fff;
}

.btn-danger:hover {
    filter: brightness(.92);
} */

/* ===== Footer halaman ===== */
.footer {
    width: 100%;
    text-align: center;
    padding: 16px 10px;
    font-size: 0.9rem;
    color: #eee;
    background: rgba(0, 0, 0, 0.6);
}

.footer p {
    margin: 4px 0;
}

/* ===== Buyer (Pemesan) Form ===== */
.buyer-box {
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 14px;
}

.buyer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 700;
}

.buyer-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 8px 12px;
    align-items: center;
}

.buyer-row label {
    text-align: right;
    opacity: .9;
}

.buyer-row input,
.buyer-row textarea,
.buyer-row select {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.buyer-row textarea {
    min-height: 72px;
    resize: vertical;
}

.bank-info {
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(37, 211, 102, 0.14);
    /* hijau tipis */
    border: 1px solid rgba(37, 211, 102, 0.45);
    font-size: .95rem;
}

.bank-info code {
    background: rgba(0, 0, 0, 0.25);
    padding: 2px 6px;
    border-radius: 6px;
    color: #fff;
}

/* error state */
.is-error {
    outline: 2px solid #ff6b6b;
    /* merah lembut */
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.25);
}

/* ========== SHINING TEXT ANIMATION ========== */
.shining-text {
    position: relative;
    display: inline-block;
    font-size: clamp(1.9rem, 2.6vw, 2.6rem);
    font-weight: bold;
    background: linear-gradient(90deg, #fff, var(--accent), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .menu-container {
        grid-template-columns: 1fr;
    }

    .logo {
        max-width: 160px;
    }

    .top-buttons a {
        padding: 6px 10px;
        font-size: 0.9rem;
    }

    /* beri lebih banyak ruang di bawah navbar untuk mobile */
    .content {
        margin-top: 0px;
        backdrop-filter: unset;
    }

    .hero {
        margin-top: 40px;
    }
}

.hero {
    /* margin-top: 40px; */
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.hero h1 span {
    color: #FFD54F;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}

.form-row label {
    font-weight: 500;
    color: var(--text);
    text-align: left;
    font-size: 0.95rem;
}

.option-group {
    display: flex;
    gap: 12px;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    justify-content: center;
    min-height: 40px;
    transform: translateY(0);
}

.option-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.option-item:active {
    transform: translateY(0) scale(0.98);
}

.option-item input[type="radio"] {
    display: none;
}

.option-item input[type="radio"]:checked+span {
    color: var(--accent);
    font-weight: 500;
}

.option-item:has(input[type="radio"]:checked) {
    background: rgba(255, 213, 79, 0.15);
    border-color: var(--accent);
    transform: scale(1.02);
    box-shadow: 0 0 0 2px rgba(255, 213, 79, 0.2), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.select-wrapper-compact {
    position: relative;
    max-width: 120px;
}

.select-wrapper-compact select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    appearance: none;
}

.select-wrapper-compact::after {
    content: '▼';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    pointer-events: none;
    font-size: 0.8rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 100px;
    justify-content: center;
    transform: translateY(0);
}

.radio-option:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.radio-option:active {
    transform: translateY(0) scale(0.98);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-option input[type="radio"]:checked+span {
    color: var(--accent);
    font-weight: 500;
}

.radio-option input[type="radio"]:checked {
    background: rgba(255, 213, 79, 0.2);
}

.radio-option:has(input[type="radio"]:checked) {
    background: rgba(255, 213, 79, 0.15);
    border-color: var(--accent);
    transform: scale(1.02);
    box-shadow: 0 0 0 2px rgba(255, 213, 79, 0.2), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.select-wrapper {
    position: relative;
}

select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
}

select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(255, 213, 79, 0.2);
}

select option {
    background: #1f1f1f;
    color: #fff;
    padding: 8px;
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    pointer-events: none;
}

.modal-footer {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid var(--stroke);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.total-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 213, 79, 0.15);
    border: 1px solid rgba(255, 213, 79, 0.3);
    border-radius: 8px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.total-display.updating {
    transform: scale(1.02);
    box-shadow: 0 0 0 2px rgba(255, 213, 79, 0.2);
}

.total-label {
    font-weight: 600;
    color: var(--text);
}

.total-amount {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.total-amount.updating {
    transform: scale(1.1);
}

.footer-buttons {
    display: flex;
    gap: 12px;
}

.btn-cancel {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-cancel:active {
    transform: translateY(0) scale(0.98);
}

.btn-cart {
    flex: 2;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #111;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.3);
    transform: translateY(0);
    position: relative;
    overflow: hidden;
}

.btn-cart::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-cart:hover::before {
    transform: translateX(100%);
}

.btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.btn-cart:active {
    transform: translateY(-1px) scale(0.98);
}

.divider {
    height: 1px;
    background: var(--stroke);
    margin: 20px 0;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #25D366;
    color: #000;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10000;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Fade in animation for modal content */
.modal-body>* {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.modal-overlay.show .modal-body>*:nth-child(1) {
    animation-delay: 0.1s;
}

.modal-overlay.show .modal-body>*:nth-child(2) {
    animation-delay: 0.15s;
}

.modal-overlay.show .modal-body>*:nth-child(3) {
    animation-delay: 0.2s;
}

.modal-overlay.show .modal-body>*:nth-child(4) {
    animation-delay: 0.25s;
}

.modal-overlay.show .modal-body>*:nth-child(5) {
    animation-delay: 0.3s;
}

.modal-overlay.show .modal-body>*:nth-child(6) {
    animation-delay: 0.35s;
}

.modal-overlay.show .modal-body>*:nth-child(7) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}