@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap');

:root {
    --primary: #2563eb;
    --secondary: #1e40af;
    --accent: #60a5fa;
    --bg: #f8fafc;
    --text: #0b1f3a;
    --muted: #5c6b82;
    --card: #ffffff;
    --border: #d9e2ef;
    --shadow: 0 18px 40px rgba(14, 35, 84, 0.12);
    --glass: rgba(255, 255, 255, 0.72);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    animation: pageIn 0.45s ease both;
}

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

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

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
}

.topbar {
    background: var(--secondary);
    color: #e5eeff;
    font-size: 0.85rem;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.navbar {
    padding: 12px 0;
}

.nav-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: "Poppins", sans-serif;
}

.logo-dot {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.nav-menu {
    display: flex;
    gap: 14px;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    margin-left: 10px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    display: grid;
    place-items: center;
    color: var(--secondary);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ef4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 999px;
    border: 2px solid #fff;
}

.icon-btn.danger {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    color: #ef4444;
    border-color: #fecaca;
    background: #fff5f5;
}

.icon-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: var(--shadow);
}

.icon {
    width: 18px;
    height: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(37, 99, 235, 0.3);
}

.btn.ghost {
    background: #e9f0ff;
    color: var(--primary);
    box-shadow: none;
}

.btn.small {
    padding: 8px 14px;
    font-size: 0.85rem;
}

.search-wrap {
    margin-left: auto;
}

.search-bar {
    display: grid;
    grid-template-columns: 150px 1fr 90px;
    gap: 8px;
    background: #f8faff;
    border-radius: 14px;
    padding: 6px;
    border: 1px solid var(--border);
    width: 320px;
    transition: width 0.25s ease, box-shadow 0.25s ease;
}

.search-bar input {
    border: none;
    background: transparent;
    padding: 8px 10px;
    font-size: 0.95rem;
    outline: none;
    min-width: 0;
}

.search-select {
    border: 1px solid var(--border);
    background: #fff;
    padding: 8px 10px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--muted);
}

.search-bar button {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 600;
}

.search-wrap:focus-within .search-bar,
.search-bar:hover {
    width: 520px;
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.18);
}

.hero {
    background: radial-gradient(circle at top, #e8f1ff 0%, #f7faff 60%, #ffffff 100%);
    padding: 60px 0 48px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -20% 0 auto 0;
    height: 320px;
    background: radial-gradient(circle at 20% 20%, rgba(37,99,235,0.28), transparent 55%);
    animation: floatGlow 8s ease-in-out infinite;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
    position: relative;
}

.hero-content h1 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.1rem, 3.2vw, 3.2rem);
    margin-bottom: 12px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    color: var(--muted);
}

.hero-stats strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text);
}

.hero-visual {
    position: relative;
    min-height: 320px;
}

.hero-visual img.hero-banner {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.hero-glow {
    position: absolute;
    inset: 40px 40px 0 0;
    background: radial-gradient(circle, rgba(37,99,235,0.4), transparent 60%);
    filter: blur(30px);
}

.floating-card {
    position: absolute;
    right: 24px;
    top: 20px;
    padding: 18px;
    border-radius: 18px;
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card.small {
    top: 200px;
    right: 120px;
    padding: 14px;
    animation-delay: 1.5s;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.section {
    padding: 56px 0;
}

.section.alt {
    background: #f0f4fb;
}

.section.flash {
    background: linear-gradient(180deg, rgba(255, 70, 70, 0.08), rgba(255, 255, 255, 0));
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.grid {
    display: grid;
    gap: 20px;
}

.grid.categories {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid.products {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid.testimonials {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.auth-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.auth-card h2 {
    margin-bottom: 6px;
}

.auth-card p {
    color: var(--muted);
    margin-bottom: 16px;
}

.auth-card .muted {
    margin-top: 12px;
}

.auth-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 10px;
    margin-bottom: 12px;
}

.form-grid label {
    font-weight: 600;
    font-size: 0.9rem;
}

.form-grid input {
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-top: 6px;
    background: #fff;
}

.form-grid select,
.form-grid textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-top: 6px;
    background: #fff;
}

.form-input {
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-grid select:focus,
.form-grid textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

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

.card.highlight {
    background: linear-gradient(180deg, #f3f7ff, #ffffff);
    border: 1px solid #dbe6ff;
}

.rating .stars {
    color: #f59e0b;
    letter-spacing: 1px;
    font-weight: 700;
}

.alert {
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid transparent;
}

.alert-success {
    background: #ecfdf3;
    border-color: #b7f0c9;
    color: #157a3b;
}

.alert-error {
    background: #fff1f2;
    border-color: #fecdd3;
    color: #b42318;
}

.seller-cta p {
    margin-bottom: 12px;
}

/* Member layout */
.member-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    align-items: start;
}

.member-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 10px;
}

.member-sidebar .card {
    padding: 14px;
}

.member-nav {
    display: grid;
    gap: 8px;
}

.member-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--muted);
    font-weight: 600;
}

.member-nav a.active {
    color: var(--primary);
    border-color: #c7ddff;
    background: #eef4ff;
}

.member-content .card {
    margin-bottom: 18px;
}

@media (max-width: 992px) {
    .member-layout {
        grid-template-columns: 1fr;
    }
    .member-sidebar {
        position: static;
    }
}

.card.highlight h3 {
    margin-bottom: 10px;
}

.card.highlight ul {
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: var(--muted);
}

.card {
    background: var(--card);
    border-radius: 18px;
    padding: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(14, 35, 84, 0.18);
}

.category-card {
    display: flex;
    gap: 12px;
    align-items: center;
}

.category-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #eef3ff;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: var(--primary);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.08);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.product-thumb {
    height: 190px;
    border-radius: 16px;
    background: #eef3ff;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.product-card:hover .product-thumb img {
    transform: scale(1.06);
}

.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
}

.wish {
    position: absolute;
    top: 12px;
    left: 12px;
    border: none;
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.2s ease;
    display: grid;
    place-items: center;
}

.wish .icon {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
}

.wish:hover {
    transform: scale(1.08);
}

.product-actions {
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.25s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.rating {
    color: #f59e0b;
    font-weight: 600;
}

.sold {
    font-size: 0.85rem;
    color: var(--muted);
}

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

.price-row .old {
    text-decoration: line-through;
    color: var(--muted);
    font-size: 0.85rem;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--muted);
}

.timer {
    display: flex;
    gap: 6px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 6px 10px;
    animation: pulseTimer 1.5s ease-in-out infinite;
}

.flash-progress {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.bar {
    height: 8px;
    border-radius: 999px;
    background: #ffe5e5;
    overflow: hidden;
}

.bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #ef4444, #f97316);
    animation: progressPulse 2.5s ease-in-out infinite;
}

.testimonial {
    font-style: italic;
}

.site-footer {
    background: #0f2246;
    color: #d8e2f6;
    padding-top: 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.footer-grid ul {
    padding-left: 18px;
}

.socials {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    place-items: center;
    color: #e6efff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.newsletter {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.newsletter input {
    flex: 1;
    padding: 8px 10px;
    border-radius: 10px;
    border: none;
}

.payment-logos {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.payment-logos span {
    background: rgba(255, 255, 255, 0.12);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e6efff;
}

.payment-logo svg {
    width: 24px;
    height: 24px;
}

.address-card {
    background: #f8fbff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    display: grid;
    gap: 6px;
    margin-bottom: 14px;
}

.payment-card {
    background: #f8fbff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: #e9f0ff;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    padding: 14px 0;
    font-size: 0.85rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section:nth-of-type(2) { animation-delay: 0.05s; }
.section:nth-of-type(3) { animation-delay: 0.1s; }
.section:nth-of-type(4) { animation-delay: 0.15s; }
.section:nth-of-type(5) { animation-delay: 0.2s; }

@keyframes pageIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


@keyframes floatGlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes pulseTimer {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@media (max-width: 1100px) {
    .nav-row {
        flex-wrap: wrap;
        row-gap: 12px;
    }
    .search-bar {
        width: 280px;
        grid-template-columns: 120px 1fr 90px;
    }
    .search-wrap:focus-within .search-bar,
    .search-bar:hover {
        width: 420px;
    }
}

@media (max-width: 992px) {
    .nav-row {
        flex-wrap: wrap;
        row-gap: 12px;
    }
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-actions {
        justify-content: center;
    }
    .search-wrap {
        width: 100%;
    }
    .search-bar {
        width: 100%;
        grid-template-columns: 130px 1fr 100px;
    }
    .search-wrap:focus-within .search-bar,
    .search-bar:hover {
        width: 100%;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .auth-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .topbar {
        display: none;
    }
    .search-bar {
        grid-template-columns: 1fr;
    }
    .search-bar button {
        width: 100%;
    }
    .hero-stats {
        grid-template-columns: 1fr;
    }
    .newsletter {
        flex-direction: column;
    }
}

/* Cart */
.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: start;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: start;
}

.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr 90px 140px;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-thumb {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    overflow: hidden;
    background: #eef3ff;
    display: grid;
    place-items: center;
}

.cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-info p {
    color: var(--muted);
    font-size: 0.9rem;
}

.cart-meta {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 6px;
}

.cart-meta .price {
    font-weight: 700;
    color: var(--primary);
}

.link-danger {
    color: #ef4444;
    font-weight: 600;
}

.cart-qty label {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 4px;
}

.cart-qty input {
    width: 70px;
    padding: 6px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.cart-price {
    display: grid;
    gap: 4px;
    justify-items: end;
}

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

@media (max-width: 640px) {
    .cart-item {
        grid-template-columns: 1fr;
        justify-items: start;
    }
    .cart-price {
        justify-items: start;
    }
}

/* Admin Panel */
.admin-body {
    background: var(--bg);
    min-height: 100vh;
}

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

.admin-sidebar {
    background: #0f2144;
    color: #e6edff;
    padding: 24px 18px;
    position: sticky;
    top: 0;
    height: 100vh;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.admin-brand small {
    display: block;
    color: #9fb6e9;
    font-size: 0.78rem;
    margin-top: 2px;
}

.admin-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.admin-sidebar nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    color: #dbe6ff;
    font-weight: 600;
    transition: all 0.2s ease;
}

.admin-sidebar nav a i {
    font-size: 1rem;
    color: #9fb6e9;
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover {
    background: rgba(37, 99, 235, 0.22);
    color: #ffffff;
}

.admin-sidebar nav a.active i,
.admin-sidebar nav a:hover i {
    color: #ffffff;
}

.admin-main {
    padding: 28px 32px 40px;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 50%);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px 18px;
}

.admin-header h2 {
    font-size: 1.7rem;
    margin-bottom: 4px;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.admin-content .card {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 18px;
    padding: 20px;
}

.admin-stat {
    color: #0b1f3a;
}

.admin-stat strong {
    display: block;
    font-size: 1.6rem;
    margin-top: 6px;
}

.admin-stat.primary {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(96, 165, 250, 0.3));
    border-color: rgba(37, 99, 235, 0.3);
}

.admin-stat.secondary {
    background: linear-gradient(135deg, rgba(14, 116, 144, 0.14), rgba(59, 130, 246, 0.22));
    border-color: rgba(14, 116, 144, 0.25);
}

.admin-stat.accent {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.16), rgba(37, 99, 235, 0.28));
    border-color: rgba(37, 99, 235, 0.3);
}

.admin-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
}

.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 6px 10px;
    margin-left: 6px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 8px;
}

.icon-btn-sm {
    width: 34px;
    height: 34px;
    padding: 0;
}

.admin-login-body {
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.16), transparent 60%), var(--bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.admin-login {
    width: min(420px, 92%);
}

.admin-login .card {
    padding: 28px;
    border-radius: 20px;
}

.admin-login input {
    width: 100%;
    margin-bottom: 12px;
}

@media (max-width: 900px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        position: relative;
        height: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}
