/* Hala DXN (Laravel Blade) - no Tailwind / Bootstrap / Vite
   Palette:
   Primary: #1f3b29
   Secondary: #E8e3c9
*/

:root {
    --primary: #1f3b29;
    --secondary: #e8e3c9;
    --bg: #0f1412;
    --card: rgba(255, 255, 255, 0.06);
    --card2: rgba(255, 255, 255, 0.08);
    --text: rgba(255, 255, 255, 0.92);
    --muted: rgba(255, 255, 255, 0.7);
    --border: rgba(232, 227, 201, 0.16);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    --radius: 18px;
    --radius-sm: 12px;
    --container: 1120px;
}

* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
body {
    margin: 0;
    font-family: "Poppins", "Montserrat", system-ui, -apple-system, Segoe UI,
        Roboto, Arial, sans-serif;
    background: radial-gradient(
            1200px 800px at 15% 10%,
            rgba(31, 59, 41, 0.5),
            rgba(15, 20, 18, 0) 55%
        ),
        radial-gradient(
            900px 650px at 85% 20%,
            rgba(232, 227, 201, 0.1),
            rgba(15, 20, 18, 0) 60%
        ),
        linear-gradient(180deg, #0b0f0d 0%, #0f1412 100%);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
button,
input,
textarea {
    font: inherit;
    color: inherit;
}

.container {
    width: 100%;
    max-width: var(--container);
    padding: 0 18px;
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 10px 12px;
    background: var(--secondary);
    color: #0b0f0d;
    border-radius: 10px;
    z-index: 9999;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 20, 18, 0.75);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 10px;
}
.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 12px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-logo {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.25));
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
}
.nav a {
    opacity: 0.85;
    padding: 8px 10px;
    border-radius: 12px;
    transition: 160ms ease;
}
.nav a:hover {
    background: rgba(232, 227, 201, 0.08);
    opacity: 1;
}
.nav a.active {
    background: rgba(232, 227, 201, 0.12);
    opacity: 1;
    border: 1px solid var(--border);
}

.nav-divider {
    width: 1px;
    height: 26px;
    background: var(--border);
    margin: 0 4px;
}
.lang-switch {
    font-weight: 700;
    letter-spacing: 0.04em;
    border: 1px solid var(--border);
    background: rgba(31, 59, 41, 0.25);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(232, 227, 201, 0.06);
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: rgba(232, 227, 201, 0.8);
    border-radius: 10px;
}

/* Hero */
.hero {
    padding: 56px 0 20px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
    align-items: start;
}
.hero-copy h1 {
    font-family: "Montserrat", "Poppins", sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.05;
    margin: 0 0 12px;
}
.lead {
    font-size: 1.05rem;
    color: var(--muted);
    margin: 0 0 18px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-card {
    background: linear-gradient(
        180deg,
        rgba(232, 227, 201, 0.1),
        rgba(31, 59, 41, 0.08)
    );
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
}
.badge {
    display: inline-flex;
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.85rem;
    background: rgba(232, 227, 201, 0.1);
    margin-bottom: 10px;
}
.checklist {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}
.checklist li {
    margin: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--muted);
}
.checklist li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: rgba(232, 227, 201, 0.35);
    border: 1px solid var(--border);
}

/* Sections */
.section {
    padding: 44px 0;
}
.section.alt {
    padding: 54px 0;
    background: rgba(232, 227, 201, 0.04);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}
.section-head h2 {
    margin: 0;
    font-family: "Montserrat", "Poppins", sans-serif;
    letter-spacing: -0.02em;
}
.muted {
    color: var(--muted);
}
.link {
    color: rgba(232, 227, 201, 0.9);
    font-weight: 600;
}

.page-hero {
    padding: 44px 0 10px;
}
.page-hero h1 {
    margin: 0 0 8px;
    font-family: "Montserrat", "Poppins", sans-serif;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.1;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.panel {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
}

.grid {
    display: grid;
    gap: 16px;
}
.grid.cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-2 {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 1fr;
}
.cards .card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 200ms ease, background 200ms ease, border 200ms ease;
}
.cards .card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(232, 227, 201, 0.26);
}
.card-link {
    display: block;
}
.card-media {
    aspect-ratio: 16/10;
    background: rgba(232, 227, 201, 0.05);
    border-bottom: 1px solid var(--border);
}
.card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.media-placeholder {
    width: 100%;
    height: 100%;
    background: radial-gradient(
            600px 220px at 30% 30%,
            rgba(232, 227, 201, 0.14),
            rgba(15, 20, 18, 0) 60%
        ),
        linear-gradient(
            135deg,
            rgba(31, 59, 41, 0.55),
            rgba(232, 227, 201, 0.06)
        );
}
.media-placeholder.big {
    aspect-ratio: 1/1;
    border-radius: 14px;
}
.card-body {
    padding: 14px;
}
.card-body h3 {
    margin: 8px 0 8px;
    font-family: "Montserrat", "Poppins", sans-serif;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.82rem;
    opacity: 0.95;
    background: rgba(31, 59, 41, 0.18);
}
.chip-solid {
    background: rgba(232, 227, 201, 0.16);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(232, 227, 201, 0.2);
    background: linear-gradient(
        180deg,
        rgba(232, 227, 201, 0.22),
        rgba(31, 59, 41, 0.25)
    );
    color: rgba(255, 255, 255, 0.96);
    cursor: pointer;
    transition: 160ms ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    font-weight: 600;
}
.btn:hover {
    transform: translateY(-1px);
    border-color: rgba(232, 227, 201, 0.34);
}
.btn:active {
    transform: translateY(0);
}
.btn-outline {
    background: rgba(232, 227, 201, 0.05);
}
.btn-ghost {
    background: transparent;
    box-shadow: none;
}
.btn-ghost:hover {
    background: rgba(232, 227, 201, 0.08);
}
.btn-ghost.danger {
    color: rgba(255, 120, 120, 0.95);
}
.btn-ghost.danger:hover {
    background: rgba(255, 120, 120, 0.1);
}

/* Forms */
.form .field {
    margin-bottom: 14px;
}
label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}
input,
select,
textarea {
    width: 100%;
    background: rgba(232, 227, 201, 0.06);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 12px;
    outline: none;
}
textarea {
    resize: vertical;
    min-height: 120px;
}
select {
    background: rgba(15, 20, 18, 0.98);
    color: #fff;
}
input:focus,
select:focus,
textarea:focus {
    border-color: rgba(232, 227, 201, 0.35);
    box-shadow: 0 0 0 3px rgba(232, 227, 201, 0.1);
}

.error {
    color: rgba(255, 165, 165, 0.95);
}
.notice {
    border: 1px solid rgba(232, 227, 201, 0.22);
    background: rgba(232, 227, 201, 0.06);
    padding: 12px 12px;
    border-radius: 14px;
    color: rgba(232, 227, 201, 0.92);
    margin-top: 14px;
}

.filters {
    display: grid;
    gap: 12px;
    grid-template-columns: 1.2fr 1fr 1fr auto;
    align-items: end;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    margin-bottom: 18px;
}
.filters-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding-bottom: 2px;
}

.narrow {
    max-width: 640px;
}

.alert {
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 12px 14px;
    margin: 16px 0 0;
    background: rgba(232, 227, 201, 0.06);
}
.alert.success {
    border-color: rgba(120, 255, 170, 0.2);
    background: rgba(120, 255, 170, 0.08);
}
.alert.danger {
    border-color: rgba(255, 120, 120, 0.2);
    background: rgba(255, 120, 120, 0.08);
}

/* Product page */
.product-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 18px;
    align-items: start;
}
.product-image {
    border-radius: 14px;
    border: 1px solid var(--border);
    aspect-ratio: 1 / 1;
}
.product-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
}
.product-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.prose {
    color: rgba(255, 255, 255, 0.82);
}
.bullets {
    margin: 10px 0 0;
}
.bullets li {
    margin: 6px 0;
    color: rgba(255, 255, 255, 0.82);
}
.actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    margin-bottom: 10px;
}

/* CTA */
.cta {
    margin-top: 22px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(
        180deg,
        rgba(31, 59, 41, 0.25),
        rgba(232, 227, 201, 0.05)
    );
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* Footer */
.site-footer {
    margin-top: 36px;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.18);
    padding: 28px 0 16px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 18px;
}
.footer-logo {
    width: 130px;
    margin-bottom: 10px;
}
.social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.social a {
    opacity: 0.85;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(232, 227, 201, 0.04);
}
.social a:hover {
    opacity: 1;
    background: rgba(232, 227, 201, 0.07);
}

.footer-bottom {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.admin-link {
    opacity: 0.8;
}
.admin-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Admin */
.admin-header {
    position: sticky;
    top: 0;
    isolation: isolate;
    background: rgba(15, 20, 18, 0.8);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
    padding: 10px;
}
.admin-title {
    font-weight: 700;
    opacity: 0.9;
}
.admin-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.admin-nav a {
    opacity: 0.85;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid transparent;
}
.admin-nav a:hover {
    opacity: 1;
    background: rgba(232, 227, 201, 0.08);
}
.admin-nav a.active {
    opacity: 1;
    border-color: var(--border);
    background: rgba(232, 227, 201, 0.1);
}

.admin-main {
    padding: 22px 0 44px;
}
.admin-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin: 10px 0 16px;
}
.stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 16px;
}
.stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
}
.stat-label {
    color: var(--muted);
    font-weight: 600;
}
.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
}

.table-wrap {
    overflow: auto;
}
.table {
    width: 100%;
    border-collapse: collapse;
    min-width: 820px;
}
.table th,
.table td {
    border-bottom: 1px solid var(--border);
    padding: 10px 10px;
}
.table th {
    text-align: left;
    color: rgba(232, 227, 201, 0.9);
    font-weight: 700;
}
.w-actions {
    width: 260px;
}
.actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.inline {
    display: inline;
}
.checkbox input {
    width: auto;
    margin-right: 8px;
}

.pagination {
    margin-top: 16px;
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    right: 16px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(232, 227, 201, 0.25);
    background: linear-gradient(
        180deg,
        rgba(31, 59, 41, 0.75),
        rgba(31, 59, 41, 0.45)
    );
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 160ms ease, border 160ms ease, background 160ms ease;
    z-index: 999;
}
.whatsapp-float:hover {
    transform: translateY(-2px);
    border-color: rgba(232, 227, 201, 0.4);
}
.wa-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: rgba(232, 227, 201, 0.95);
    color: #0b0f0d;
    font-family: "Montserrat", "Poppins", sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.02em;
}
.wa-icon::before {
    content: "WA";
}
/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(10px);
    transition: 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}
[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-animate][data-delay="120"] {
    transition-delay: 120ms;
}
[data-animate][data-delay="200"] {
    transition-delay: 200ms;
}

.clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* RTL helpers */
body.rtl .checklist li {
    padding-left: 0;
    padding-right: 28px;
}
body.rtl .checklist li:before {
    left: auto;
    right: 0;
}
body.rtl .filters {
    grid-template-columns: 1.2fr 1fr 1fr auto;
}
body.rtl .table th {
    text-align: right;
}
body.rtl .breadcrumbs {
    justify-content: flex-start;
}

/* Responsive */
@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .grid.cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .split {
        grid-template-columns: 1fr;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .filters {
        grid-template-columns: 1fr 1fr;
    }
    .filters-actions {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 740px) {
    .nav {
        display: none;
        position: absolute;
        top: 64px;
        right: 18px;
        left: 18px;
        flex-direction: column;
        gap: 10px;
        background: rgba(15, 20, 18, 0.98);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 12px;
        box-shadow: var(--shadow);
    }
    .nav.is-open {
        display: flex;
    }
    .nav-toggle {
        display: block;
    }
    .grid.cards {
        grid-template-columns: 1fr;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .brand-logo {
        width: 85px;
    }
}

/* Pagination (no Tailwind) */
.pager {
    margin-top: 10px;
}
.pager-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.pager-btn,
.pager-page,
.pager-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(232, 227, 201, 0.05);
    opacity: 0.92;
}
.pager-btn:hover,
.pager-page:hover {
    opacity: 1;
    background: rgba(232, 227, 201, 0.08);
}
.pager-btn.disabled {
    opacity: 0.45;
}
.pager-pages {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.pager-page.active {
    background: rgba(232, 227, 201, 0.14);
    opacity: 1;
    font-weight: 800;
}
/* Better typography scaling */
h1 {
    font-size: clamp(1.6rem, 4.2vw, 2.4rem);
}
h2 {
    font-size: clamp(1.25rem, 3.4vw, 1.8rem);
}
p,
a,
label,
input,
select,
button {
    font-size: clamp(0.95rem, 2.4vw, 1rem);
}

/* Navbar spacing on mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 16px;
    }
    .navbar .brand img {
        height: 34px;
    }
    .nav-toggle {
        width: 44px;
        height: 44px;
    }
}

/* Shop filters responsive */
.shop-filters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    align-items: end;
}
@media (max-width: 900px) {
    .shop-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 560px) {
    .stat-label {
        font-size: 13px;
    }
    .shop-filters {
        grid-template-columns: 1fr;
    }
}
.shop-filters input,
.shop-filters select {
    width: 100%;
}
.admin-shell {
    display: flex;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
}
.admin-sidebar {
    width: 260px;
    border-right: 1px solid var(--border);
    background: #fff;
    padding: 14px;
}
.admin-content {
    flex: 1;
    padding: 20px;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
}
.admin-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}
.admin-table th,
.admin-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.message-box {
    white-space: pre-wrap;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .admin-shell {
        flex-direction: column;
    }
    .admin-sidebar {
        width: 100%;
        position: sticky;
        top: 0;
        z-index: 5;
        display: flex;
        gap: 10px;
        overflow: auto;
        white-space: nowrap;
    }
    .admin-content {
        padding: 16px;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
}
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 9999;
}
.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    display: block;
}
.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;
}
/* Admin navbar responsive */
.admin-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: none;
    align-items: center;
    justify-content: center;
}

.admin-nav-toggle .bars {
    width: 18px;
    height: 2px;
    background: var(--text);
    position: relative;
    display: block;
}
.admin-nav-toggle .bars::before,
.admin-nav-toggle .bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--text);
}
.admin-nav-toggle .bars::before {
    top: -6px;
}
.admin-nav-toggle .bars::after {
    top: 6px;
}

@media (max-width: 860px) {
    .admin-header .header-inner {
        gap: 10px;
    }

    .admin-title {
        display: none; /* optional: hides "Admin Panel" text on small screens */
    }

    .admin-nav-toggle {
        display: flex;
        margin-left: auto;
    }

    /* Turn nav into dropdown */
    .admin-nav {
        display: none;
        position: fixed;
        left: 16px;
        right: 16px;
        top: 64px;
        z-index: 100000;
        flex-direction: column;
        gap: 8px;
        background: rgba(15, 20, 18, 0.98);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 12px;
        box-shadow: var(--shadow);
    }

    .admin-nav.is-open {
        display: flex;
    }

    .admin-nav a {
        padding: 10px 12px;
        border-radius: 12px;
        border: 1px solid var(--border);
    }

    .admin-nav form.inline {
        display: block;
        width: 100%;
    }
    .admin-nav form.inline .btn {
        width: 100%;
        justify-content: center;
    }
}
