:root {
    --accent: #EE0000;
    --accent-hover: #ff1e1e;
    --bg-page: #0a0a0a;
    --bg-card: #151515;
    --bg-input: #151515;
    --border-color: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #999999;
}

[data-theme="light"] {
    --bg-page: #f2f2f2;
    --bg-card: #ffffff;
    --bg-input: #f7f7f7;
    --border-color: #dddddd;
    --text-primary: #0a0a0a;
    --text-secondary: #666666;
}

* {
    box-sizing: border-box;
}

body {
    background: var(--bg-page);
    color: var(--text-primary);
    font-family: 'Cairo', sans-serif;
    margin: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px 24px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.auth-logo {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
}

.auth-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.auth-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text-primary);
    font-size: 14px;
    margin-bottom: 12px;
    text-align: right;
    font-family: inherit;
}

.auth-input::placeholder {
    color: var(--text-secondary);
}

.auth-btn-primary {
    width: 100%;
    background: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
}

.auth-btn-primary:hover {
    background: var(--accent-hover);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: var(--text-secondary);
    font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.auth-btn-google {
    width: 100%;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 13px;
    color: var(--text-primary);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

.auth-link {
    color: var(--text-secondary);
    font-size: 13px;
    text-decoration: none;
}

.auth-footer {
    margin-top: 24px;
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
}

.auth-footer a {
    color: var(--accent);
    text-decoration: none;
}

.site-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}

.site-header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 16px;
}

.site-header-brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 18px;
}

.header-login-btn {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    text-align: center;
}

.category-card i {
    font-size: 28px;
    color: var(--accent);
}

.category-card span {
    font-size: 13px;
    font-weight: 700;
}

.site-footer {
    text-align: center;
    padding: 24px 16px;
    color: var(--text-secondary);
    font-size: 12px;
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
}

.site-footer a {
    color: var(--accent);
    text-decoration: none;
}

.category-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-icon-box i {
    font-size: 26px;
    color: var(--accent);
}

.category-card {
    gap: 12px;
    padding: 18px 10px;
}

.category-card span {
    font-size: 12px;
}

.category-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-icon-box i {
    font-size: 26px;
    color: var(--accent);
}

.category-card {
    gap: 12px;
    padding: 18px 10px;
}

.category-card span {
    font-size: 12px;
}

:root {
    --accent: #E50914;
    --accent-light: #ff3b3b;
    --accent-dark: #4a0006;
    --accent-glow: rgba(229, 9, 20, 0.45);
}

.category-icon-box {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    border-radius: 18px;
    background: linear-gradient(145deg, var(--accent-light) 0%, var(--accent) 45%, var(--accent-dark) 100%);
    box-shadow: 0 0 18px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.25);
    overflow: hidden;
    border: none;
}

.category-icon-box::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 45%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.25), rgba(255,255,255,0));
    pointer-events: none;
    z-index: 2;
}

.category-icon-box::after {
    content: "CAPO";
    position: absolute;
    top: 6px;
    right: 8px;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
    opacity: 0.85;
    z-index: 3;
}

.category-icon-box img,
.category-icon-box i {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.category-icon-box i {
    font-size: 30px;
    color: rgba(255,255,255,0.9);
}

.category-card {
    background: var(--bg-card);
    padding: 10px;
}

.auth-btn-primary,
.header-login-btn {
    background: linear-gradient(145deg, var(--accent-light) 0%, var(--accent) 60%, var(--accent-dark) 100%);
    box-shadow: 0 0 16px var(--accent-glow);
    border: none;
}

.auth-btn-primary:hover,
.header-login-btn:hover {
    box-shadow: 0 0 24px var(--accent-glow);
}

.auth-footer a,
.site-footer a {
    color: var(--accent-light);
}

:root {
    --accent: #E50914;
    --accent-light: #ff3b3b;
    --accent-dark: #4a0006;
    --accent-glow: rgba(229, 9, 20, 0.45);
}

.category-icon-box {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    border-radius: 18px;
    background: linear-gradient(145deg, var(--accent-light) 0%, var(--accent) 45%, var(--accent-dark) 100%);
    box-shadow: 0 0 18px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.25);
    overflow: hidden;
    border: none;
}

.category-icon-box::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 45%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.25), rgba(255,255,255,0));
    pointer-events: none;
    z-index: 2;
}

.category-icon-box::after {
    content: "CAPO";
    position: absolute;
    top: 6px;
    right: 8px;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
    opacity: 0.85;
    z-index: 3;
}

.category-icon-box img,
.category-icon-box i {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.category-icon-box i {
    font-size: 30px;
    color: rgba(255,255,255,0.9);
}

.category-card {
    background: var(--bg-card);
    padding: 10px;
}

.auth-btn-primary,
.header-login-btn {
    background: linear-gradient(145deg, var(--accent-light) 0%, var(--accent) 60%, var(--accent-dark) 100%);
    box-shadow: 0 0 16px var(--accent-glow);
    border: none;
}

.auth-btn-primary:hover,
.header-login-btn:hover {
    box-shadow: 0 0 24px var(--accent-glow);
}

.auth-footer a,
.site-footer a {
    color: var(--accent-light);
}

.site-header {
    padding: 10px 16px;
}

.site-header-brand {
    font-size: 14px;
}

.site-header-brand img {
    width: 26px;
    height: 26px;
}

.theme-toggle {
    width: 32px;
    height: 32px;
    font-size: 15px;
}

.header-login-btn {
    padding: 7px 14px;
    font-size: 13px;
}

.categories-grid {
    gap: 10px;
    padding: 14px;
}

.category-card {
    padding: 8px;
    gap: 8px;
}

.category-card span {
    font-size: 11px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
}

@media (min-width: 700px) {
    .categories-grid {
        grid-template-columns: repeat(6, 1fr);
        max-width: 1100px;
    }
}

.category-card {
    border: 1px solid var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
    background: var(--bg-card);
    padding: 8px 6px;
}

.category-card span {
    font-size: 10px;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    word-spacing: -1px;
    padding: 0 2px;
}

.site-header {
    flex-direction: row-reverse;
}

.header-hamburger {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 18px;
}

.side-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.side-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.side-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px;
    max-width: 85vw;
    background: var(--bg-card);
    border-left: 1px solid var(--border-color);
    z-index: 91;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.side-panel.open {
    transform: translateX(0);
}

.side-login-card {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 16px;
}

.side-login-card h3 {
    font-size: 16px;
    margin: 0 0 6px;
}

.side-login-card p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0 0 14px;
}

.side-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 13px 14px;
    margin-bottom: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
}

.side-menu-item i {
    color: var(--accent);
    font-size: 18px;
}

.side-toggle-switch {
    width: 40px;
    height: 22px;
    border-radius: 20px;
    background: var(--border-color);
    position: relative;
    cursor: pointer;
    margin-right: auto;
}

.side-toggle-switch::after {
    content: "";
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    transition: right 0.2s ease;
}

[data-theme="light"] .side-toggle-switch::after {
    right: 20px;
}

.side-social-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 18px 0;
}

.side-social-row a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
}

.side-panel-footer {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.side-panel-footer img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.side-panel-footer p {
    font-size: 11px;
    color: var(--text-secondary);
    margin: 0;
}

.side-panel-footer a {
    color: var(--accent-light);
    text-decoration: none;
}

.side-toggle-switch {
    background: rgba(238, 0, 0, 0.25);
    border: 1px solid var(--accent);
}

.side-toggle-switch::after {
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent-glow);
}

[data-theme="light"] .side-toggle-switch {
    background: rgba(238, 0, 0, 0.12);
}

@media (min-width: 1024px) {
    .header-hamburger {
        display: none;
    }
    .side-overlay {
        display: none !important;
    }
    .side-panel {
        transform: translateX(0) !important;
        box-shadow: none;
    }
    body {
        margin-right: 300px;
    }
}

.theme-switch {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 3.5em;
    height: 2em;
    margin-right: auto;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.theme-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    box-shadow: inset 2px 5px 10px rgba(0,0,0,0.3);
    transition: .4s;
    border-radius: 5px;
}

.theme-slider:before {
    position: absolute;
    content: "";
    height: 1.4em;
    width: 0.1em;
    left: 0.3em;
    bottom: 0.3em;
    background-color: white;
    transition: .4s;
}

.theme-switch input:checked + .theme-slider {
    background-color: var(--accent);
    box-shadow: inset 2px 5px 10px rgba(0,0,0,0.6);
}

.theme-switch input:checked + .theme-slider:before {
    transform: translateX(2.8em) rotate(360deg);
}

.theme-switch {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 3.5em;
    height: 2em;
    margin-right: auto;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.theme-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    box-shadow: inset 2px 5px 10px rgba(0,0,0,0.3);
    transition: .4s;
    border-radius: 5px;
}

.theme-slider:before {
    position: absolute;
    content: "";
    height: 1.4em;
    width: 0.1em;
    left: 0.3em;
    bottom: 0.3em;
    background-color: white;
    transition: .4s;
}

.theme-switch input:checked + .theme-slider {
    background-color: var(--accent);
    box-shadow: inset 2px 5px 10px rgba(0,0,0,0.6);
}

.theme-switch input:checked + .theme-slider:before {
    transform: translateX(2.8em) rotate(360deg);
}

.item-page-wrap {
    max-width: 600px;
    margin: 0 auto;
    padding: 16px 20px 40px;
}

.item-hero {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.item-hero-img {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--accent-light) 0%, var(--accent) 45%, var(--accent-dark) 100%);
    box-shadow: 0 0 14px var(--accent-glow);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-hero-img i {
    color: #fff;
    font-size: 28px;
}

.item-hero h1 {
    font-size: 17px;
    margin: 0 0 4px;
}

.item-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.item-price {
    color: var(--accent-light);
    font-size: 20px;
    font-weight: 800;
}

.item-old-price {
    color: var(--text-secondary);
    font-size: 13px;
    text-decoration: line-through;
}

.item-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
}

.item-section h3 {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0 0 8px;
}

.item-section p {
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
}

.item-meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.item-submit-btn {
    width: 100%;
    background: linear-gradient(145deg, var(--accent-light) 0%, var(--accent) 60%, var(--accent-dark) 100%);
    box-shadow: 0 0 16px var(--accent-glow);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    margin-top: 6px;
}

/* ===== Admin Panel Chrome ===== */
.padm-body {
    display: flex;
    min-height: 100vh;
    background: var(--bg-page);
}

.padm-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #0d0d0d 0%, #1a0505 100%);
    border-left: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 50;
    transition: transform 0.25s ease;
}

.padm-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.padm-sidebar-brand .badge {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: linear-gradient(145deg, var(--accent-light) 0%, var(--accent) 55%, var(--accent-dark) 100%);
    box-shadow: 0 0 14px var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
}

.padm-sidebar-brand strong {
    color: #fff;
    font-size: 14px;
    display: block;
}

.padm-sidebar-brand span {
    color: rgba(255,255,255,0.4);
    font-size: 11px;
}

.padm-nav-group {
    padding: 16px 12px 4px;
}

.padm-nav-group-label {
    color: rgba(255,255,255,0.35);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0 10px 8px;
}

.padm-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 13.5px;
    margin-bottom: 2px;
    position: relative;
}

.padm-nav-item i {
    font-size: 17px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.padm-nav-item:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

.padm-nav-item.active {
    background: linear-gradient(90deg, rgba(238,0,0,0.18), rgba(238,0,0,0.02));
    color: #fff;
}

.padm-nav-item.active::before {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    bottom: 6px;
    width: 3px;
    border-radius: 3px;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
}

.padm-nav-item.disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.padm-nav-item .soon-tag {
    margin-right: auto;
    font-size: 9px;
    background: rgba(255,255,255,0.1);
    padding: 2px 6px;
    border-radius: 20px;
    color: rgba(255,255,255,0.5);
}

.padm-main {
    flex: 1;
    margin-right: 260px;
    min-height: 100vh;
}

.padm-topbar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 40;
}

.padm-topbar-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.padm-topbar-title i {
    color: var(--accent);
}

.padm-topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.padm-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 15px;
    text-decoration: none;
}

.padm-user-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 6px 12px 6px 6px;
    font-size: 13px;
    color: var(--text-primary);
    text-decoration: none;
}

.padm-user-chip .av {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--accent-light), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.padm-hamburger {
    display: none;
}

.padm-content {
    padding: 22px 24px 40px;
}

.padm-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.padm-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px;
    position: relative;
    overflow: hidden;
}

.padm-stat-card::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 70px;
    height: 70px;
    background: var(--accent);
    opacity: 0.08;
    border-radius: 0 0 0 70px;
}

.padm-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--accent-light) 0%, var(--accent) 55%, var(--accent-dark) 100%);
    box-shadow: 0 0 12px var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 19px;
    margin-bottom: 12px;
}

.padm-stat-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.padm-stat-label {
    font-size: 12.5px;
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .padm-sidebar {
        transform: translateX(100%);
    }
    .padm-sidebar.open {
        transform: translateX(0);
    }
    .padm-main {
        margin-right: 0;
    }
    .padm-hamburger {
        display: flex;
    }
}

.header-balance-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.header-balance-chip i {
    color: var(--accent);
}

.profile-panel-top {
    text-align: center;
    padding-bottom: 18px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--border-color);
}

.profile-avatar-wrap {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 10px;
}

.profile-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--accent-light), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 0 14px var(--accent-glow);
}

.profile-online-dot {
    position: absolute;
    bottom: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #2ecc71;
    border: 2px solid var(--bg-card);
}

.profile-bell {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 13px;
}

.profile-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.profile-id {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.profile-balance {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-light);
    margin-bottom: 14px;
}

.profile-actions-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

.profile-actions-row a, .profile-actions-row button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
    font-size: 15px;
}

.currency-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 9px 16px;
    font-size: 12.5px;
    color: var(--text-secondary);
}

.currency-pill strong {
    color: var(--text-primary);
}

.side-menu-item.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.side-menu-item .soon-tag {
    margin-right: auto;
    font-size: 9px;
    background: var(--border-color);
    padding: 2px 6px;
    border-radius: 20px;
    color: var(--text-secondary);
}
