/* =============================================
   PalaSys - Ana Stil Dosyası (Dark Premium Theme)
   ============================================= */

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

/* ---- CSS Değişkenleri ---- */
:root {
    --bg-primary:    #070711;
    --bg-secondary:  #0f0f1f;
    --bg-card:       rgba(255,255,255,0.04);
    --bg-card-hover: rgba(255,255,255,0.07);
    --border:        rgba(255,255,255,0.08);
    --border-hover:  rgba(139,92,246,0.4);

    --purple-400:    #a78bfa;
    --purple-500:    #8b5cf6;
    --purple-600:    #7c3aed;
    --blue-400:      #60a5fa;
    --blue-500:      #3b82f6;
    --pink-500:      #ec4899;
    --cyan-400:      #22d3ee;
    --green-400:     #4ade80;
    --yellow-400:    #facc15;
    --red-400:       #f87171;

    --text-primary:   #f1f0ff;
    --text-secondary: #94a3b8;
    --text-muted:     #64748b;

    --gradient:        linear-gradient(135deg, #8b5cf6, #3b82f6);
    --gradient-pink:   linear-gradient(135deg, #ec4899, #8b5cf6);
    --gradient-green:  linear-gradient(135deg, #06b6d4, #4ade80);
    --glow:            0 0 40px rgba(139,92,246,0.3);

    --radius:    12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow:    0 4px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
    --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}
a { color: var(--purple-400); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--purple-400); opacity: 0.85; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--purple-600); border-radius: 3px; }

/* ---- Container ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* ---- ÜST NAV ---- */
.navbar {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(7,7,17,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0;
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px; gap: 32px;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.4rem; font-weight: 800; color: var(--text-primary);
}
.nav-logo span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-logo i { font-size: 1.6rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
    color: var(--text-secondary); padding: 8px 14px; border-radius: 8px;
    font-size: 0.9rem; font-weight: 500; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); background: var(--bg-card); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cart {
    position: relative; display: flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 10px;
    background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text-secondary); font-size: 0.9rem; transition: var(--transition);
}
.nav-cart:hover { border-color: var(--border-hover); color: var(--text-primary); }
.cart-badge {
    position: absolute; top: -6px; right: -6px;
    background: var(--gradient); color: white;
    font-size: 0.65rem; font-weight: 700;
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.btn-nav {
    padding: 9px 20px; border-radius: 10px; font-size: 0.85rem; font-weight: 600;
    background: var(--gradient); color: white; border: none; cursor: pointer;
    transition: var(--transition); white-space: nowrap;
}
.btn-nav:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: var(--glow); }

/* ---- BUTONLAR ---- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: var(--radius); font-size: 0.9rem;
    font-weight: 600; cursor: pointer; border: none; transition: var(--transition);
    text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--gradient); color: white; }
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: var(--glow); color: white; }
.btn-outline {
    background: transparent; color: var(--purple-400);
    border: 1.5px solid var(--purple-500);
}
.btn-outline:hover { background: var(--purple-600); color: white; transform: translateY(-2px); }
.btn-ghost { background: var(--bg-card); color: var(--text-secondary); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg-card-hover); color: var(--text-primary); }
.btn-danger { background: linear-gradient(135deg,#ef4444,#dc2626); color: white; }
.btn-danger:hover { opacity: 0.9; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; border-radius: 8px; }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 14px; }
.btn-block { width: 100%; justify-content: center; }

/* ---- KARTLAR ---- */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    overflow: hidden;
}
.card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-body { padding: 24px; }

/* ---- ÜRÜN KARTI ---- */
.product-card { position: relative; }
.product-card .product-image {
    position: relative; aspect-ratio: 16/9; overflow: hidden;
    background: linear-gradient(135deg, #1a1a3e, #0f0f2e);
    display: flex; align-items: center; justify-content: center;
}
.product-card .product-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-image-placeholder { font-size: 4rem; opacity: 0.3; }
.product-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--gradient); color: white;
    font-size: 0.7rem; font-weight: 700; padding: 4px 10px;
    border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;
}
.product-badge.new { background: linear-gradient(135deg,#06b6d4,#3b82f6); }
.product-badge.sale { background: linear-gradient(135deg,#f59e0b,#ef4444); }
.product-info { padding: 20px; }
.product-category { font-size: 0.75rem; color: var(--purple-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.product-name { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; line-height: 1.3; }
.product-desc { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.5; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { display: flex; align-items: center; gap: 8px; }
.price-current { font-size: 1.2rem; font-weight: 800; color: var(--text-primary); }
.price-old { font-size: 0.82rem; color: var(--text-muted); text-decoration: line-through; }
.product-rating { display: flex; align-items: center; gap: 4px; font-size: 0.78rem; color: var(--yellow-400); }

/* ---- HERO ---- */
.hero {
    min-height: 90vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(139,92,246,0.25) 0%, transparent 60%);
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="1" cy="1" r="0.5" fill="rgba(139,92,246,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23g)"/></svg>');
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(139,92,246,0.15); border: 1px solid rgba(139,92,246,0.3);
    color: var(--purple-400); padding: 6px 16px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 600; margin-bottom: 24px;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; line-height: 1.1;
    margin-bottom: 24px; letter-spacing: -1px;
}
.hero h1 .gradient-text {
    background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { font-size: 1.1rem; color: var(--text-secondary); max-width: 560px; margin-bottom: 40px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 60px; flex-wrap: wrap; }
.hero-stat { }
.hero-stat .num { font-size: 2rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stat .label { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.hero-visual {
    position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-orbs { position: absolute; inset: -50px; pointer-events: none; }
.orb {
    position: absolute; border-radius: 50%; filter: blur(60px); animation: float 6s ease-in-out infinite;
}
.orb-1 { width: 300px; height: 300px; background: rgba(139,92,246,0.3); top: 0; right: 0; }
.orb-2 { width: 200px; height: 200px; background: rgba(59,130,246,0.25); bottom: 0; left: 0; animation-delay: -3s; }
.orb-3 { width: 150px; height: 150px; background: rgba(236,72,153,0.2); top: 50%; right: 10%; animation-delay: -1.5s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }

/* ---- BÖLÜM BAŞLIKLARI ---- */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--purple-400); font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
}
.section-tag::before, .section-tag::after {
    content: ''; width: 24px; height: 1px; background: var(--purple-500);
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-desc { color: var(--text-secondary); font-size: 1rem; max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ---- GRID ---- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

/* ---- KATEGORİ KARTLARI ---- */
.cat-card {
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    padding: 32px 24px; text-align: center; cursor: pointer;
}
.cat-icon {
    width: 64px; height: 64px; border-radius: 18px;
    background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(59,130,246,0.2));
    border: 1px solid rgba(139,92,246,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--purple-400); transition: var(--transition);
}
.cat-card:hover .cat-icon { background: var(--gradient); color: white; border-color: transparent; transform: rotate(-5deg) scale(1.1); }
.cat-name { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); }
.cat-count { font-size: 0.78rem; color: var(--text-muted); }

/* ---- FORM ELEMENTLERİ ---- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.form-control {
    width: 100%; padding: 12px 16px; border-radius: 10px;
    background: rgba(255,255,255,0.06); border: 1.5px solid var(--border);
    color: var(--text-primary); font-size: 0.9rem; transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--purple-500); background: rgba(139,92,246,0.08); box-shadow: 0 0 0 3px rgba(139,92,246,0.15); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- ALERT ---- */
.alert {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 20px; border-radius: 10px; margin-bottom: 20px;
    font-size: 0.88rem; font-weight: 500;
    animation: slideDown 0.3s ease;
}
@keyframes slideDown { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }
.alert-success { background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.3); color: var(--green-400); }
.alert-error   { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.3); color: var(--red-400); }
.alert-info    { background: rgba(96,165,250,0.1);  border: 1px solid rgba(96,165,250,0.3);  color: var(--blue-400); }
.alert-warning { background: rgba(250,204,21,0.1);  border: 1px solid rgba(250,204,21,0.3);  color: var(--yellow-400); }

/* ---- BADGE ---- */
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; }
.badge-success   { background: rgba(74,222,128,0.15); color: var(--green-400); }
.badge-warning   { background: rgba(250,204,21,0.15); color: var(--yellow-400); }
.badge-danger    { background: rgba(248,113,113,0.15); color: var(--red-400); }
.badge-info      { background: rgba(96,165,250,0.15); color: var(--blue-400); }
.badge-secondary { background: rgba(255,255,255,0.1); color: var(--text-secondary); }
.badge-purple    { background: rgba(139,92,246,0.15); color: var(--purple-400); }

/* ---- SAYFALAMA ---- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.page-btn {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text-secondary); font-size: 0.88rem; font-weight: 600; transition: var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--gradient); border-color: transparent; color: white; }

/* ---- ÜRÜN DETAY ---- */
.product-detail-image {
    aspect-ratio: 16/10; background: linear-gradient(135deg,#1a1a3e,#0f0f2e);
    border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; font-size: 6rem; opacity: 0.3;
}
.product-detail-image img { width:100%; height:100%; object-fit:cover; opacity:1; }
.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-secondary); }
.feature-item i { color: var(--green-400); font-size: 0.85rem; }
.price-box { padding: 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.price-box .big-price { font-size: 2.5rem; font-weight: 900; margin-bottom: 4px; }
.price-box .old-price { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: 20px; }
.price-box .discount-badge { background: linear-gradient(135deg,#f59e0b,#ef4444); color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; }

/* ---- SEPET ---- */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { padding: 14px 16px; font-size: 0.8rem; color: var(--text-muted); font-weight: 600; border-bottom: 1px solid var(--border); text-align: left; }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--border); vertical-align: middle; font-size: 0.9rem; }
.cart-table .product-cell { display: flex; align-items: center; gap: 16px; }
.cart-item-img { width: 56px; height: 56px; border-radius: 10px; background: var(--bg-card); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; overflow: hidden; }
.cart-summary { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.cart-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.cart-row:last-child { border-bottom: none; font-weight: 800; font-size: 1.1rem; }

/* ---- FOOTER ---- */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 24px;
    margin-top: 80px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin: 16px 0 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--bg-card); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 0.9rem; transition: var(--transition);
}
.social-btn:hover { background: var(--gradient); border-color: transparent; color: white; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.85rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--purple-400); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); font-size: 0.82rem; flex-wrap: wrap; gap: 8px; }

/* ---- AUTH SAYFASI ---- */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 24px; }
.auth-card { width: 100%; max-width: 440px; }
.auth-header { text-align: center; margin-bottom: 36px; }
.auth-header h1 { font-size: 1.8rem; font-weight: 800; margin: 16px 0 8px; }
.auth-header p { color: var(--text-muted); font-size: 0.88rem; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 24px 0; color: var(--text-muted); font-size: 0.78rem; }
.auth-divider::before, .auth-divider::after { content:''; flex:1; height:1px; background:var(--border); }

/* ---- BREADCRUMB ---- */
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 32px; flex-wrap: wrap; }
.breadcrumb a { color: var(--purple-400); }
.breadcrumb span { color: var(--text-muted); }

/* ---- PAGE HEADER ---- */
.page-header { padding: 48px 0 24px; }
.page-header h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 8px; }
.page-header p { color: var(--text-secondary); font-size: 0.95rem; }

/* ---- FİLTRE BAR ---- */
.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; align-items: center; }
.filter-bar .search-box { position: relative; flex: 1; min-width: 240px; }
.filter-bar .search-box input { padding-left: 42px; }
.filter-bar .search-box i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 0.9rem; }
.filter-select {
    padding: 11px 16px; border-radius: 10px;
    background: var(--bg-card); border: 1.5px solid var(--border);
    color: var(--text-primary); font-size: 0.88rem; cursor: pointer;
    transition: var(--transition);
}
.filter-select:focus { outline: none; border-color: var(--purple-500); }
.filter-tag {
    padding: 8px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 600;
    background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text-secondary); cursor: pointer; transition: var(--transition);
}
.filter-tag:hover, .filter-tag.active { background: var(--gradient); border-color: transparent; color: white; }

/* ---- EMPTY STATE ---- */
.empty-state { text-align: center; padding: 80px 24px; }
.empty-state i { font-size: 4rem; color: var(--text-muted); margin-bottom: 20px; opacity: 0.5; }
.empty-state h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 24px; }

/* ---- LOADING ---- */
.spinner { width: 32px; height: 32px; border: 3px solid var(--border); border-top-color: var(--purple-500); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- TOAST BİLDİRİM ---- */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast {
    background: var(--bg-secondary); border: 1px solid var(--border);
    border-radius: 12px; padding: 14px 20px; display: flex; align-items: center;
    gap: 12px; font-size: 0.88rem; min-width: 280px;
    box-shadow: var(--shadow-lg); animation: toastIn 0.3s ease;
}
@keyframes toastIn { from{opacity:0;transform:translateX(100%)} to{opacity:1;transform:translateX(0)} }
.toast-success { border-color: rgba(74,222,128,0.4); }
.toast-success i { color: var(--green-400); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero { min-height: 70vh; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-stats { gap: 24px; }
    .filter-bar { flex-direction: column; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 48px 0; }
}

/* ---- UTILITY ---- */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-muted  { color: var(--text-muted); }
.text-primary-c { color: var(--purple-400); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.mt-8   { margin-top: 8px; }
.mt-16  { margin-top: 16px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mb-0   { margin-bottom: 0; }
.mb-8   { margin-bottom: 8px; }
.mb-16  { margin-bottom: 16px; }
.mb-24  { margin-bottom: 24px; }
.fw-700 { font-weight: 700; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.divider { height: 1px; background: var(--border); margin: 24px 0; }
.glass { background: rgba(255,255,255,0.04); backdrop-filter: blur(12px); border: 1px solid var(--border); }
.relative { position: relative; }
