/* ====================================================================
   KAIROJX AUTO 2.0 - MODERNIZE MULTIPURPOSE ADMIN DASHBOARD THEME
   Inspired by Modernize Admin Dashboard (WrapPixel / AdminMart)
   Font: Plus Jakarta Sans | Icons: Tabler Icons | Pure Native CSS
   ==================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@2.44.0/tabler-icons.min.css');

:root {
    /* Modernize Signature Color Palette */
    --primary: #5d87ff;
    --primary-hover: #4570ea;
    --primary-light: rgba(93, 135, 255, 0.12);
    --primary-glow: rgba(93, 135, 255, 0.35);

    --secondary: #49beff;
    --secondary-hover: #32a8ee;
    --secondary-light: rgba(73, 190, 255, 0.12);

    --success: #13deb9;
    --success-hover: #0fb89a;
    --success-light: rgba(19, 222, 185, 0.12);

    --warning: #ffae1f;
    --warning-hover: #e59a16;
    --warning-light: rgba(255, 174, 31, 0.12);

    --danger: #fa896b;
    --danger-hover: #e87353;
    --danger-light: rgba(250, 137, 107, 0.12);

    --info: #539bff;
    --info-light: rgba(83, 155, 255, 0.12);

    --dark: #111c2d;
    --muted: #7c8fac;
    --light: #f4f6f9;

    /* Backward compatibility tokens */
    --cyan: #49beff;
    --cyan-glow: rgba(73, 190, 255, 0.25);
    --green: #13deb9;
    --green-glow: rgba(19, 222, 185, 0.25);
    --gold: #ffae1f;
    --gold-glow: rgba(255, 174, 31, 0.25);
    --red: #fa896b;
    --red-glow: rgba(250, 137, 107, 0.25);
    --purple: #8b5cf6;

    /* Typography & Dimensions */
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', Consolas, Monaco, monospace;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 9999px;
    --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ====================================================================
   LIGHT THEME (Default Theme - Modernize Signature Aesthetic)
   ==================================================================== */
:root,
html[data-theme="light"] {
    --bg-body: #f4f6f9;
    --bg-surface: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --bg-header: rgba(255, 255, 255, 0.92);
    --bg-sidebar: #ffffff;
    --bg-input: #ffffff;
    --border: #ebf1f6;
    --border-hover: #d2dce5;
    --border-light: rgba(0, 0, 0, 0.05);

    --text: #2a3547;
    --text-title: #2a3547;
    --text-muted: #5a6a85;
    --text-dim: #7c8fac;

    --bg-table-th: #f8fafc;
    --table-hover: rgba(93, 135, 255, 0.04);
    --shadow-card: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.08);

    color-scheme: light;
}

/* ====================================================================
   DARK THEME (When data-theme="dark")
   ==================================================================== */
html[data-theme="dark"] {
    --bg-body: #111c2d;
    --bg-surface: #142137;
    --bg-card: #172339;
    --bg-card-hover: #1c2b45;
    --bg-header: rgba(17, 28, 45, 0.88);
    --bg-sidebar: #111c2d;
    --bg-input: #111c2d;
    --border: #2a3547;
    --border-hover: #37465e;
    --border-light: rgba(255, 255, 255, 0.06);

    --text: #eaeff4;
    --text-title: #ffffff;
    --text-muted: #7c8fac;
    --text-dim: #5a6a85;

    --bg-table-th: rgba(0, 0, 0, 0.22);
    --table-hover: rgba(93, 135, 255, 0.06);
    --shadow-card: 0 4px 24px 0 rgba(0, 0, 0, 0.25);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.35);

    color-scheme: dark;
}

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

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font);
    background-color: var(--bg-body);
    color: var(--text);
    line-height: 1.55;
    font-size: 14px;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.modernize-wrapper,
.body-wrapper,
.page-content,
.card,
.stat-card,
.checker-widget,
.table-responsive {
    min-width: 0;
}

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

/* ====================================================================
   CONTAINER & RESPONSIVE PADDING
   ==================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.container-fluid {
    width: 100%;
    padding-left: 28px;
    padding-right: 28px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .container, .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 576px) {
    .container, .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ====================================================================
   MODERNIZE DASHBOARD LAYOUT (SIDEBAR + TOPBAR + CONTENT)
   ==================================================================== */
.modernize-wrapper {
    display: flex;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

/* SIDEBAR */
.left-sidebar {
    width: 270px;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease-in-out, width 0.25s, background 0.25s;
}

.brand-header {
    padding: 24px 24px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-title);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.brand-logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.brand-badge {
    font-size: 10px;
    font-weight: 700;
    background: var(--primary-light);
    color: var(--primary);
    padding: 2px 7px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(93, 135, 255, 0.3);
}

.sidebar-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 18px 16px;
}

.sidebar-scroll::-webkit-scrollbar { width: 5px; }
.sidebar-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.nav-small-cap {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 16px 12px 6px;
    display: block;
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-item { width: 100%; }

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-link i, .sidebar-link .ti {
    font-size: 20px;
    color: var(--text-dim);
    transition: var(--transition);
    flex-shrink: 0;
}

.sidebar-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.sidebar-link:hover i, .sidebar-link:hover .ti {
    color: var(--primary);
}

.sidebar-link.active {
    color: #ffffff;
    background: var(--primary);
    box-shadow: 0 4px 14px var(--primary-glow);
    font-weight: 700;
}

.sidebar-link.active i, .sidebar-link.active .ti {
    color: #ffffff;
}

.sidebar-user-card {
    padding: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: var(--bg-surface);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    flex-shrink: 0;
}

.user-info {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-title);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-role-text {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: capitalize;
}

/* BODY WRAPPER & TOPBAR */
.body-wrapper {
    flex: 1;
    margin-left: 270px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: margin-left 0.25s;
}

.app-header {
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 1040;
    background: var(--bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.25s, border-color 0.25s;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sidebar-toggle-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
}

.sidebar-toggle-btn:hover {
    background: var(--bg-surface);
    color: var(--primary);
    border-color: var(--primary);
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.page-breadcrumb .current {
    color: var(--text-title);
    font-weight: 700;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-wallet-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--warning-light);
    border: 1px solid rgba(255, 174, 31, 0.3);
    border-radius: var(--radius-pill);
    color: var(--warning);
    font-size: 13px;
    font-weight: 700;
}

.header-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-pill);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    position: relative;
    transition: var(--transition);
}

.header-icon-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.header-icon-btn .badge-dot {
    position: absolute;
    top: 7px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: var(--danger);
    border-radius: var(--radius-pill);
}

/* User dropdown */
.user-dropdown-wrap {
    position: relative;
}

.user-profile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-pill);
}

.user-dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;
    width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 1060;
}

.user-dropdown-menu.show { display: flex; }

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.dropdown-item.danger:hover {
    background: var(--danger-light);
    color: var(--danger);
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 0;
}

/* PAGE CONTENT */
.page-content {
    flex: 1;
    padding: 28px;
}

.container-fluid {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}

/* ====================================================================
   MODERNIZE LANDING / PUBLIC NAVBAR
   ==================================================================== */
nav.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-header);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    transition: background 0.25s, border-color 0.25s;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 800;
    color: var(--text-title);
    letter-spacing: -0.02em;
}

.brand-logo .logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 700;
}

.nav-role-badge {
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

/* ====================================================================
   MODERNIZE CARDS & STATS
   ==================================================================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-card);
    position: relative;
    transition: var(--transition);
    margin-bottom: 24px;
}

.card:hover {
    border-color: var(--border-hover);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
    flex-wrap: wrap;
    gap: 10px;
}

.card-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-title);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title i, .card-title .ti {
    color: var(--primary);
    font-size: 22px;
}

.card-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* MODERNIZE STATS GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-hover);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.stat-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-title);
    letter-spacing: -0.02em;
}

.stat-sub {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 2px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.stat-icon.primary { background: var(--primary-light); color: var(--primary); }
.stat-icon.success { background: var(--success-light); color: var(--success); }
.stat-icon.warning { background: var(--warning-light); color: var(--warning); }
.stat-icon.danger { background: var(--danger-light); color: var(--danger); }
.stat-icon.secondary { background: var(--secondary-light); color: var(--secondary); }

/* Backward compat stat-box */
.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-card);
}

/* ====================================================================
   BUTTONS & BADGES (MODERNIZE STYLE)
   ==================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 13px;
    font-family: var(--font);
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px var(--primary-glow);
}
.btn-primary:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(93, 135, 255, 0.45);
}

.btn-light-primary {
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(93, 135, 255, 0.2);
}
.btn-light-primary:hover {
    background: var(--primary);
    color: #fff;
}

.btn-success {
    background: var(--success);
    color: #fff;
    box-shadow: 0 4px 14px var(--green-glow);
}
.btn-success:hover {
    background: var(--success-hover);
    color: #fff;
}

.btn-warning {
    background: var(--warning);
    color: #000;
    box-shadow: 0 4px 14px var(--gold-glow);
}
.btn-warning:hover {
    background: var(--warning-hover);
    color: #000;
}

.btn-danger {
    background: var(--danger);
    color: #fff;
    box-shadow: 0 4px 14px var(--red-glow);
}
.btn-danger:hover {
    background: var(--danger-hover);
    color: #fff;
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--text);
    border-color: var(--border);
}
.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    color: #fff;
}

.btn-cyan {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px var(--primary-glow);
}
.btn-cyan:hover {
    background: var(--primary-hover);
    color: #fff;
}

.btn-sm { padding: 6px 12px; font-size: 12px; border-radius: 6px; }
.btn-lg { padding: 12px 28px; font-size: 15px; border-radius: var(--radius-md); }

/* BADGES */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.badge-light-primary, .badge-cyan { background: var(--primary-light); color: var(--primary); border: 1px solid rgba(93, 135, 255, 0.25); }
.badge-light-success, .badge-green { background: var(--success-light); color: var(--success); border: 1px solid rgba(19, 222, 185, 0.25); }
.badge-light-warning, .badge-gold { background: var(--warning-light); color: var(--warning); border: 1px solid rgba(255, 174, 31, 0.25); }
.badge-light-danger, .badge-red { background: var(--danger-light); color: var(--danger); border: 1px solid rgba(250, 137, 107, 0.25); }
.badge-light-info { background: var(--secondary-light); color: var(--secondary); border: 1px solid rgba(73, 190, 255, 0.25); }
.badge-purple { background: rgba(139, 92, 246, 0.15); color: var(--purple); border: 1px solid rgba(139, 92, 246, 0.3); }
.badge-muted { background: rgba(124, 143, 172, 0.15); color: var(--text-muted); border: 1px solid rgba(124, 143, 172, 0.25); }

/* ====================================================================
   TABLES (MODERNIZE DATA TABLE)
   ==================================================================== */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 13px;
}

table.data-table th {
    padding: 14px 16px;
    background: var(--bg-table-th);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

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

table.data-table tbody tr {
    transition: background 0.15s;
}

table.data-table tbody tr:hover {
    background: var(--table-hover);
}

/* ====================================================================
   FORMS & CONTROLS
   ==================================================================== */
.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-control, select.form-control, textarea.form-control {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    padding: 10px 14px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.form-control:focus, select.form-control:focus, textarea.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(93, 135, 255, 0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

/* PROGRESS BARS */
.bar-wrap {
    width: 100px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 4px;
}
.bar-hp { height: 100%; background: linear-gradient(90deg, var(--danger), #f87171); border-radius: 3px; }
.bar-mp { height: 100%; background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: 3px; }

/* TABS */
.tab-nav {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 22px;
    overflow-x: auto;
}

.tab-btn {
    padding: 10px 18px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tab-btn:hover { color: #fff; }
.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: var(--primary-light);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

/* ALERTS */
.alert {
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success { background: var(--success-light); color: var(--success); border: 1px solid rgba(19, 222, 185, 0.35); }
.alert-error { background: var(--danger-light); color: var(--danger); border: 1px solid rgba(250, 137, 107, 0.35); }
.alert-info { background: var(--primary-light); color: var(--primary); border: 1px solid rgba(93, 135, 255, 0.35); }
.alert-warning { background: var(--warning-light); color: var(--warning); border: 1px solid rgba(255, 174, 31, 0.35); }

/* ====================================================================
   LANDING / SAAS HERO SECTION
   ==================================================================== */
.hero-section {
    padding: 90px 0 70px;
    text-align: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    background: var(--primary-light);
    border: 1px solid rgba(93, 135, 255, 0.3);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

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

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 740px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* KEY CHECKER WIDGET */
.checker-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 680px;
    margin: 40px auto 0;
    box-shadow: var(--shadow-card);
    text-align: left;
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.pricing-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.pricing-box.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, #172744, #121d30);
    box-shadow: 0 10px 35px rgba(93, 135, 255, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin: 14px 0 20px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-muted);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-light);
}

.pricing-features li::before {
    content: "✓";
    color: var(--success);
    font-weight: 900;
}

/* FOOTER */
footer.main-footer {
    margin-top: auto;
    border-top: 1px solid var(--border);
    padding: 36px 0 24px;
    background: var(--bg-body);
    font-size: 13px;
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ====================================================================
   MODALS
   ==================================================================== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 540px;
    padding: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-box.modal-lg {
    max-width: 860px;
    max-height: 94vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.vip-plans-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}
@media (max-width: 768px) {
    .vip-plans-selector {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vip-plan-btn {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.vip-plan-btn:hover, .vip-plan-btn.active {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 4px 14px var(--primary-glow);
}

.vip-plan-btn.vip-gold:hover, .vip-plan-btn.vip-gold.active {
    border-color: var(--warning);
    background: var(--warning-light);
    box-shadow: 0 4px 14px var(--gold-glow);
}

.vip-qr-frame {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 12px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.copy-box {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

/* ====================================================================
   MOBILE BASE UTILITIES & OVERLAYS
   ==================================================================== */
.mobile-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--text-title);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
}

.mobile-toggle:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--primary-light);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1045;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.sidebar-overlay.show {
    display: block;
    opacity: 1;
}

/* ====================================================================
   RESPONSIVE BREAKPOINTS
   ==================================================================== */
@media (max-width: 1024px) {
    .left-sidebar {
        transform: translateX(-100%);
    }
    .left-sidebar.show {
        transform: translateX(0);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.7);
    }
    .body-wrapper {
        margin-left: 0;
    }
    .sidebar-toggle-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    /* Page Container & Spacing */
    .page-content {
        padding: 16px 12px;
    }
    .container, .container-fluid {
        padding-left: 14px;
        padding-right: 14px;
    }

    /* Dashboard Header Fix */
    .app-header {
        height: 60px;
        padding: 0 12px;
    }
    .header-left {
        gap: 8px;
    }
    .page-breadcrumb {
        display: none !important;
    }
    .header-right {
        gap: 6px;
    }
    .header-wallet-badge {
        padding: 4px 8px;
        font-size: 11px;
        gap: 4px;
    }
    .header-icon-btn {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
    .user-profile-btn {
        padding: 2px;
    }
    .user-profile-btn span,
    .user-profile-btn .ti-chevron-down {
        display: none !important;
    }
    .user-dropdown-menu {
        right: 0;
        left: auto;
        max-width: calc(100vw - 24px);
        width: 220px;
    }

    /* Public Landing Navigation Fix */
    nav.navbar {
        padding: 10px 0;
    }
    .nav-container {
        padding: 0 16px;
    }
    .brand-logo {
        font-size: 17px;
    }
    .brand-logo .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    .mobile-toggle {
        display: flex;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
        z-index: 1050;
        gap: 10px;
    }
    .nav-menu.show {
        display: flex;
    }
    .nav-menu li {
        width: 100%;
    }
    .nav-menu .nav-link {
        display: block;
        width: 100%;
        padding: 10px 14px;
        border-radius: var(--radius-sm);
    }
    .nav-menu .btn {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 10px 16px;
    }
    .nav-menu .theme-toggle-nav-btn {
        width: 100%;
        border-radius: var(--radius-sm);
        justify-content: center;
        height: 40px;
    }

    /* Hero Section & Public Elements */
    .hero-section {
        padding: 50px 0 35px;
    }
    .hero-title {
        font-size: 30px;
    }
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .checker-widget {
        padding: 20px 16px;
        margin: 24px auto 0;
    }
    #formKeyChecker {
        flex-direction: column;
    }
    #formKeyChecker .btn {
        width: 100%;
        justify-content: center;
    }
    #formKeyChecker > div {
        min-width: 100% !important;
    }

    /* Modals & Dialogs */
    .modal-box {
        width: 94%;
        max-width: 94%;
        padding: 20px 14px;
        max-height: 90vh;
        overflow-y: auto;
    }
    .modal-box.modal-lg {
        width: 96%;
        max-width: 96%;
        padding: 18px 12px;
        max-height: 92vh;
    }
    .vip-plans-selector {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    /* Store Section */
    .store-section {
        padding: 40px 0;
    }
    .store-header-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 24px;
    }
    .store-main-title {
        font-size: 24px;
    }
    .store-card {
        padding: 20px 16px;
    }
    .store-btn-orders {
        width: 100%;
        justify-content: center;
    }

    /* Universal Responsive Grid Overrides for Inline Styles */
    [style*="minmax(340px"],
    [style*="minmax(320px"],
    [style*="minmax(300px"],
    [style*="minmax(290px"],
    [style*="minmax(280px"],
    [style*="minmax(260px"],
    .bank-config-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 24px;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .card {
        padding: 16px 12px;
        margin-bottom: 16px;
    }
    .stat-card {
        padding: 16px 14px;
    }
    .stat-value {
        font-size: 22px;
    }
    .vip-plans-selector {
        grid-template-columns: 1fr;
    }

    /* Collapse multi-column inline form fields */
    [style*="grid-template-columns:1fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns:1fr 1fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr 1fr"],
    [style*="grid-template-columns:2fr 1fr"],
    [style*="grid-template-columns: 2fr 1fr"],
    [style*="grid-template-columns:1.2fr 0.8fr"],
    [style*="grid-template-columns: 1.2fr 0.8fr"] {
        grid-template-columns: 1fr !important;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    footer.main-footer {
        padding: 24px 0 16px;
    }
}

/* ====================================================================
   THEME TOGGLE BUTTONS & ICONS
   ==================================================================== */
.theme-toggle-btn,
.theme-toggle-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-pill);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 19px;
    transition: var(--transition);
}

.theme-toggle-btn:hover,
.theme-toggle-nav-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-1px);
}

html[data-theme="dark"] .theme-icon-dark {
    display: inline-block !important;
    color: var(--secondary);
}
html[data-theme="dark"] .theme-icon-light {
    display: none !important;
}

html[data-theme="light"] .theme-icon-dark {
    display: none !important;
}
html[data-theme="light"] .theme-icon-light {
    display: inline-block !important;
    color: #ffae1f;
}

/* ====================================================================
   LIGHT THEME ENHANCEMENTS & OVERRIDES
   ==================================================================== */
html[data-theme="light"] h1,
html[data-theme="light"] h2,
html[data-theme="light"] h3,
html[data-theme="light"] h4,
html[data-theme="light"] h5,
html[data-theme="light"] h6 {
    color: var(--text-title);
}

html[data-theme="light"] [style*="color:#fff"],
html[data-theme="light"] [style*="color: #fff"],
html[data-theme="light"] [style*="color:#ffffff"],
html[data-theme="light"] [style*="color: #ffffff"] {
    color: var(--text-title) !important;
}

/* Retain white text on solid buttons, badges & gradient cards */
html[data-theme="light"] .btn-primary,
html[data-theme="light"] .btn-cyan,
html[data-theme="light"] .btn-danger,
html[data-theme="light"] .btn-success,
html[data-theme="light"] .sidebar-link.active,
html[data-theme="light"] .sidebar-link.active i,
html[data-theme="light"] .sidebar-link.active .ti,
html[data-theme="light"] .badge-primary,
html[data-theme="light"] .badge-danger,
html[data-theme="light"] .badge-success,
html[data-theme="light"] .pricing-badge,
html[data-theme="light"] .brand-logo-icon,
html[data-theme="light"] .user-avatar,
html[data-theme="light"] .alert [style*="color:#fff"] {
    color: #ffffff !important;
}

html[data-theme="light"] .pricing-box.featured {
    background: linear-gradient(180deg, #ffffff, #edf3fc);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(93, 135, 255, 0.15);
}

html[data-theme="light"] .pricing-box.featured h3 {
    color: var(--primary) !important;
}

html[data-theme="light"] .vip-qr-frame {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Light Mode Components Polish */
html[data-theme="light"] .hero-section {
    background: radial-gradient(circle at 50% 12%, rgba(93, 135, 255, 0.08) 0%, rgba(244, 246, 249, 0) 70%);
}

html[data-theme="light"] .card,
html[data-theme="light"] .stat-card,
html[data-theme="light"] .stat-box,
html[data-theme="light"] .checker-widget,
html[data-theme="light"] .pricing-box {
    background: #ffffff;
    border-color: #ebf1f6;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

html[data-theme="light"] .card:hover,
html[data-theme="light"] .stat-card:hover,
html[data-theme="light"] .pricing-box:hover {
    border-color: #d2dce5;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

html[data-theme="light"] .form-control,
html[data-theme="light"] select.form-control,
html[data-theme="light"] textarea.form-control {
    background: #ffffff;
    border-color: #dfe5ef;
    color: #2a3547;
}

html[data-theme="light"] .form-control::placeholder {
    color: #98a6ad;
}

html[data-theme="light"] .btn-secondary {
    background: #ffffff;
    color: #2a3547;
    border-color: #dfe5ef;
}

html[data-theme="light"] .btn-secondary:hover {
    background: #f8fafc;
    border-color: #5d87ff;
    color: #5d87ff;
}

html[data-theme="light"] table.data-table th {
    background: #f8fafc;
    color: #5a6a85;
    border-bottom: 1px solid #ebf1f6;
}

html[data-theme="light"] table.data-table td {
    border-bottom: 1px solid #f1f5f9;
    color: #2a3547;
}

html[data-theme="light"] table.data-table tbody tr:hover {
    background: rgba(93, 135, 255, 0.04);
}

html[data-theme="light"] .bar-wrap {
    background: #ebf1f6;
}

html[data-theme="light"] .copy-box {
    background: #f8fafc;
    border-color: #e5eaef;
}

html[data-theme="light"] .vip-plan-btn {
    background: #f8fafc;
    border-color: #e5eaef;
}

html[data-theme="light"] .vip-plan-btn:hover,
html[data-theme="light"] .vip-plan-btn.active {
    background: rgba(93, 135, 255, 0.08);
    border-color: #5d87ff;
}

html[data-theme="light"] .modal-box {
    background: #ffffff;
    border-color: #ebf1f6;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

html[data-theme="light"] .modal-overlay {
    background: rgba(17, 28, 45, 0.45);
}

html[data-theme="light"] .sidebar-user-card {
    background: #f8fafc;
    border-top: 1px solid #ebf1f6;
}

/* ====================================================================
   STORE / MUA GÓI LICENSE (EXACT IMAGE REPLICA)
   ==================================================================== */
.store-section {
    padding: 70px 0;
    background: #090d13;
}
html[data-theme="light"] .store-section {
    background: #f4f6fa;
}

.store-header-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 16px;
}

.store-sub-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.store-main-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin: 0 0 6px 0;
}
html[data-theme="light"] .store-main-title {
    color: #1e293b;
}

.store-desc {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

.store-btn-orders {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #e2e8f0;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.store-btn-orders:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}
html[data-theme="light"] .store-btn-orders {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #334155;
}
html[data-theme="light"] .store-btn-orders:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1200px) {
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 680px) {
    .store-grid {
        grid-template-columns: 1fr;
    }
}

.store-card {
    background: #10151c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.store-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}
html[data-theme="light"] .store-card {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.store-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: fit-content;
    margin-bottom: 14px;
}
html[data-theme="light"] .store-badge {
    color: #64748b;
    border-color: #cbd5e1;
    background: #f8fafc;
}

.store-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
}
html[data-theme="light"] .store-card-title {
    color: #0f172a;
}

.store-price-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 22px;
}
.store-price-val {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}
html[data-theme="light"] .store-price-val {
    color: #0f172a;
}
.store-price-unit {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.store-group-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.store-pills-row {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.store-pill-btn {
    background: #171f2b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 7px 16px;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    outline: none;
}
.store-pill-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}
.store-pill-btn.active {
    background: #243042;
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}
html[data-theme="light"] .store-pill-btn {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #475569;
}
html[data-theme="light"] .store-pill-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}
html[data-theme="light"] .store-pill-btn.active {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
}

.store-features-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 28px 0;
}
.store-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 12px;
    line-height: 1.45;
}
html[data-theme="light"] .store-features-list li {
    color: #334155;
}
.store-features-list li i, .store-features-list li .ti {
    color: #00d1a0;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.store-btn-action {
    width: 100%;
    padding: 13px 20px;
    border-radius: 10px;
    background: #00d1a0;
    color: #051410;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 209, 160, 0.25);
}
.store-btn-action:hover {
    background: #00e6b0;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 209, 160, 0.35);
}
.store-btn-action:active {
    transform: translateY(0);
}

/* ====================================================================
   UNIFIED HOME SECTIONS HARMONY
   ==================================================================== */
.home-section {
    padding: 64px 0;
}
.home-section-header {
    margin-bottom: 36px;
}
.home-section-header.text-center {
    text-align: center;
}
.home-section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-title);
    letter-spacing: -0.02em;
    margin: 8px 0 6px 0;
}
.home-section-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}
