/* =====================================================================
   SoftMarket Ã¢â‚¬â€ 2026 AÃƒÂ§Ã„Â±k Tema | Vurgu: #9300ff
   TÃƒÂ¼m seÃƒÂ§iciler korunmuÃ…Å¸tur. Mobil uyumlu, burger menÃƒÂ¼ dahil.
   ===================================================================== */

:root {
    --ink: #0a0e1a;
    --ink-soft: #2a2a3a;
    --paper: #f6f8fc;
    --surface: #ffffff;
    --border: #e5e9f0;
    --border-strong: #c8d0dd;
    --muted: #6b7a93;

    --accent: #9300ff;
    --accent-soft: #f0e6ff;
    --accent-ink: #4a0080;

    --gold: #ffb800;
    --gold-soft: #fff5d6;

    --danger: #ff4444;
    --danger-soft: #ffe6e6;
    --info: #4488ff;
    --info-soft: #e6edff;

    --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;

    --space-1: 6px; --space-2: 12px; --space-3: 18px; --space-4: 24px;
    --space-5: 36px; --space-6: 48px; --space-7: 64px; --space-8: 96px;
    --radius-sm: 12px;
    --radius: 24px;
    --radius-lg: 40px;
    --shadow-sm: 0 2px 8px rgba(10,14,26,0.04), 0 4px 16px rgba(10,14,26,0.02);
    --shadow: 0 12px 48px rgba(10,14,26,0.06), 0 4px 16px rgba(10,14,26,0.03);
    --shadow-lg: 0 32px 80px rgba(10,14,26,0.08), 0 8px 32px rgba(10,14,26,0.04);
    --shadow-glow: 0 8px 40px rgba(147,0,255,0.20);
}

/* --- Temel --- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    background-image: radial-gradient(ellipse at 20% 30%, rgba(147,0,255,0.03) 0%, transparent 60%),
                      radial-gradient(ellipse at 80% 70%, rgba(255,184,0,0.02) 0%, transparent 50%);
    min-height: 100vh;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

::selection { background: var(--accent); color: #fff; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* --- Tipografi --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 var(--space-4);
    color: var(--ink);
}
h1 { font-size: 3.2rem; }
h2 { font-size: 2.2rem; margin-top: var(--space-7); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

a { color: var(--ink); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #ffffff; }

code, pre, .mono { font-family: var(--font-mono); }

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 6px;
    border-radius: 8px;
}

/* =====================================================================
   HEADER Ã¢â‚¬â€ Glassmorphism
   ===================================================================== */
.site-header {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    position: sticky;
    top: 20px;
    z-index: 50;
    margin: 0 24px;
    border-radius: 60px;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 8px 48px rgba(10,14,26,0.04), 0 2px 12px rgba(10,14,26,0.02);
    transition: box-shadow 0.4s ease, background 0.4s ease;
}
.site-header.scrolled {
    background: rgba(255,255,255,0.85);
    box-shadow: 0 12px 56px rgba(10,14,26,0.08);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.logo:hover { opacity: 0.75; color: var(--ink); }

.logo-dots { display: inline-flex; gap: 6px; }
.logo-dots i {
    width: 12px; height: 12px; border-radius: 50%; display: inline-block;
    background: var(--accent);
    box-shadow: 0 0 20px rgba(147,0,255,0.3);
}
.logo-dots i:nth-child(2) {
    background: var(--gold);
    box-shadow: 0 0 20px rgba(255,184,0,0.3);
}
.logo-dots i:nth-child(3) {
    background: #34d399;
    box-shadow: 0 0 20px rgba(52,211,153,0.3);
}

.main-nav {
    display: flex;
    gap: 12px;
    align-items: center;
}
.main-nav a {
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 22px;
    border-radius: 60px;
    transition: all 0.3s ease;
}
.main-nav a:hover {
    color: var(--accent);
    background: rgb(255 0 0 / 6%);
}
.main-nav a.nav-muted {color: var(--danger);}
.main-nav a::after { display: none; }
.main-nav a.active {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.nav-cart {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 16px;
    border-radius: 60px;
    transition: all 0.3s ease;
}
.nav-cart:hover {
    background: rgba(147,0,255,0.08);
    border-color: rgba(147,0,255,0.20);
}
.nav-badge {
    background: var(--accent);
    color: #fff;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 2px 12px;
    border-radius: 40px;
    min-width: 26px;
    text-align: center;
    box-shadow: var(--shadow-glow);
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--muted);
    margin-top: var(--space-8);
    border-top: 1px solid rgba(255,255,255,0.8);
}
.footer-inner {
    padding: var(--space-6) 32px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    align-items: center;
    justify-content: space-between;
}
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 600;
}
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a {
    color: var(--muted);
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
    width: 100%;
    text-align: center;
    opacity: 0.6;
}

/* =====================================================================
   BUTTONLAR
   ===================================================================== */
.btn-primary, button[type="submit"].btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
    background: #a833ff;
    box-shadow: 0 8px 40px rgba(147,0,255,0.35);
    transform: translateY(-4px) scale(1.02);
}
.btn-primary:active { transform: translateY(0) scale(0.96); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid var(--border-strong);
    color: var(--ink-soft);
    padding: 14px 32px;
    border-radius: 60px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(147,0,255,0.04);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.btn-sm {padding: 10px 24px;font-size: 0.9rem;margin-bottom: 10px;margin-left: 10px;}

.link-btn {
    background: none;
    border: none;
    color: var(--info);
    cursor: pointer;
    padding: 0;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.link-btn:hover { text-decoration: underline; color: var(--accent); }
.link-btn.danger { color: var(--danger); }
.link-btn.danger:hover { color: #cc0000; }

/* =====================================================================
   FORMLAR
   ===================================================================== */
.form-group { margin-bottom: 28px; }
.form-row { display: flex; gap: 24px; }
.form-row .form-group { flex: 1; }
label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--ink-soft);
    letter-spacing: -0.01em;
}
input[type="email"],input[type="password"],input[type="text"],select, textarea{
    width: 100%;
    padding: 12px 25px;
    border: 1px solid var(--accent);
    border-radius: 60px;
    font-size: 1rem;
    background: var(--surface);
    font-family: var(--font-body);
    color: var(--ink);
    transition: border-color 0.3s ease, box-shadow 0.4s ease;
    box-shadow: 7px 7px 45px -5px rgb(147 0 255 / 17%);
}

 input[type="number"],
input[type="url"], input[type="date"] {
    width: 100%;
    padding: 7px 11px;
    border: 1px solid var(--accent);
    border-radius: 60px;
    font-size: 1rem;
    background: var(--surface);
    font-family: var(--font-body);
    color: var(--ink);
    transition: border-color 0.3s ease, box-shadow 0.4s ease;
    box-shadow: 7px 7px 45px -5px rgb(147 0 255 / 17%);
}
input:focus, select:focus, textarea:focus {
    outline: none;
    z-index: 50;
    background: #fff;
}
textarea { border-radius: var(--radius); min-height: 120px; }
small { color: var(--muted); font-size: 0.85rem; }
.field-error { color: var(--danger); font-size: 0.85rem; margin-top: 6px; }
.inline-form { display: inline-flex; gap: 12px; align-items: center; }

/* =====================================================================
   UYARILAR
   ===================================================================== */
.alert {
    padding: 20px 28px;
    border-radius: var(--radius);
    margin-bottom: 28px;
    border-left: 8px solid;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
}
.alert-success {
    background: var(--accent-soft);
    color: var(--accent-ink);
    border-color: var(--accent);
}
.alert-error {
    background: var(--danger-soft);
    color: #990000;
    border-color: var(--danger);
}
.alert-info {
    background: var(--info-soft);
    color: #1a3a8a;
    border-color: var(--info);
}
.alert pre { white-space: pre-wrap; margin: 0; font-family: var(--font-mono); font-size: 0.9rem; }

/* =====================================================================
   AUTH
   ===================================================================== */
.auth-form-wrap {
    max-width: 480px;
    margin: 80px auto;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 56px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.8);
}
.auth-form-wrap h1 { font-size: 2rem; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
    position: relative;
    margin: 48px 0 var(--space-7);
    padding: var(--space-7) var(--space-6);
    background: linear-gradient(145deg, #f0f2f8 0%, #e8e4f0 100%);
    border-radius: var(--radius-lg);
    color: var(--ink);
    overflow: hidden;
    border: 1px solid rgba(147,0,255,0.08);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image: radial-gradient(rgb(168 0 255) 1px, #ffffff00 2px);
    background-size: 18px 18px;
    mask-image: radial-gradient(ellipse at top left, #ffffff00, #5c005f8c 70%);
}
.hero::after {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(147,0,255,0.05), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-ink);
    background: rgba(147,0,255,0.08);
    border: 1px solid rgba(147,0,255,0.12);
    padding: 8px 24px;
    border-radius: 60px;
    margin-bottom: var(--space-4);
}
.hero-eyebrow .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent);
    display: inline-block;
    box-shadow: 0 0 20px rgba(147,0,255,0.3);
    animation: pulse-dot 2.4s infinite ease-in-out;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.6); }
}
.hero-title {
    position: relative;
    font-size: 4rem;
    color: var(--ink);
    margin-bottom: var(--space-3);
    max-width: 700px;
}
.hero-sub {
    position: relative;
    color: var(--ink-soft);
    max-width: 580px;
    font-size: 1.2rem;
    margin-bottom: var(--space-6);
}
.hero-stats {
    position: relative;
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
}
.hero-stat {
    font-size: 0.9rem;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hero-stat .mono {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 600;
    color: var(--ink);
}
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 32px;
    position: relative;
    flex-wrap: wrap;
}
.hero-buttons .btn-outline {
    border-color: var(--border-strong);
    color: var(--ink-soft);
}
.hero-buttons .btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(147,0,255,0.04);
}

/* =====================================================================
   ANA SAYFA BÃƒâ€“LÃƒÅ“MLERÃ„Â°
   ===================================================================== */
.categories-section,
.features-section,
.testimonials-section,
.blog-section,
.newsletter-section {
    margin: 64px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
}
.category-card {
    background: var(--surface);
    padding: 28px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--ink);
}
.category-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow);
    border-color: var(--accent);
    text-decoration: none;
}
.category-icon { font-size: 2.4rem; }
.category-name { font-weight: 600; font-size: 1rem; }
.category-count { font-size: 0.8rem; color: var(--muted); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}
.feature-card {
    background: var(--surface);
    padding: 32px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: var(--shadow-sm);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.feature-icon { font-size: 2.8rem; margin-bottom: 16px; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.feature-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.testimonial-card {
    background: var(--surface);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
}
.testimonial-card:hover { 
    box-shadow: var(--shadow);
    border: 1px solid var(--accent);
}
.testimonial-card p {
    font-style: italic;
    color: var(--ink-soft);
    margin: 0 0 14px;
    font-size: 1rem;
}
.testimonial-card cite { font-weight: 600; color: var(--accent-ink); }

.blog-section .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}
.blog-section .blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: var(--shadow-sm);
}
.blog-section .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.blog-section .blog-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-section .blog-card:hover img { transform: scale(1.04); }
.blog-section .blog-card-body { padding: 20px; }
.blog-section .blog-card-category {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--muted);
}
.blog-section .blog-card-body h3 {
    font-size: 1.15rem;
    margin: 8px 0;
}
.blog-section .blog-card-body p { color: var(--muted); font-size: 0.9rem; }

.newsletter-section {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 52px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.newsletter-inner { max-width: 600px; margin: 0 auto; }
.newsletter-form {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.newsletter-form input {
    flex: 1;
    min-width: 220px;
    padding: 16px 24px;
    border: 2px solid var(--border);
    border-radius: 60px;
    font-size: 1rem;
    background: var(--surface);
    color: var(--ink);
}
.newsletter-form input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 8px var(--accent-soft);
}

/* =====================================================================
   KATALOG
   ===================================================================== */
.catalog-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    margin: 40px 0 var(--space-8);
}
.catalog-sidebar h3 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #000000;
    margin-top: var(--space-6);
    font-family: var(--font-mono);
    font-weight: 600;
}
.category-list { list-style: none; padding: 0; margin: 0; }
.category-list li a {
    display: block;
    padding: 10px 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
    border-left: 4px solid transparent;
    padding-left: 20px;
    transition: all 0.3s ease;
}
.category-list li a.active {
    color: var(--accent);
    font-weight: 700;
    border-left-color: var(--accent);
    background: linear-gradient(90deg, rgba(147,0,255,0.04), transparent);
}
.search-form {
    display: flex;
    gap: 12px;
}
.search-form input {
    font-size: 0.95rem;
    border-radius: 60px;
    background: var(--surface);
    color: var(--ink);
}
.search-form button {
    border: 2px solid var(--border);
    background: var(--surface);
    border-radius: 60px;
    padding: 0 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--ink-soft);
}
.search-form button:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 32px;
}
.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    color: var(--ink);
    display: block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-sm);
}
.product-card:hover {
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px) scale(1.01);
    border-color: var(--accent);
}
.product-card-image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #f0f4fe, #e4eaf5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card-image { transform: scale(1.04); }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; }
.product-card-placeholder {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--border-strong);
}
.product-card-placeholder.large {
    font-size: 6rem;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.product-card-body { padding: 24px; }
.product-card-category {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.product-card-body h3 {
    margin: 10px 0 6px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.product-card:hover .product-card-body h3 { color: var(--accent); }
.product-card-body p { color: var(--muted); font-size: 0.9rem; margin: 0; }
.product-card-price {
    margin-top: 16px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.2rem;
}
.product-card-price.large { font-size: 2rem; }
.price-old {
    text-decoration: line-through;
    color: var(--muted);
    margin-right: 12px;
    font-weight: 400;
    font-size: 0.85em;
}
.price-sale { color: var(--accent-ink); }

/* =====================================================================
   ÃƒÅ“RÃƒÅ“N DETAY
   ===================================================================== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 48px 0;
}
.main-image {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.4s ease;
}
.main-image:hover { box-shadow: var(--shadow); }
.thumbnails {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}
.thumbnails img {
    width: 84px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
}
.thumbnails img:hover {
    border-color: var(--accent);
    transform: scale(1.05);
}
.breadcrumb {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}
.short-desc { color: var(--ink-soft); }
.product-meta-list { list-style: none; padding: 0; font-size: 0.95rem; }
.product-meta-list li {
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
    display: flex;
    justify-content: space-between;
}
.tag-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.tag {
    background: var(--paper);
    border: 1px solid var(--border);
    padding: 6px 20px;
    border-radius: 60px;
    font-size: 0.8rem;
    font-family: var(--font-mono);
    color: var(--ink-soft);
    transition: all 0.3s ease;
}
.tag:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}
.product-description {
    margin: 64px 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px;
    box-shadow: var(--shadow-sm);
}

/* =====================================================================
   SEPET / CHECKOUT / TABLOLAR
   ===================================================================== */
.cart-table, .data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.cart-table th, .data-table th {
    background: var(--paper);
    text-align: left;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-family: var(--font-mono);
    font-weight: 600;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
}
.cart-table td, .data-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}
.cart-table tr:last-child td,
.data-table tr:last-child td { border-bottom: none; }
.cart-table tbody tr:hover,
.data-table tbody tr:hover { background: rgba(147,0,255,0.02); }

.cart-summary {
    margin-top: 32px;
    text-align: right;
    font-family: var(--font-mono);
    background: var(--surface);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.cart-summary p { margin: 10px 0; }

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.checkout-summary, .checkout-payment {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}
.checkout-summary table {
    width: 100%;
    font-family: var(--font-mono);
    font-size: 0.95rem;
}
.checkout-summary table td { padding: 10px 0; }
.payment-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    background: var(--surface);
    cursor: pointer;
    transition: all 0.3s ease;
}
.payment-option:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
    box-shadow: var(--shadow-sm);
}

/* =====================================================================
   DASHBOARD
   ===================================================================== */
.dashboard-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    margin: 40px 0 var(--space-8);
}

.dashboard-nav, .admin-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: var(--surface);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-sm);
}

.dashboard-nav a, .admin-nav a {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    color: var(--ink-soft);
    font-size: 0.95rem;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.dashboard-nav a:hover, .admin-nav a:hover {
    background: var(--paper);
    transform: translateX(8px);
    background-color:#9300ff40;
}
.dashboard-nav a.active, .admin-nav a.active {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.dashboard-content { min-width: 0; }
.dashboard-content h1 { margin-bottom: var(--space-5); }

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
    margin: 28px 0 48px;
}
.stat-card {
    background: var(--surface);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
}
.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}
.stat-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, var(--accent));
}
.stat-number {
    display: block;
    font-family: var(--font-mono);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ink);
}
.stat-card span:last-child { font-size: 0.85rem; color: var(--muted); }

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
}
.filter-bar {
    display: flex;
    gap: 14px;
    margin: 20px 0;
    flex-wrap: wrap;
}
.filter-bar a {
    padding: 10px 24px;
    border-radius: 60px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--ink-soft);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.filter-bar a.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}
.filter-bar a:hover:not(.active) {
    background: var(--paper);
    border-color: var(--border-strong);
}
.actions-cell { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

/* =====================================================================
   ROZETLER
   ===================================================================== */
.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 60px;
    font-size: 0.75rem;
    background: var(--paper);
    color: var(--ink-soft);
    font-family: var(--font-mono);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.02);
}
.badge-active, .badge-paid, .badge-published, .badge-approved, .badge-success {
    background: var(--accent-soft);
    color: var(--accent-ink);
    box-shadow: 0 0 20px rgba(147,0,255,0.10);
}
.badge-pending, .badge-open, .badge-draft {
    background: var(--gold-soft);
    color: #7a5a00;
    box-shadow: 0 0 20px rgba(255,184,0,0.10);
}
.badge-suspended, .badge-failed, .badge-cancelled, .badge-revoked, .badge-banned {
    background: var(--danger-soft);
    color: #990000;
    box-shadow: 0 0 20px rgba(255,68,68,0.10);
}
.badge-closed, .badge-archived, .badge-refunded {
    background: var(--border);
    color: var(--muted);
}

/* =====================================================================
   LÃ„Â°SANS / DESTEK
   ===================================================================== */
.license-card {
    background: var(--surface);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}
.license-card:hover { box-shadow: var(--shadow); }
.license-card code {
    background: var(--paper);
    padding: 4px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--accent-ink);
}
.ticket-thread {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 28px 0;
}
.ticket-message {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 20px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.ticket-message.staff {
    background: var(--accent-soft);
    border-color: var(--accent);
}
.new-ticket-form {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: var(--radius);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}
.new-ticket-form summary { cursor: pointer; font-weight: 600; }

/* =====================================================================
   BÃ„Â°LDÃ„Â°RÃ„Â°MLER
   ===================================================================== */
.notification-list { list-style: none; padding: 0; }
.notification-list li {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 18px 24px;
    border-radius: var(--radius);
    margin-bottom: 14px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.notification-list li:hover { box-shadow: var(--shadow); }
.notification-list li.unread {
    border-left: 6px solid var(--gold);
    background: var(--gold-soft);
}

/* =====================================================================
   BLOG
   ===================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}
.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    color: var(--ink);
    display: block;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}
.blog-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover img { transform: scale(1.04); }
.blog-card-body { padding: 24px; }
.blog-card-category {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--muted);
}
.blog-post .post-cover {
    width: 100%;
    border-radius: var(--radius);
    margin: 24px 0;
    box-shadow: var(--shadow-sm);
}
.post-meta {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--muted);
}
.comments-section { margin: 60px 0; }
.comment {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 20px 28px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

/* =====================================================================
   SAYFALAMA
   ===================================================================== */
.pagination {
    display: flex;
    gap: 10px;
    margin: 40px 0;
}
.pagination a {
    padding: 10px 22px;
    border-radius: 60px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--ink-soft);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.pagination a.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}
.pagination a:hover:not(.active) {
    background: var(--paper);
    border-color: var(--border-strong);
}

/* =====================================================================
   KUPON FORMU
   ===================================================================== */
.coupon-form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: var(--radius);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}
.coupon-form input,
.coupon-form select {
    width: auto;
    flex: 1;
    min-width: 180px;
}

/* =====================================================================
   BURGER MENU Ã¢â‚¬â€ MOBÃ„Â°L (CSS EKLENTÃ„Â°SÃ„Â°)
   ===================================================================== */

/* Burger butonu (sadece mobilde gÃƒÂ¶rÃƒÂ¼nÃƒÂ¼r) */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}
.burger-btn span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--ink, #0a0e1a);
    border-radius: 4px;
    transition: all 0.3s ease;
}
.burger-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.burger-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobil (768px ve altÃ„Â±) */
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }

    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    /* Navigasyonu mobilde gizle, aÃƒÂ§Ã„Â±lÃ„Â±nca header altÃ„Â±nda gÃƒÂ¶ster */
    .main-nav {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: var(--radius, 24px);
        padding: 16px 20px;
        box-shadow: var(--shadow-lg, 0 32px 80px rgba(0,0,0,0.1));
        border: 1px solid var(--border, #e5e9f0);
        z-index: 999;
        gap: 6px;
        width: 100%;
        box-sizing: border-box;
    }

    /* AÃƒÂ§Ã„Â±k durumda gÃƒÂ¶ster */
    .main-nav.open {
        display: flex !important;
    }

    /* MenÃƒÂ¼ linkleri mobilde */
    .main-nav a {
        font-size: 1rem;
        padding: 12px 20px;
        border-radius: 60px;
        color: var(--ink-soft, #2a2a3a);
        background: transparent;
        border: none;
        width: 100%;
        text-align: left;
        transition: background 0.2s ease;
        white-space: nowrap;
    }
    .main-nav a:hover {
        background: var(--accent-soft, #f0e6ff);
        color: var(--accent, #9300ff);
    }
    .main-nav a.btn-outline {
        border: 2px solid var(--border-strong, #c8d0dd);
        background: transparent;
        text-align: center;
        padding: 12px 20px;
        width: 100%;
    }
    .main-nav .nav-cart {
        background: transparent;
        border: none;
        padding: 12px 20px;
        justify-content: flex-start;
    }

    /* MenÃƒÂ¼ aÃƒÂ§Ã„Â±kken body kaymasÃ„Â±nÃ„Â± engelle */
    body.menu-open {
        overflow: hidden;
    }
}

/* Ãƒâ€¡ok kÃƒÂ¼ÃƒÂ§ÃƒÂ¼k telefonlar */
@media (max-width: 480px) {
    .burger-btn {
        width: 24px;
        height: 18px;
    }
    .burger-btn span {
        height: 2px;
    }
    .burger-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .burger-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .main-nav a {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}

/* =====================================================================
   RESPONSIVE Ã¢â‚¬â€ TABLET ve MOBÃ„Â°L
   ===================================================================== */

/* Tablets */
@media (max-width: 1024px) {
    .catalog-layout {
        grid-template-columns: 220px 1fr;
        gap: 32px;
    }
    .dashboard-layout {
        grid-template-columns: 220px 1fr;
        gap: 32px;
    }
    .product-detail { gap: 40px; }
    .hero-title { font-size: 3.2rem; }
    h1 { font-size: 2.8rem; }
}

/* Mobil Ã¢â‚¬â€œ 768px ve altÃ„Â± */
@media (max-width: 768px) {
    .site-header {
        top: 12px;
        margin: 0 12px;
        border-radius: 40px;
    }
    .header-inner {
        padding: 12px 20px;
        flex-wrap: wrap;
        gap: 10px;
    }
    .logo {
        font-size: 1.2rem;
        gap: 12px;
    }
    .logo-dots i {
        width: 10px;
        height: 10px;
    }
    .nav-cart {
        padding: 6px 16px 6px 12px;
        font-size: 0.85rem;
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.6rem; }
    .container {padding: 12px 20px;}

    .hero {
        padding: var(--space-5);
        margin: 24px 0 var(--space-5);
        border-radius: var(--radius);
    }
    .hero-title {
        font-size: 2.2rem;
        max-width: 100%;
    }
    .hero-sub {
        font-size: 1rem;
        max-width: 100%;
    }
    .hero-stats {
        gap: var(--space-4);
    }
    .hero-stat .mono {
        font-size: 1.4rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .categories-section,
    .features-section,
    .testimonials-section,
    .blog-section,
    .newsletter-section {
        margin: 40px 0;
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .category-card {
        padding: 20px 16px;
    }
    .category-icon { font-size: 2rem; }
    .category-name { font-size: 0.9rem; }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .blog-section .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }
    .newsletter-form input {
        min-width: unset;
    }
    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }

    .catalog-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .catalog-sidebar {
        order: -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        mask-image: azure;
        padding: 20px;
        border-radius: var(--radius);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
        background-image: radial-gradient(rgb(168 0 255 / 22%) 1px, #ffffff00 2px);
        background-size: 18px 18px;
    }
    .catalog-sidebar .search-form {
        grid-column: 1 / -1;
    }
    .catalog-sidebar h3 {
        margin-top: 0;
        font-size: 0.7rem;
    }
    .category-list {
        display: flex;
        flex-wrap: wrap;
        gap: 6px 10px;
    }
    .category-list li a {
        border-left: none;
        padding: 6px 16px;
        border-radius: 60px;
        background: var(--paper);
        font-size: 0.85rem;
        display: inline-block;
    }
    .category-list li a.active {
        background: var(--accent);
        color: #fff;
        border-left: none;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .product-card-body {
        padding: 16px;
    }
    .product-card-body h3 {
        font-size: 1rem;
    }
    .product-card-price {
        font-size: 1rem;
    }
    .product-card-price.large {
        font-size: 1.6rem;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .thumbnails img {
        width: 64px;
        height: 46px;
    }
    .product-description {
        padding: 24px;
        margin: 40px 0;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .dashboard-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .dashboard-nav, .admin-nav {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 12px 16px;
        border-radius: var(--radius);
        gap: 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .dashboard-nav::-webkit-scrollbar,
    .admin-nav::-webkit-scrollbar {
        display: none;
    }
    .dashboard-nav a, .admin-nav a {
        white-space: nowrap;
        border-left: none;
        padding: 10px 20px;
        border-radius: 60px;
        flex-shrink: 0;
        transform: none !important;
    }
    .dashboard-nav a.active, .admin-nav a.active {
        border-bottom-color: var(--gold);
        border-left-color: transparent;
        background: var(--accent);
        color: #fff;
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stat-card {
        padding: 24px;
    }
    .stat-number {
        font-size: 1.6rem;
    }

    .cart-table-wrapper,
    .data-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding: 0 20px;
    }
    .cart-table, .data-table {
        font-size: 0.85rem;
        min-width: 50px;
    }
    .cart-table th, .data-table th,
    .cart-table td, .data-table td {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .pagination {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .pagination a {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: var(--space-5) 20px;
    }
    .footer-links {
        justify-content: center;
        gap: 20px;
    }
    .footer-copy {
        margin-top: 16px;
    }

    .auth-form-wrap {
        margin: 40px auto;
        padding: 32px 24px;
    }
    .auth-form-wrap h1 { font-size: 1.6rem; }

    .btn-primary, button[type="submit"].btn-primary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    .btn-outline {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* KÃƒÂ¼ÃƒÂ§ÃƒÂ¼k telefonlar Ã¢â‚¬â€œ 480px altÃ„Â± */
@media (max-width: 480px) {
    .site-header {
        top: 8px;
        margin: 0 8px;
        border-radius: 32px;
    }
    .header-inner {
        padding: 8px 14px;
    }
    .logo {
        font-size: 1rem;
    }
    .logo-dots i {
        width: 8px;
        height: 8px;
    }
    .nav-cart {
        padding: 4px 12px 4px 8px;
        font-size: 0.75rem;
    }
    .nav-badge {
        font-size: 0.6rem;
        padding: 1px 8px;
        min-width: 18px;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    .container {padding: 16px 16px;}

    .hero-title { font-size: 1.6rem; }
    .hero-sub { font-size: 0.9rem; }
    .hero-eyebrow { font-size: 0.7rem; padding: 4px 16px; }
    .hero-stat .mono { font-size: 1.2rem; }
    .hero-stat { font-size: 0.75rem; }
    .hero { padding: var(--space-4); }

    .category-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .category-card { padding: 16px 12px; }
    .category-icon { font-size: 1.6rem; }
    .category-name { font-size: 0.8rem; }
    .category-count { font-size: 0.7rem; }

    .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .product-card-body { padding: 12px; }
    .product-card-body h3 { font-size: 0.9rem; }
    .product-card-price { font-size: 0.9rem; }
    .product-card-price.large { font-size: 1.3rem; }
    .product-card-category { font-size: 0.6rem; }
    .product-card-body p { font-size: 0.8rem; }

    .stat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .stat-card { padding: 18px; }
    .stat-number { font-size: 1.3rem; }

    .cart-table, .data-table { min-width: 480px; }
    .cart-table th, .data-table th,
    .cart-table td, .data-table td {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .catalog-sidebar {
        grid-template-columns: 1fr;
        padding: 16px;
    }
    .category-list li a {
        font-size: 0.8rem;
        padding: 4px 12px;
    }

    .dashboard-nav, .admin-nav {
        flex-direction: row;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .dashboard-nav::-webkit-scrollbar,
    .admin-nav::-webkit-scrollbar {
        display: none;
    }
    .dashboard-nav a, .admin-nav a {
        padding: 8px 14px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
}