/* ═══════════════════════════════════════════════════════════════
   ChapSe — Main Stylesheet  v1.1.0
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
    --primary:       #6c63ff;
    --primary-dark:  #4f46e5;
    --secondary:     #00d4ff;
    --accent:        #ff6584;
    --dark:          #0f0f1a;
    --dark-2:        #1a1a2e;
    --dark-3:        #16213e;
    --text:          #e2e8f0;
    --text-muted:    #94a3b8;
    --glass:         rgba(255,255,255,.07);
    --glass-border:  rgba(255,255,255,.13);
    --card-bg:       rgba(255,255,255,.04);
    --radius:        16px;
    --radius-sm:     10px;
    --shadow:        0 8px 32px rgba(108,99,255,.18);
    --shadow-lg:     0 20px 60px rgba(0,0,0,.4);
    --transition:    .3s cubic-bezier(.4,0,.2,1);
    --bs-primary:    #6c63ff;
    --bs-primary-rgb:108,99,255;
    --bs-font-sans-serif:'Vazirmatn','Segoe UI',sans-serif;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Vazirmatn', 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Fixed navbar compensation — all pages get top space */
main { padding-top: 74px; }

/* Hero undoes that padding by pulling itself up */
.hero-section { margin-top: -74px; }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--secondary); }

img { max-width: 100%; height: auto; }

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

/* ══════════════════════════════════════════════════════════════
   BOOTSTRAP DARK OVERRIDES
══════════════════════════════════════════════════════════════ */

/* Card */
.card {
    background: var(--card-bg);
    border-color: var(--glass-border);
    color: var(--text);
    backdrop-filter: blur(10px);
}
.card-header {
    background: rgba(255,255,255,.03);
    border-color: var(--glass-border);
    color: var(--text);
}
.card-footer {
    background: rgba(255,255,255,.03);
    border-color: var(--glass-border);
}
.card-title { color: #fff; }
.shadow-sm  { box-shadow: 0 4px 24px rgba(0,0,0,.35) !important; }
.shadow     { box-shadow: 0 8px 32px rgba(0,0,0,.4)  !important; }

/* List group */
.list-group-item {
    background: var(--card-bg);
    border-color: var(--glass-border);
    color: var(--text);
}
.list-group-item-action:hover,
.list-group-item-action:focus {
    background: rgba(108,99,255,.12);
    color: var(--primary);
}
.list-group-item.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: #fff;
}

/* Backgrounds */
.bg-light  { background: rgba(255,255,255,.05) !important; }
.bg-white  { background: rgba(255,255,255,.07) !important; }

/* Text */
.text-dark  { color: var(--text)       !important; }
.text-muted { color: var(--text-muted) !important; }

/* Borders */
.border, .border-1 { border-color: var(--glass-border) !important; }
.border-bottom      { border-color: var(--glass-border) !important; }
.border-top         { border-color: var(--glass-border) !important; }
.border-secondary   { border-color: var(--glass-border) !important; }
hr { border-color: var(--glass-border); opacity: 1; }

/* Tables */
.table {
    --bs-table-bg:           transparent;
    --bs-table-border-color: var(--glass-border);
    --bs-table-color:        var(--text);
    --bs-table-hover-bg:     rgba(108,99,255,.05);
    --bs-table-hover-color:  var(--text);
    --bs-table-striped-bg:   rgba(255,255,255,.02);
}
.table thead th {
    color: var(--primary);
    background: rgba(108,99,255,.08);
    border-color: rgba(108,99,255,.2);
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: .85rem 1rem;
}
.table td { padding: .8rem 1rem; vertical-align: middle; }

/* Buttons outline */
.btn-outline-secondary {
    border-color: var(--glass-border);
    color: var(--text);
    background: transparent;
}
.btn-outline-secondary:hover {
    background: rgba(108,99,255,.12);
    border-color: var(--primary);
    color: var(--primary);
}
.btn-outline-danger  { border-color: var(--danger); color: var(--danger); }
.btn-outline-danger:hover  { background: var(--danger); border-color: var(--danger); color: #fff; }
.btn-outline-primary { border-color: var(--primary); color: var(--primary); }
.btn-outline-primary:hover { background: rgba(108,99,255,.15); border-color: var(--primary); color: var(--primary); }

/* Input groups */
.input-group .btn-outline-secondary,
.input-group .btn-outline-secondary:hover {
    z-index: 1;
}

/* Badges */
.badge.bg-light          { background: rgba(255,255,255,.12) !important; color: var(--text) !important; }
.badge.bg-primary-subtle { background: rgba(108,99,255,.2)   !important; color: var(--primary) !important; }
.badge.bg-success        { background: rgba(16,185,129,.25)  !important; }
.badge.bg-warning        { background: rgba(245,158,11,.25)  !important; color: #fcd34d !important; }
.badge.bg-danger         { background: rgba(239,68,68,.25)   !important; }
.badge.bg-secondary      { background: rgba(100,116,139,.2)  !important; }

/* Breadcrumb */
.breadcrumb { background: transparent; margin: 0; padding: 0; }
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* Nav tabs (global) */
.nav-tabs { border-color: var(--glass-border); }
.nav-tabs .nav-link {
    color: var(--text-muted);
    border-color: transparent;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.nav-tabs .nav-link:hover { color: var(--text); border-color: var(--glass-border) var(--glass-border) transparent; background: rgba(255,255,255,.04); }
.nav-tabs .nav-link.active { color: var(--primary); background: rgba(108,99,255,.12); border-color: var(--primary) var(--primary) transparent; }
.tab-content { padding-top: 1.2rem; }

/* Alerts */
.alert-success { background: rgba(16,185,129,.12); border-color: rgba(16,185,129,.3); color: #6ee7b7; }
.alert-danger   { background: rgba(239,68,68,.12);  border-color: rgba(239,68,68,.3);  color: #fca5a5; }
.alert-warning  { background: rgba(245,158,11,.12); border-color: rgba(245,158,11,.3); color: #fcd34d; }
.alert-info     { background: rgba(0,212,255,.1);   border-color: rgba(0,212,255,.3);  color: #67e8f9; }
.alert { border-radius: var(--radius-sm); }

/* Code */
code { background: rgba(108,99,255,.2); color: var(--secondary); padding: .15em .4em; border-radius: 4px; font-size: .85em; }

/* ── Page header (non-hero pages) ───────────────────────────── */
.page-header-wrap {
    background: linear-gradient(180deg, rgba(108,99,255,.08) 0%, transparent 100%);
    border-bottom: 1px solid var(--glass-border);
    padding: 2.5rem 0 1.8rem;
    margin-bottom: 2.5rem;
}
.page-header-wrap h1,
.page-header-wrap h4 { color: #fff; font-weight: 800; margin: 0; }

/* ── Misc content ───────────────────────────────────────────── */
.page-content, .blog-content {
    line-height: 1.9;
    color: var(--text);
}
.page-content img, .blog-content img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 1rem 0;
    border: 1px solid var(--glass-border);
}
.page-content h2,.page-content h3,.blog-content h2,.blog-content h3 { color: #fff; margin-top: 2rem; }
.page-content p, .blog-content p { color: var(--text-muted); }
.page-content a, .blog-content a { color: var(--primary); }

/* ── Price box in product detail ────────────────────────────── */
.price-box {
    background: var(--card-bg) !important;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
.main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1030;
    background: transparent;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
    padding: .8rem 0;
}

.main-nav.scrolled {
    background: rgba(15,15,26,.85);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--glass-border);
    padding: .5rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff !important;
}

.nav-brand .brand-cube {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(108,99,255,.5);
    animation: brandPulse 3s ease-in-out infinite;
}

@keyframes brandPulse {
    0%,100% { box-shadow: 0 4px 15px rgba(108,99,255,.5); }
    50% { box-shadow: 0 4px 25px rgba(0,212,255,.7); }
}

.nav-brand span { background: linear-gradient(90deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.main-nav .nav-link {
    color: rgba(255,255,255,.8) !important;
    font-weight: 500;
    padding: .4rem .9rem !important;
    border-radius: 8px;
    transition: all var(--transition);
    position: relative;
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 1px;
    transition: left var(--transition), right var(--transition);
}

.main-nav .nav-link:hover { color: #fff !important; background: var(--glass); }
.main-nav .nav-link:hover::after { left: 12px; right: 12px; }

.nav-search-form .form-control {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: #fff;
    /* RTL: input is on the right side → round the right edge */
    border-radius: 0 20px 20px 0;
    padding: .4rem 1rem;
    font-size: .9rem;
    width: 200px;
    transition: width var(--transition), background var(--transition);
}

.nav-search-form .form-control:focus {
    background: rgba(255,255,255,.12);
    box-shadow: 0 0 0 .2rem rgba(108,99,255,.3);
    border-color: var(--primary);
    width: 260px;
    outline: none;
}

.nav-search-form .form-control::placeholder { color: var(--text-muted); }

.nav-search-form .btn {
    /* RTL: button is on the left side → round the left edge */
    border-radius: 20px 0 0 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: #fff;
    padding: .4rem .9rem;
    flex-shrink: 0;
}

.nav-icon-btn {
    position: relative;
    width: 40px; height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.8);
    font-size: 1.1rem;
    transition: all var(--transition);
    text-decoration: none;
}

.nav-icon-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108,99,255,.4);
}

.nav-icon-btn .badge {
    position: absolute;
    top: -4px; left: -4px;
    background: var(--accent);
    font-size: .65rem;
    padding: .2em .45em;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    font-weight: 700;
}

.nav-user-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 20px;
    padding: .4rem 1.1rem;
    font-size: .9rem;
    font-weight: 600;
    color: #fff;
    display: flex; align-items: center; gap: .4rem;
    transition: all var(--transition);
}

.nav-user-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108,99,255,.5);
    color: #fff;
}

.navbar-toggler {
    border: 1px solid var(--glass-border);
    background: var(--glass);
    padding: .4rem .7rem;
    border-radius: 8px;
    color: #fff;
}

.navbar-toggler:focus { box-shadow: none; }

/* Dropdown */
.main-nav .dropdown-menu {
    background: rgba(26,26,46,.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: .5rem;
    margin-top: .5rem;
    box-shadow: var(--shadow-lg);
}

.main-nav .dropdown-item {
    color: var(--text);
    border-radius: 8px;
    padding: .5rem .9rem;
    transition: all var(--transition);
    font-size: .9rem;
}

.main-nav .dropdown-item:hover {
    background: var(--glass);
    color: var(--primary);
    padding-right: 1.2rem;
}

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════ */
.hero-section {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--dark);
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 30% 40%, rgba(108,99,255,.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 70%, rgba(0,212,255,.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 50% 10%, rgba(255,101,132,.12) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(108,99,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108,99,255,.08) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: floatOrb 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-orb-1 { width: 400px; height: 400px; background: rgba(108,99,255,.3); top: -100px; right: -100px; animation-delay: 0s; }
.hero-orb-2 { width: 300px; height: 300px; background: rgba(0,212,255,.2); bottom: 0; left: -50px; animation-delay: -3s; }
.hero-orb-3 { width: 200px; height: 200px; background: rgba(255,101,132,.2); top: 40%; left: 40%; animation-delay: -6s; }

@keyframes floatOrb {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(20px,-20px) scale(1.05); }
    66% { transform: translate(-15px,15px) scale(.95); }
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(108,99,255,.2);
    border: 1px solid rgba(108,99,255,.4);
    color: var(--primary);
    padding: .4rem 1rem;
    border-radius: 20px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(108,99,255,.4); }
    50% { box-shadow: 0 0 0 6px rgba(108,99,255,0); }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* 3D Cube */
.cube-scene {
    perspective: 600px;
    width: 180px; height: 180px;
    margin: 0 auto;
}

.cube-3d {
    width: 180px; height: 180px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 12s linear infinite;
}

@keyframes rotateCube {
    from { transform: rotateX(20deg) rotateY(0deg); }
    to   { transform: rotateX(20deg) rotateY(360deg); }
}

.cube-face {
    position: absolute;
    width: 180px; height: 180px;
    border: 2px solid rgba(108,99,255,.5);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    backdrop-filter: blur(4px);
}

.cube-face-front  { background: rgba(108,99,255,.15); transform: translateZ(90px); }
.cube-face-back   { background: rgba(0,212,255,.15);  transform: rotateY(180deg) translateZ(90px); }
.cube-face-right  { background: rgba(255,101,132,.1); transform: rotateY(90deg) translateZ(90px); }
.cube-face-left   { background: rgba(108,99,255,.1);  transform: rotateY(-90deg) translateZ(90px); }
.cube-face-top    { background: rgba(0,212,255,.1);   transform: rotateX(90deg) translateZ(90px); }
.cube-face-bottom { background: rgba(255,101,132,.15);transform: rotateX(-90deg) translateZ(90px); }

.hero-3d-wrap {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    min-height: 400px;
}

.hero-floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-mini-card {
    position: absolute;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: .7rem 1rem;
    backdrop-filter: blur(10px);
    font-size: .8rem;
    white-space: nowrap;
    color: #fff;
    display: flex; align-items: center; gap: .5rem;
}

.hero-mini-card-1 { top: 10%; right: 5%; animation: floatCard1 4s ease-in-out infinite; }
.hero-mini-card-2 { bottom: 20%; left: 5%; animation: floatCard2 5s ease-in-out infinite; }
.hero-mini-card-3 { top: 50%; right: 0; animation: floatCard1 6s ease-in-out infinite .5s; }

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

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: #fff;
    padding: .7rem 1.8rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: .95rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: inline-flex; align-items: center; gap: .5rem;
}

.btn-primary-gradient::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    transition: left .5s;
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(108,99,255,.5);
    color: #fff;
}

.btn-primary-gradient:hover::before { left: 100%; }

.btn-outline-glass {
    background: transparent;
    border: 2px solid var(--glass-border);
    color: rgba(255,255,255,.85);
    padding: .65rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: .95rem;
    transition: all var(--transition);
    display: inline-flex; align-items: center; gap: .5rem;
    backdrop-filter: blur(10px);
}

.btn-outline-glass:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(108,99,255,.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108,99,255,.25);
}

.btn-xs {
    padding: .2rem .55rem;
    font-size: .75rem;
    border-radius: 6px;
}

/* ══════════════════════════════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════════════════════════════ */
.section-wrap {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(108,99,255,.15);
    border: 1px solid rgba(108,99,255,.3);
    color: var(--primary);
    padding: .3rem .9rem;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: .8rem;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: .5rem;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════════════════════════════ */
.product-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity var(--transition);
}

.product-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    border-color: rgba(108,99,255,.4);
    box-shadow: 0 25px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(108,99,255,.2);
}

.product-card:hover::before { opacity: 1; }

.product-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: var(--dark-3);
}

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

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

.product-card-badge {
    position: absolute;
    top: .7rem; right: .7rem;
    background: var(--accent);
    color: #fff;
    padding: .2rem .6rem;
    border-radius: 6px;
    font-size: .75rem;
    font-weight: 700;
}

.product-card-actions {
    position: absolute;
    top: .7rem; left: .7rem;
    display: flex; flex-direction: column; gap: .4rem;
    opacity: 0;
    /* RTL: slide from left (the end side) */
    transform: translateX(10px);
    transition: all var(--transition);
}

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

.product-action-btn {
    width: 36px; height: 36px;
    background: rgba(15,15,26,.8);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.8);
    font-size: .9rem;
    transition: all var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.product-action-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.product-card-body {
    padding: 1.2rem;
}

.product-card-cat {
    font-size: .75rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: .3rem;
}

.product-card-title {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .7rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: .5rem;
}

.product-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--secondary);
}

.product-price-unit {
    font-size: .75rem;
    color: var(--text-muted);
    font-weight: 400;
}

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

.btn-add-cart {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
    cursor: pointer;
}

.btn-add-cart:hover {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 6px 18px rgba(108,99,255,.5);
}

/* ══════════════════════════════════════════════════════════════
   CATEGORY CARDS
══════════════════════════════════════════════════════════════ */
.cat-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108,99,255,.1), rgba(0,212,255,.1));
    opacity: 0;
    transition: opacity var(--transition);
}

.cat-card:hover {
    border-color: rgba(108,99,255,.5);
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.cat-card:hover::after { opacity: 1; }

.cat-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, rgba(108,99,255,.2), rgba(0,212,255,.2));
    border: 2px solid rgba(108,99,255,.3);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
    transition: all var(--transition);
    position: relative; z-index: 1;
}

.cat-card:hover .cat-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    transform: rotateY(15deg) scale(1.05);
    box-shadow: 0 8px 25px rgba(108,99,255,.4);
}

.cat-name {
    font-weight: 700;
    color: #fff;
    font-size: .95rem;
    position: relative; z-index: 1;
}

.cat-count {
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: .3rem;
    position: relative; z-index: 1;
}

/* ══════════════════════════════════════════════════════════════
   FEATURES / STATS
══════════════════════════════════════════════════════════════ */
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
    height: 100%;
}

.feature-card:hover {
    border-color: rgba(108,99,255,.4);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 auto 1.2rem;
    box-shadow: 0 8px 25px rgba(108,99,255,.35);
}

.feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem;
}

.feature-desc {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.stat-label {
    font-size: .9rem;
    color: var(--text-muted);
    margin-top: .3rem;
}

/* ══════════════════════════════════════════════════════════════
   BLOG CARDS
══════════════════════════════════════════════════════════════ */
.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    height: 100%;
    display: flex; flex-direction: column;
}

.blog-card:hover {
    border-color: rgba(108,99,255,.4);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--dark-3);
}

.blog-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

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

.blog-card-body {
    padding: 1.4rem;
    flex: 1;
    display: flex; flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: .8rem;
}

.blog-card-meta i { color: var(--primary); }

.blog-card-cat {
    display: inline-block;
    background: rgba(108,99,255,.2);
    color: var(--primary);
    padding: .15rem .6rem;
    border-radius: 6px;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: .6rem;
}

.blog-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .8rem;
    line-height: 1.5;
    flex: 1;
}

.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--primary); }

.blog-read-more {
    color: var(--primary);
    font-size: .85rem;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: .4rem;
    transition: gap var(--transition);
}

.blog-read-more:hover { gap: .7rem; color: var(--secondary); }

/* ══════════════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════════════ */
.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(108,99,255,.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
    font-size: 2rem;
    color: #fff;
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
    opacity: 0;
    transform: scale(.85);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Delay helpers */
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }
.delay-5 { transition-delay: .5s !important; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.main-footer {
    background: var(--dark-2);
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent) 1;
    padding: 4rem 0 0;
    margin-top: 5rem;
}

.footer-brand {
    display: flex; align-items: center; gap: .7rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand .brand-dot {
    width: 10px; height: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    animation: brandPulse 2s ease-in-out infinite;
}

.footer-desc {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex; gap: .6rem;
    flex-wrap: wrap;
}

.footer-social-btn {
    width: 38px; height: 38px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all var(--transition);
    text-decoration: none;
}

.footer-social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(108,99,255,.4);
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.2rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid rgba(108,99,255,.3);
    display: inline-block;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: .6rem; }

.footer-links a {
    color: var(--text-muted);
    font-size: .88rem;
    transition: all var(--transition);
    display: inline-flex; align-items: center; gap: .4rem;
}

.footer-links a::before {
    content: '›';
    color: var(--primary);
    font-size: 1.1em;
    transition: transform var(--transition);
}

.footer-links a:hover { color: var(--primary); padding-right: 4px; }
.footer-links a:hover::before { transform: translateX(-4px); }

.footer-contact-item {
    display: flex; align-items: flex-start; gap: .8rem;
    color: var(--text-muted);
    font-size: .88rem;
    margin-bottom: .8rem;
    line-height: 1.6;
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: .15rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 1.2rem 0;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
}

.footer-bottom-text {
    color: var(--text-muted);
    font-size: .82rem;
}

.footer-bottom-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(108,99,255,.15);
    border: 1px solid rgba(108,99,255,.3);
    color: var(--primary);
    padding: .2rem .7rem;
    border-radius: 10px;
    font-size: .78rem;
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════
   FORMS & INPUTS
══════════════════════════════════════════════════════════════ */
.form-control, .form-select {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text);
    border-radius: var(--radius-sm);
    padding: .65rem 1rem;
    transition: all var(--transition);
}

.form-control:focus, .form-select:focus {
    background: rgba(255,255,255,.1);
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(108,99,255,.25);
    color: #fff;
    outline: none;
}

.form-control::placeholder { color: var(--text-muted); }

.form-label {
    color: var(--text);
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: .4rem;
}

.form-select option { background: var(--dark-2); }

/* ══════════════════════════════════════════════════════════════
   ALERTS & FLASH
══════════════════════════════════════════════════════════════ */
.flash-container {
    position: fixed;
    top: 80px; left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 90%;
    max-width: 480px;
}

.flash-alert {
    padding: .9rem 1.2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .9rem;
    display: flex; align-items: center; gap: .6rem;
    animation: slideDown .4s ease;
    backdrop-filter: blur(10px);
    border-left: 4px solid transparent;
    margin-bottom: .5rem;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.flash-success {
    background: rgba(16,185,129,.2);
    border-color: #10b981;
    color: #6ee7b7;
}

.flash-error {
    background: rgba(239,68,68,.2);
    border-color: #ef4444;
    color: #fca5a5;
}

.flash-warning {
    background: rgba(245,158,11,.2);
    border-color: #f59e0b;
    color: #fcd34d;
}

/* ══════════════════════════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════════════════════════ */
.page-header {
    background: var(--dark-2);
    border-bottom: 1px solid var(--glass-border);
    padding: 5rem 0 2rem;
    margin-bottom: 3rem;
}

.page-header-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
}

.breadcrumb-item { font-size: .85rem; }
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════
   CARDS (generic glass)
══════════════════════════════════════════════════════════════ */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    backdrop-filter: blur(10px);
}

/* ══════════════════════════════════════════════════════════════
   AUTH PAGE
══════════════════════════════════════════════════════════════ */
.auth-page {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 2rem 1rem;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(108,99,255,.2) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(0,212,255,.15) 0%, transparent 55%),
        var(--dark);
}

.auth-card {
    background: rgba(255,255,255,.05);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(0,0,0,.4);
}

.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo .brand-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    margin: 0 auto .8rem;
    box-shadow: 0 8px 25px rgba(108,99,255,.5);
}

.auth-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.auth-sub {
    font-size: .88rem;
    color: var(--text-muted);
}

.otp-inputs {
    display: flex;
    gap: .6rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.otp-inputs input {
    width: 50px; height: 56px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    color: #fff;
    transition: all var(--transition);
}

.otp-inputs input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108,99,255,.25);
    background: rgba(255,255,255,.1);
    outline: none;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════════════════════════════ */
.product-detail-img {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.product-detail-img img {
    width: 100%;
    transition: transform .5s ease;
}

.product-detail-img:hover img { transform: scale(1.04); }

.product-detail-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.product-detail-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--secondary);
}

.qty-control {
    display: flex; align-items: center; gap: .6rem;
}

.qty-btn {
    width: 38px; height: 38px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: #fff;
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.qty-btn:hover { background: var(--primary); border-color: var(--primary); }

.qty-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    min-width: 36px;
    text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   CART & CHECKOUT
══════════════════════════════════════════════════════════════ */
.cart-item {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: .8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition);
}

.cart-item:hover { border-color: rgba(108,99,255,.3); }

.cart-item-img {
    width: 80px; height: 80px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-summary {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: .6rem 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: .9rem;
    color: var(--text-muted);
}

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

.cart-summary-total {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary);
}

/* ══════════════════════════════════════════════════════════════
   PAGINATION
══════════════════════════════════════════════════════════════ */
.pagination .page-link {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text);
    border-radius: 8px !important;
    margin: 0 3px;
    padding: .5rem .85rem;
    transition: all var(--transition);
}

.pagination .page-link:hover {
    background: rgba(108,99,255,.2);
    border-color: var(--primary);
    color: var(--primary);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(108,99,255,.4);
}

/* ══════════════════════════════════════════════════════════════
   TICKET / SUPPORT
══════════════════════════════════════════════════════════════ */
.ticket-message {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.3rem;
    margin-bottom: .8rem;
}

.ticket-message.admin-reply {
    border-color: rgba(108,99,255,.3);
    background: rgba(108,99,255,.06);
    margin-right: 2rem;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .main-nav .navbar-collapse {
        background: rgba(15,15,26,.97);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: var(--radius);
        padding: 1rem;
        margin-top: .5rem;
    }

    .nav-search-form .form-control { width: 100%; }
    .nav-search-form .form-control:focus { width: 100%; }
    .nav-search-form { flex-direction: row; width: 100%; }

    .hero-3d-wrap { min-height: 280px; }
    .cube-scene { width: 130px; height: 130px; }
    .cube-3d { width: 130px; height: 130px; }
    .cube-face { width: 130px; height: 130px; }
    .cube-face-front,.cube-face-back,.cube-face-right,.cube-face-left,.cube-face-top,.cube-face-bottom { transform-origin: center; }
    .cube-face-front  { transform: translateZ(65px); }
    .cube-face-back   { transform: rotateY(180deg) translateZ(65px); }
    .cube-face-right  { transform: rotateY(90deg) translateZ(65px); }
    .cube-face-left   { transform: rotateY(-90deg) translateZ(65px); }
    .cube-face-top    { transform: rotateX(90deg) translateZ(65px); }
    .cube-face-bottom { transform: rotateX(-90deg) translateZ(65px); }

    .hero-mini-card { display: none; }
    .section-wrap { padding: 3rem 0; }
}

@media (max-width: 767px) {
    .hero-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
    .hero-actions { justify-content: center; }
    .hero-content { text-align: center; }
    .hero-badge { font-size: .75rem; }
    .section-title { font-size: 1.6rem; }
    .product-card-img { height: 180px; }
    .auth-card { padding: 1.8rem 1.4rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .main-footer { padding: 3rem 0 0; }
}

@media (max-width: 575px) {
    .cube-scene, .cube-3d, .cube-face { width: 110px; height: 110px; }
    .cube-face-front  { transform: translateZ(55px); }
    .cube-face-back   { transform: rotateY(180deg) translateZ(55px); }
    .cube-face-right  { transform: rotateY(90deg) translateZ(55px); }
    .cube-face-left   { transform: rotateY(-90deg) translateZ(55px); }
    .cube-face-top    { transform: rotateX(90deg) translateZ(55px); }
    .cube-face-bottom { transform: rotateX(-90deg) translateZ(55px); }

    .section-wrap { padding: 2.5rem 0; }
    .glass-card { padding: 1.4rem; }
}

/* ══════════════════════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════════════════════ */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.border-glass { border: 1px solid var(--glass-border); }

.hover-lift {
    transition: transform var(--transition), box-shadow var(--transition);
}
.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow) !important;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    margin: 2rem 0;
}

.badge-primary { background: rgba(108,99,255,.2); color: var(--primary); border: 1px solid rgba(108,99,255,.3); }
.badge-secondary { background: rgba(0,212,255,.2); color: var(--secondary); border: 1px solid rgba(0,212,255,.3); }
.badge-accent { background: rgba(255,101,132,.2); color: var(--accent); border: 1px solid rgba(255,101,132,.3); }

/* Spinner */
.spinner-border { color: var(--primary); }

/* Table */
.table-dark-custom {
    --bs-table-bg: transparent;
    --bs-table-border-color: var(--glass-border);
    color: var(--text);
}

.table-dark-custom th {
    background: rgba(108,99,255,.1);
    color: var(--primary);
    font-weight: 700;
    border-color: var(--glass-border);
    padding: .9rem 1rem;
}

.table-dark-custom td {
    border-color: var(--glass-border);
    padding: .8rem 1rem;
    vertical-align: middle;
}

.table-dark-custom tbody tr { transition: background var(--transition); }
.table-dark-custom tbody tr:hover { background: rgba(108,99,255,.05); }
