.admin-menu-wrap {
    min-height: calc(100vh - 160px);
}

.admin-menu-section {
    padding: 80px 0 100px;
    background: #fafbfc;
}

.admin-page-head {
    margin-bottom: 32px;
}

.admin-page-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-point);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-page-title {
    margin: 0;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
}

.admin-page-desc {
    margin: 14px 0 0;
    font-size: 16px;
    color: var(--color-sub-text);
}

.admin-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
}

.admin-card {
    background: #ffffff;
    border: 1px solid var(--color-line);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--color-card-shadow);
}

.admin-card-title {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 800;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.small-form {
    margin-top: 14px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row label {
    font-size: 14px;
    font-weight: 700;
}

.form-row input,
.form-row select {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #d8d8d8;
    border-radius: 12px;
    font-size: 14px;
    background: #ffffff;
}

.inline-row {
    flex-direction: row;
    align-items: center;
}

.menu-table-wrap {
    overflow-x: auto;
}

.menu-table {
    width: 100%;
    border-collapse: collapse;
}

.menu-table th,
.menu-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #ececec;
    text-align: left;
    vertical-align: top;
    font-size: 14px;
}

.menu-table th {
    font-weight: 800;
    background: #fafafa;
}

.edit-box summary {
    cursor: pointer;
    font-weight: 700;
}

.btn-danger {
    color: #c63b3b;
    border-color: #e3b8b8;
}

.btn-danger:hover {
    background: #fff7f7;
    border-color: #d89d9d;
}

@media (max-width: 1100px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }
}
