@import url(
    'https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap'
);


:root {

    --background: #08070b;

    --background-light: #0e0c13;

    --card: rgba(
        255,
        255,
        255,
        0.045
    );

    --card-hover: rgba(
        255,
        255,
        255,
        0.075
    );

    --border: rgba(
        255,
        255,
        255,
        0.09
    );

    --text: #f7f4fa;

    --muted: #9993a5;

    --pink: #ff4fc4;

    --purple: #8c5cff;

    --gradient: linear-gradient(
        135deg,
        #ff4fc4,
        #8c5cff
    );

}


* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    min-height: 100vh;

    background:

        radial-gradient(
            circle at 80% 10%,
            rgba(
                140,
                92,
                255,
                0.12
            ),
            transparent 30%
        ),

        radial-gradient(
            circle at 10% 40%,
            rgba(
                255,
                79,
                196,
                0.08
            ),
            transparent 25%
        ),

        var(--background);

    color: var(--text);

    font-family:

        "Inter",

        sans-serif;

}


a {

    color: inherit;

    text-decoration: none;

}


.background-glow {

    position: fixed;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    filter: blur(150px);

    opacity: 0.06;

    pointer-events: none;

    z-index: -1;

}


.glow-one {

    background: var(--pink);

    top: -300px;

    right: -200px;

}


.glow-two {

    background: var(--purple);

    bottom: -300px;

    left: -200px;

}


/* NAVBAR */


.navbar {

    height: 80px;

    padding: 0 7%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid var(--border);

    background: rgba(
        8,
        7,
        11,
        0.7
    );

    backdrop-filter: blur(20px);

    position: sticky;

    top: 0;

    z-index: 10;

}


.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 20px;

    font-weight: 800;

    letter-spacing: 4px;

}


.logo img {

    width: 28px;

    height: 28px;

    object-fit: contain;

}


.nav-links {

    display: flex;

    align-items: center;

    gap: 32px;

}


.nav-links a {

    color: var(--muted);

    font-size: 14px;

    transition: 0.2s;

}


.nav-links a:hover {

    color: var(--text);

}


.nav-links .nav-button {

    padding: 11px 18px;

    border-radius: 8px;

    background: var(--gradient);

    color: white;

    font-weight: 600;

}


.nav-links .nav-wallet {

    padding: 9px 16px;

    border-radius: 100px;

    border: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.04);

    font-weight: 600;

    font-size: 14px;

    white-space: nowrap;

}


.nav-links .nav-wallet:hover {

    background: var(--card-hover);

}


.mobile-menu-button {

    display: none;

    background: none;

    border: none;

}


.mobile-menu-button span {

    display: block;

    width: 25px;

    height: 2px;

    background: white;

    margin: 5px;

}


/* HERO */


.hero {

    max-width: 1250px;

    margin: auto;

    padding: 130px 7% 110px;

    min-height: 650px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;

}


.hero h1 {

    max-width: 700px;

    font-size: clamp(
        48px,
        6vw,
        82px
    );

    line-height: 0.98;

    letter-spacing: -4px;

}


.hero h1 span {

    display: block;

    background: var(--gradient);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}


.hero p {

    margin-top: 28px;

    max-width: 500px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.7;

}


.hero-buttons {

    display: flex;

    gap: 14px;

    margin-top: 35px;

}


.primary-button,

.secondary-button {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    min-height: 48px;

    padding: 0 22px;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    border: none;

    transition: 0.25s;

}


.primary-button {

    background: var(--gradient);

    color: white;

    box-shadow:

        0 10px 35px

        rgba(
            255,
            79,
            196,
            0.15
        );

}


.primary-button:hover {

    transform: translateY(-2px);

    box-shadow:

        0 15px 45px

        rgba(
            255,
            79,
            196,
            0.3
        );

}


.secondary-button {

    border: 1px solid var(--border);

    color: var(--text);

}


.secondary-button:hover {

    background: var(--card-hover);

}


/* HERO VISUAL */


.hero-visual {

    display: flex;

    justify-content: center;

}


.hero-card {

    position: relative;

    width: 390px;

    height: 500px;

    padding: 28px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

    border-radius: 28px;

    background:

        linear-gradient(
            145deg,
            rgba(
                255,
                255,
                255,
                0.1
            ),
            rgba(
                255,
                255,
                255,
                0.025
            )
        ),

        linear-gradient(
            145deg,
            #17111f,
            #0d0b12
        );

    border: 1px solid rgba(
        255,
        255,
        255,
        0.14
    );

    box-shadow:

        0 35px 100px

        rgba(
            0,
            0,
            0,
            0.45
        ),

        0 0 80px

        rgba(
            255,
            79,
            196,
            0.12
        );

    transform: rotate(5deg);

    transition: 0.4s ease;

}


.hero-card:hover {

    transform:

        rotate(2deg)

        translateY(-8px);

}


.hero-card-glow {

    position: absolute;

    width: 280px;

    height: 280px;

    top: 80px;

    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background: var(--pink);

    filter: blur(100px);

    opacity: 0.16;

}


.hero-card-top {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.hero-brand {

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;

}


.hero-card-status {

    padding: 6px 10px;

    border-radius: 50px;

    border: 1px solid rgba(
        255,
        79,
        196,
        0.3
    );

    color: var(--pink);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;

}


.hero-card-center {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}


.hero-card-title {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: center;

}


.hero-card-title img {

    width: 220px;

    height: 220px;

    object-fit: contain;

    filter:

        drop-shadow(

            0 0 25px

            rgba(
                255,
                255,
                255,
                0.3
            )

        );

}


.hero-card-subtitle {

    position: relative;

    z-index: 2;

    margin-top: 12px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;

    color: rgba(
        255,
        255,
        255,
        0.75
    );

}


.hero-card-bottom {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    padding-top: 20px;

    border-top: 1px solid rgba(
        255,
        255,
        255,
        0.1
    );

}


.hero-card-bottom div {

    display: flex;

    flex-direction: column;

    gap: 6px;

}


.hero-card-bottom small {

    color: var(--muted);

    font-size: 8px;

    letter-spacing: 1px;

}


.hero-card-bottom strong {

    font-size: 12px;

    letter-spacing: 1px;

}


/* SECTIONS */


.section {

    max-width: 1250px;

    margin: auto;

    padding: 70px 7%;

}


.section-heading {

    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 30px;

}


.section-heading h2 {

    margin-top: 10px;

    font-size: 34px;

    letter-spacing: -1px;

}


.eyebrow {

    color: var(--pink);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.view-all {

    color: var(--pink);

    font-size: 14px;

}


/* PRODUCT CARDS */


.product-grid {

    display: grid;

    grid-template-columns:

        repeat(

            auto-fit,

            minmax(

                230px,

                1fr

            )

        );

    gap: 18px;

}


.product-card {

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 14px;

    background: var(--card);

    transition: 0.25s;

}


.product-card:hover {

    transform: translateY(-5px);

    background: var(--card-hover);

    border-color: rgba(
        255,
        79,
        196,
        0.35
    );

}


.product-image {

    height: 210px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    overflow: hidden;

    background:

        linear-gradient(
            135deg,
            rgba(
                255,
                79,
                196,
                0.14
            ),
            rgba(
                140,
                92,
                255,
                0.15
            )
        );

}


.product-image span {

    position: relative;

    z-index: 1;

    font-weight: 800;

    font-size: 22px;

    letter-spacing: 4px;

}


.product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;

}


.product-card:hover .product-image img {

    transform: scale(1.06);

}


.product-image-glow {

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background: var(--pink);

    filter: blur(90px);

    opacity: 0.3;

}


.product-info {

    padding: 20px;

}


.product-category {

    color: var(--pink);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.product-info h3 {

    margin-top: 8px;

    font-size: 16px;

}


.product-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 22px;

}


.product-bottom strong {

    font-size: 17px;

}


.product-bottom span {

    color: var(--muted);

    font-size: 12px;

}


/* FEATURES */


.features-section {

    max-width: 1100px;

    margin: 80px auto;

    padding: 0 7%;

    display: grid;

    grid-template-columns:

        repeat(

            3,

            1fr

        );

    gap: 50px;

}


.feature-number {

    color: var(--pink);

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 20px;

}


.feature h3 {

    font-size: 19px;

}


.feature p {

    margin-top: 12px;

    color: var(--muted);

    line-height: 1.6;

    font-size: 14px;

}


/* PAGE HEADER */


.page-header {

    max-width: 1250px;

    margin: auto;

    padding: 100px 7% 50px;

}


.page-header h1 {

    margin-top: 15px;

    font-size: 52px;

    letter-spacing: -2px;

}


.page-header p {

    margin-top: 15px;

    color: var(--muted);

}


/* SHOP */


.shop-layout {

    max-width: 1250px;

    margin: auto;

    padding: 20px 7% 100px;

    display: grid;

    grid-template-columns: 200px 1fr;

    gap: 50px;

}


.sidebar {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.sidebar-title {

    margin-bottom: 15px;

    font-size: 12px;

    font-weight: 700;

    color: var(--muted);

    letter-spacing: 1px;

}


.sidebar a {

    padding: 11px 13px;

    border-radius: 7px;

    color: var(--muted);

    font-size: 14px;

}


.sidebar a:hover,

.sidebar a.active {

    background: var(--card);

    color: var(--text);

}


.search-bar {

    display: flex;

    gap: 10px;

    margin-bottom: 25px;

}


.search-bar input {

    flex: 1;

    padding: 14px 16px;

    border: 1px solid var(--border);

    border-radius: 8px;

    background: var(--card);

    color: white;

    outline: none;

}


.search-bar button {

    padding: 0 22px;

    border: none;

    border-radius: 8px;

    background: var(--gradient);

    color: white;

    cursor: pointer;

}


/* PRODUCT PAGE */


.product-page {

    max-width: 1100px;

    margin: auto;

    padding: 100px 7%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}


.product-large-image {

    height: 500px;

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    overflow: hidden;

    background:

        linear-gradient(
            135deg,
            rgba(
                255,
                79,
                196,
                0.16
            ),
            rgba(
                140,
                92,
                255,
                0.16
            )
        );

    border: 1px solid var(--border);

}


.product-large-image span {

    position: relative;

    z-index: 1;

    font-size: 34px;

    font-weight: 800;

    letter-spacing: 5px;

}


.product-large-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


.product-details h1 {

    margin-top: 12px;

    font-size: 48px;

    letter-spacing: -2px;

}


.product-description {

    margin-top: 20px;

    color: var(--muted);

    line-height: 1.7;

}


.product-price {

    margin-top: 30px;

    font-size: 34px;

    font-weight: 700;

}


.delivery-box {

    display: flex;

    gap: 15px;

    margin: 30px 0;

    padding: 18px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: var(--card);

}


.delivery-icon {

    color: var(--pink);

    font-size: 20px;

}


.delivery-box strong {

    font-size: 14px;

}


.delivery-box p {

    margin-top: 5px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.5;

}


.full-width {

    width: 100%;

}


.payment-note {

    margin-top: 15px;

    color: var(--muted);

    text-align: center;

    font-size: 11px;

}


/* AUTH */


.auth-page {

    min-height: 700px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 80px 20px;

}


.auth-card {

    width: 100%;

    max-width: 430px;

    padding: 38px;

    border: 1px solid var(--border);

    border-radius: 16px;

    background: var(--card);

}


.auth-header h1 {

    margin-top: 12px;

    font-size: 30px;

}


.auth-header p {

    margin-top: 10px;

    color: var(--muted);

    font-size: 14px;

}


.auth-form {

    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-top: 30px;

}


.auth-form label {

    margin-top: 8px;

    color: var(--muted);

    font-size: 12px;

}


.auth-form input {

    padding: 14px;

    border: 1px solid var(--border);

    border-radius: 8px;

    background: rgba(
        0,
        0,
        0,
        0.2
    );

    color: white;

    outline: none;

}


.auth-form input:focus {

    border-color: var(--pink);

}


.auth-switch {

    margin-top: 25px;

    color: var(--muted);

    text-align: center;

    font-size: 13px;

}


.auth-switch a {

    color: var(--pink);

}


/* DASHBOARD */


.dashboard {

    max-width: 1250px;

    margin: auto;

    padding: 80px 7%;

}


.dashboard-header {

    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 45px;

}


.dashboard-header h1 {

    margin-top: 10px;

    font-size: 42px;

}


.balance-card {

    min-width: 180px;

    padding: 20px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: var(--card);

}


.balance-card span {

    display: block;

    color: var(--muted);

    font-size: 10px;

    letter-spacing: 1px;

}


.balance-card strong {

    display: block;

    margin-top: 8px;

    font-size: 25px;

}


.dashboard-grid {

    display: grid;

    grid-template-columns: 1.5fr 1fr;

    gap: 20px;

}


.dashboard-card {

    padding: 25px;

    border: 1px solid var(--border);

    border-radius: 14px;

    background: var(--card);

}


.dashboard-card h2 {

    font-size: 18px;

}


.dashboard-card-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--border);

}


.dashboard-card-header span {

    color: var(--muted);

    font-size: 12px;

}


.order-row {

    display: flex;

    justify-content: space-between;

    padding: 20px 0;

    border-bottom: 1px solid var(--border);

}


.order-row-expandable {

    flex-wrap: wrap;

    gap: 12px;

}


.delivered-content {

    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 6px;

    padding: 12px 14px;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.03);

    border: 1px solid var(--border);

}


.delivered-content span {

    font-size: 11px;

    letter-spacing: 0.5px;

    text-transform: uppercase;

}


.delivered-content code {

    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;

    font-size: 13px;

    color: var(--text);

    word-break: break-all;

    white-space: pre-wrap;

}


.order-row strong {

    display: block;

    font-size: 14px;

}


.order-row small {

    display: block;

    margin-top: 5px;

    color: var(--muted);

    font-size: 11px;

}


.order-status {

    color: var(--pink) !important;

}


.account-info {

    margin-top: 25px;

}


.account-info div {

    display: flex;

    justify-content: space-between;

    padding: 17px 0;

    border-bottom: 1px solid var(--border);

}


.account-info span {

    color: var(--muted);

    font-size: 12px;

}


.account-info strong {

    font-size: 13px;

}


/* EMPTY */


.empty-state {

    padding: 60px 20px;

    text-align: center;

}


.empty-state h3 {

    font-size: 18px;

}


.empty-state p {

    margin: 10px 0 25px;

    color: var(--muted);

}


/* FLASH */


.flash-container {

    position: fixed;

    top: 95px;

    right: 25px;

    z-index: 100;

}


.flash {

    padding: 15px 20px;

    margin-bottom: 10px;

    border: 1px solid var(--border);

    border-radius: 8px;

    background: #15121c;

    transition: 0.4s;

}


.flash.success {

    border-color: #5bdb9c;

}


.flash.error {

    border-color: #ff5f75;

}


/* FOOTER */


.footer {

    margin-top: 100px;

    padding: 50px 7% 25px;

    border-top: 1px solid var(--border);

    text-align: center;

}


.footer-logo {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-size: 18px;

    font-weight: 800;

    letter-spacing: 4px;

}


.footer-logo img {

    width: 26px;

    height: 26px;

    object-fit: contain;

}


.footer p {

    margin-top: 12px;

    color: var(--muted);

    font-size: 13px;

}


.footer-bottom {

    margin-top: 40px;

    color: var(--muted);

    font-size: 11px;

}


/* RESPONSIVE */


@media (max-width: 800px) {


    .navbar {

        padding: 0 5%;

    }


    .mobile-menu-button {

        display: block;

    }


    .nav-links {

        display: none;

        position: absolute;

        top: 80px;

        left: 0;

        width: 100%;

        padding: 20px;

        flex-direction: column;

        background: var(--background-light);

        border-bottom: 1px solid var(--border);

    }


    .nav-links.mobile-open {

        display: flex;

    }


    .hero {

        grid-template-columns: 1fr;

        padding-top: 80px;

    }


    .hero-visual {

        display: none;

    }


    .hero h1 {

        font-size: 52px;

    }


    .features-section {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .shop-layout {

        grid-template-columns: 1fr;

    }


    .sidebar {

        flex-direction: row;

        flex-wrap: wrap;

    }


    .product-page {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .product-large-image {

        height: 350px;

    }


    .dashboard-header {

        align-items: start;

        flex-direction: column;

        gap: 25px;

    }


    .dashboard-grid {

        grid-template-columns: 1fr;

    }

}


@media (max-width: 500px) {


    .hero h1 {

        font-size: 43px;

        letter-spacing: -2px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .primary-button,

    .secondary-button {

        width: 100%;

    }


    .page-header h1 {

        font-size: 38px;

    }


    .product-details h1 {

        font-size: 36px;

    }


    .hero-card {

        width: 330px;

        height: 440px;

    }


    .hero-card-title img {

        width: 180px;

        height: 180px;

    }

}

/* -----------------------------------
   ADMIN PANEL
----------------------------------- */

.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: start;
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.admin-sidebar {
    position: sticky;
    top: 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-sidebar-title {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--muted);
    text-transform: uppercase;
    padding: 8px 12px 14px;
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.admin-sidebar a:hover {
    background: var(--card-hover);
}

.admin-sidebar a.active {
    background: var(--gradient);
    color: #fff;
}

.admin-sidebar hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 10px 0;
}

.admin-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.admin-header h1 {
    font-size: 28px;
    font-weight: 700;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.admin-stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-stat-card span {
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--muted);
    text-transform: uppercase;
}

.admin-stat-card strong {
    font-size: 26px;
    font-weight: 700;
}

.admin-panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    overflow-x: auto;
}

.admin-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.admin-panel-header h2 {
    font-size: 18px;
    font-weight: 700;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 640px;
}

.admin-table th {
    text-align: left;
    color: var(--muted);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.admin-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.admin-thumb {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--gradient);
    display: inline-block;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: capitalize;
}

.badge-owner {
    background: rgba(255, 79, 196, 0.15);
    color: #ff8fd8;
    border: 1px solid rgba(255, 79, 196, 0.35);
}

.badge-admin {
    background: rgba(140, 92, 255, 0.15);
    color: #b39dff;
    border: 1px solid rgba(140, 92, 255, 0.35);
}

.badge-member {
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted);
    border: 1px solid var(--border);
}

.badge-visible {
    background: rgba(80, 220, 150, 0.12);
    color: #7fe3ac;
    border: 1px solid rgba(80, 220, 150, 0.3);
}

.badge-hidden {
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted);
    border: 1px solid var(--border);
}

.admin-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-actions form {
    display: inline;
}

.btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-small:hover {
    background: var(--card-hover);
}

.btn-small.danger {
    color: #ff8f8f;
    border-color: rgba(255, 90, 90, 0.35);
}

.btn-small.danger:hover {
    background: rgba(255, 90, 90, 0.1);
}

.btn-small.accent {
    background: var(--gradient);
    border: none;
    color: #fff;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 640px;
}

.admin-form label {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 6px;
    display: block;
}

.admin-form input[type="text"],
.admin-form input[type="number"],
.admin-form input[type="file"],
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
}

.admin-form textarea {
    resize: vertical;
    min-height: 100px;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    outline: none;
    border-color: var(--purple);
}

.admin-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.admin-checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-checkbox-row input {
    width: 16px;
    height: 16px;
    accent-color: var(--purple);
}

.admin-checkbox-row label {
    margin: 0;
    color: var(--text);
    font-weight: 500;
}

.text-muted {
    color: var(--muted);
    font-size: 13px;
}

.admin-empty {
    padding: 40px 0;
    text-align: center;
    color: var(--muted);
}

.admin-table code {

    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;

    font-size: 13px;

    background: rgba(255, 255, 255, 0.04);

    padding: 3px 8px;

    border-radius: 6px;

}


@media (max-width: 900px) {

    .admin-layout {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .admin-sidebar {
        position: relative;
        top: 0;
        flex-direction: row;
        overflow-x: auto;
    }

    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-form-row {
        grid-template-columns: 1fr;
    }

}
