:root {
    --bg: #f6f7fb;
    --card: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --accent1: #ef4444;
    --accent2: #f59e0b;
    --radius: 18px;
    --shadow: 0 10px 30px rgba(15, 23, 42, 0.09);
    --menu-topbar-height: 54px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(165deg, #fff7ed, #fffaf5 48%, #fffbeb);
}

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

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.btn {
    border: 0;
    padding: 11px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:active {
    transform: translateY(0);
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

.btn-outline {
    background: #fff;
    color: var(--accent1);
    border: 1px solid #fed7aa;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
}

.topbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}

.topbar-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #fed7aa;
    box-shadow: 0 2px 8px rgba(194, 65, 12, 0.08);
}

.topbar-title {
    font-size: 1rem;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.page-menu {
    --menu-topbar-height: 60px;
}

.hero {
    margin: 18px auto;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    color: #fff;
    box-shadow: var(--shadow);
}

.hero--edge {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.hero.hero--menu.hero--brand-only {
    background: linear-gradient(120deg, #dc2626 0%, #ea580c 42%, #f59e0b 100%);
    color: #fff;
}

.hero.hero--menu:not(.hero--brand-only) {
    background: transparent;
}

.hero-banner {
    min-height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-banner--gradient {
    background-image: linear-gradient(145deg, #dc2626 0%, #ea580c 45%, #f59e0b 100%);
}

.hero-brand-inner {
    padding: 22px 0 26px;
}

@media (min-width: 640px) {
    .hero-brand-inner {
        padding: 28px 0 32px;
    }
}

.hero-brand-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-brand-row--text-only {
    justify-content: center;
    text-align: center;
}

.hero-brand-row--text-only .hero-text-block {
    max-width: 36rem;
    margin: 0 auto;
}

.hero-logo-simple {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.35);
}

@media (min-width: 640px) {
    .hero-logo-simple {
        width: 88px;
        height: 88px;
        border-radius: 20px;
    }
}

.hero-text-block {
    flex: 1;
    min-width: min(100%, 220px);
}

.hero-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hero-eyebrow--on-gradient {
    color: rgba(255, 255, 255, 0.8);
}

.hero-title {
    margin: 0 0 8px;
    font-size: clamp(1.35rem, 4.2vw, 2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero-title--on-gradient {
    color: #fff;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.15);
}

.hero-tagline {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    font-weight: 400;
    max-width: 38rem;
}

.hero-tagline--on-gradient {
    color: rgba(255, 255, 255, 0.92);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 20px 0 24px;
}

@media (min-width: 640px) {
    .hero-inner {
        padding: 28px 0 32px;
    }
}

.hero-panel {
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.45) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.2) 100%
    );
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.12),
        0 24px 48px rgba(0, 0, 0, 0.22);
}

.hero-panel__body {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 19px;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-panel--text-only .hero-panel__body {
    padding: 18px 20px;
}

.hero-logo-ring {
    flex-shrink: 0;
    padding: 3px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.12));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-logo {
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 15px;
    object-fit: cover;
    background: #fff;
}

@media (min-width: 640px) {
    .hero-logo {
        width: 80px;
        height: 80px;
        border-radius: 16px;
    }
}

.hero-copy {
    flex: 1;
    min-width: 0;
    color: #fff;
}

.hero-content {
    padding: 18px 0 22px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.12));
}

.hero--edge .hero-content {
    padding-top: 20px;
    padding-bottom: 24px;
}

.menu-filters {
    margin: 20px 0 18px;
}

.page-menu .menu-sticky-wrap {
    position: sticky;
    top: var(--menu-topbar-height);
    z-index: 9;
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 12px 0 16px;
    background: linear-gradient(180deg, rgba(255, 250, 245, 0.92) 0%, rgba(255, 247, 237, 0.96) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(254, 215, 170, 0.55);
    box-shadow: 0 10px 30px rgba(194, 65, 12, 0.07);
}

.page-menu .menu-sticky-wrap .menu-filters {
    margin: 0;
}

.menu-filters--toolbar {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.filter-rail-label {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9a3412;
}

.filter-rail {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    margin: 0 -2px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #fdba74 transparent;
}

.filter-rail::-webkit-scrollbar {
    height: 4px;
}

.filter-rail::-webkit-scrollbar-thumb {
    background: #fdba74;
    border-radius: 4px;
}

.filter-rail__tablist {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.search-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    scroll-snap-align: start;
    height: 34px;
    min-width: 34px;
    max-width: 34px;
    padding: 0;
    margin: 0;
    border: 2px solid #fed7aa;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(194, 65, 12, 0.06);
    cursor: text;
    overflow: hidden;
    transition: max-width 0.22s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-pill:focus-within {
    max-width: 200px;
    min-width: 34px;
    width: auto;
    justify-content: flex-start;
    padding: 0 10px 0 4px;
    border-color: #fb923c;
    box-shadow: 0 4px 16px rgba(234, 88, 12, 0.12);
}

.search-pill__icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin: 0 8px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23c2410c' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3C/svg%3E") center / contain no-repeat;
    opacity: 0.9;
    pointer-events: none;
}

.search-pill__input {
    flex: 1 1 auto;
    min-width: 0;
    width: 0;
    height: 28px;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 13px;
    padding: 0 4px 0 0;
    color: var(--text);
    opacity: 0;
    transition: opacity 0.18s ease, width 0.22s ease;
}

.search-pill:focus-within .search-pill__input {
    width: 118px;
    min-width: 80px;
    opacity: 1;
}

.search-pill__input::placeholder {
    color: #a8a29e;
    font-size: 13px;
}

.cat-pill {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border: 2px solid #fed7aa;
    background: rgba(255, 255, 255, 0.92);
    color: #7c2d12;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    min-height: 34px;
    line-height: 1.2;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cat-pill:hover {
    border-color: #fb923c;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(194, 65, 12, 0.12);
}

.cat-pill.is-active {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.28);
}

.cat-pill.is-active:hover {
    transform: translateY(-1px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.chip {
    white-space: nowrap;
    border-radius: 999px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #fed7aa;
    cursor: pointer;
    transition: all 0.2s ease;
    font: inherit;
    color: #7c2d12;
}

.chip.active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
}

.chip:hover {
    border-color: #fb923c;
    transform: translateY(-1px);
}

.search-wrap {
    background: var(--card);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 10px 12px;
    margin: 14px 0;
    border: 1px solid #fed7aa;
}

.search-wrap input {
    width: 100%;
    border: 0;
    outline: none;
    font-size: 16px;
}

.items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 26px;
}

.item-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 12px;
    transition: transform 0.2s ease, box-shadow 0.25s ease;
    border: 1px solid #ffedd5;
    cursor: pointer;
}

.item-card:focus-visible {
    outline: none;
    border-color: #fb923c;
    box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.25), var(--shadow);
}

.item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
}

.item-card img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 12px;
    background: #f3f4f6;
    pointer-events: none;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.item-card img:hover {
    transform: scale(1.03);
    filter: saturate(1.08);
}

.muted {
    color: var(--muted);
}

.price {
    color: #b45309;
    font-weight: 700;
}

.menu-list-top {
    scroll-margin-top: 72px;
    height: 0;
    overflow: hidden;
}

.page-menu .menu-list-top,
.page-menu .category-block {
    scroll-margin-top: calc(var(--menu-topbar-height) + 168px);
}

.category-block {
    margin-bottom: 16px;
    scroll-margin-top: 72px;
}

.category-title {
    margin: 8px 0 10px;
    padding: 0 2px;
    font-size: 16px;
    font-weight: 600;
    color: #9a3412;
}

.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: #0f172a;
    color: #fff;
    padding: 18px;
}

.admin-sidebar a {
    display: block;
    padding: 9px 10px;
    border-radius: 10px;
    color: #cbd5e1;
    margin-bottom: 6px;
}

.admin-sidebar a:hover {
    background: #1e293b;
    color: #fff;
}

.admin-main {
    padding: 18px;
}

.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 16px;
    margin-bottom: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.13);
}

.compact-card {
    max-width: 760px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

.status-pill {
    display: inline-block;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
}

.status-visible {
    background: #dcfce7;
    color: #166534;
}

.status-hidden {
    background: #fee2e2;
    color: #991b1b;
}

tr.row-hidden {
    background: #fff1f2;
}

.filter-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

input, select, textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 10px;
    margin-top: 6px;
    margin-bottom: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

input[type="file"] {
    border: 1px dashed #c4b5fd;
    background: linear-gradient(180deg, #ffffff, #f8faff);
    padding: 10px;
    cursor: pointer;
}

input[type="file"]::file-selector-button {
    border: 0;
    border-radius: 10px;
    padding: 9px 14px;
    margin-right: 10px;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    transition: filter 0.2s ease, transform 0.2s ease;
}

input[type="file"]::-webkit-file-upload-button {
    border: 0;
    border-radius: 10px;
    padding: 9px 14px;
    margin-right: 10px;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
}

input[type="file"]::file-selector-button:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 6px;
}

tbody tr:hover {
    background: #faf9ff;
}

.no-results {
    background: #fff;
    border-radius: 14px;
    border: 1px dashed #d1d5db;
    padding: 16px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 16px;
    display: none;
}

.item-modal {
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(3px);
    z-index: 1000;
    padding: 0;
}

.item-modal.open {
    display: flex;
}

.item-modal__stage {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}

.item-modal__panel {
    width: min(100%, 420px);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    border: 1px solid #ffedd5;
}

.item-modal__media {
    background: linear-gradient(180deg, #fff7ed, #fff);
    padding: 16px;
    display: flex;
    justify-content: center;
}

.item-modal__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(52vh, 360px);
    object-fit: contain;
    border-radius: 16px;
    background: #f3f4f6;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
}

.item-modal__info {
    padding: 18px 20px 22px;
}

.item-modal__title {
    margin: 0 0 10px;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    letter-spacing: -0.02em;
}

.item-modal__desc {
    margin: 0 0 14px;
    font-size: 0.95rem;
    line-height: 1.55;
}

.item-modal__desc:empty {
    display: none;
}

.item-modal__price {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

@media (min-width: 640px) {
    .item-modal__img {
        max-height: min(48vh, 400px);
    }

    .item-modal__panel {
        width: min(100%, 480px);
    }
}

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

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

.share-sheet__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
}

.share-sheet__panel {
    position: relative;
    width: 100%;
    max-width: 440px;
    max-height: min(88vh, 640px);
    overflow-y: auto;
    background: #fff;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.18);
    padding: 0 18px 20px;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform 0.28s cubic-bezier(0.32, 0.72, 0, 1);
    border: 1px solid #fed7aa;
    border-bottom: 0;
}

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

.share-sheet__grab {
    width: 40px;
    height: 5px;
    border-radius: 999px;
    background: #e5e7eb;
    margin: 10px auto 6px;
}

.share-sheet__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.share-sheet__title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.share-sheet__x {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: #f3f4f6;
    font-size: 22px;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
}

.share-sheet__copied {
    margin: 0 0 14px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
    background: #ecfdf5;
    color: #166534;
    border: 1px solid #a7f3d0;
}

.share-sheet__copied--warn {
    background: #fffbeb;
    color: #92400e;
    border-color: #fde68a;
}

.share-sheet__copied--pulse {
    animation: shareCopiedPulse 0.4s ease;
}

@keyframes shareCopiedPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.share-sheet__sub {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9a3412;
}

.share-sheet__list {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.share-sheet__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid #fed7aa;
    background: #fffaf5;
    color: #7c2d12;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.share-sheet__link:hover {
    background: #fff7ed;
    border-color: #fb923c;
}

.share-sheet__ico {
    font-size: 1.35rem;
    line-height: 1;
    width: 28px;
    text-align: center;
}

.share-sheet__native {
    width: 100%;
    margin-bottom: 10px;
    display: none;
}

.share-sheet__copyagain {
    width: 100%;
}

@media (min-width: 520px) {
    .share-sheet {
        align-items: center;
        padding: 20px;
    }

    .share-sheet__panel {
        border-radius: 22px;
        border-bottom: 1px solid #fed7aa;
        transform: translateY(16px) scale(0.96);
        opacity: 0;
        transition:
            transform 0.28s cubic-bezier(0.32, 0.72, 0, 1),
            opacity 0.22s ease;
    }

    .share-sheet.open .share-sheet__panel {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    .share-sheet__grab {
        display: none;
    }
}

.image-modal__toolbar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    padding-top: max(12px, env(safe-area-inset-top));
    background: rgba(15, 23, 42, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.image-modal-back {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: background 0.2s ease;
}

.image-modal-back:hover {
    background: rgba(255, 255, 255, 0.28);
}

.image-modal-close {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 0;
    border-radius: 999px;
    font-size: 24px;
    line-height: 1;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

@media (min-width: 760px) {
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 920px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        position: sticky;
        top: 0;
        z-index: 9;
    }
}

@media (max-width: 740px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}
