:root {
    --bg-color: #000000;
    --primary-color: #ffffff;
    --secondary-bg: #050505;
    --accent-color: #38bdf8;
    
    --accent-glow: rgba(56, 189, 248, 0.4);
    --text-main: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.6);
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(5, 5, 5, 0.7);
    --card-bg: #0a0a0a;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color); 
}
::-webkit-scrollbar-thumb {
    background: var(--border-color); 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color); 
}

.blob {
    position: fixed;
    width: 500px;
    height: 500px;
    background: var(--accent-glow);
    filter: blur(120px);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.2;
    animation: move 20s infinite alternate;
}

.blob-1 {
    top: -100px;
    right: -100px;
}

.blob-2 {
    bottom: -100px;
    left: -100px;
    background: rgba(56, 189, 248, 0.2);
}

@keyframes move {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(50px, 100px) scale(1.1);
    }
}

html {
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% -20%, rgba(56, 189, 248, 0.15), transparent 70%),
        radial-gradient(circle at 100% 100%, rgba(56, 189, 248, 0.05), transparent 50%);
    pointer-events: none;
    z-index: -1;
}


::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #333;
}


* {
    scrollbar-width: thin;
    scrollbar-color: #333 #030303;
}


.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 10px 24px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    letter-spacing: -1px;
    color: #fff;
    background: linear-gradient(90deg, #fff, var(--accent-color), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

.logo img {
    height: 32px;
    margin-right: 12px;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.4));
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    font-size: 18px;
    color: var(--text-dim);
    cursor: pointer;
    transition: 0.3s;
}

.cart-icon:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.divider {
    height: 20px;
    width: 1px;
    background: var(--border-color);
}

.dashboard-btn {
    background: var(--primary-color);
    color: #000;
    border: none;
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dashboard-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}


.hero {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    gap: 80px;
}

.hero-left {
    flex: 1;
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-left h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 90px;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #FFFFFF 40%, rgba(255, 255, 255, 0.2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -4px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.hero-left p {
    font-size: 18px;
    color: var(--text-dim);
    max-width: 460px;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
    padding: 18px 40px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    padding: 18px 40px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.03);
}

.hero-right {
    flex: 1.25;
    display: flex;
    justify-content: flex-end;
    animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 700px;
}

.hero-right img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
    animation: float 8s ease-in-out infinite;
}

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
}


@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(1deg);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}


.notification-container {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 99999;
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    pointer-events: none;
    width: max-content;
    max-width: 90vw;
}

.notification-container.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.notification {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 16px 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 500;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.notification.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.notification i {
    font-size: 18px;
}

.notification.success i {
    color: #22c55e;
}

.notification:not(.success) i {
    color: #ef4444;
}

.auth-btn-secondary {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.notification i {
    color: #ef4444;
    font-size: 18px;
}


.reveal {
    opacity: 0 !important;
    transform: translateY(50px) !important;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transition-delay: var(--delay, 0s) !important;
    pointer-events: none;
}

.reveal.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: all;
}


.pricing {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    scroll-margin-top: 120px;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent);
}

.pricing-header {
    margin-bottom: 60px;
    animation: slideUp 1s ease-out;
}

.tagline {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.pricing-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.subtext {
    color: var(--text-dim);
    font-size: 16px;
    max-width: 500px;
    margin: 12px 0 0;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
}


.card-ribbon {
    position: absolute;
    overflow: hidden;
    width: 150px;
    height: 150px;
    top: -10px;
    left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.card-ribbon::before {
    content: 'Top Selling';
    position: absolute;
    width: 150%;
    height: 40px;
    background-image: linear-gradient(45deg, #ff6547 0%, #ffb144 51%, #ff7053 100%);
    transform: rotate(-45deg) translateY(-20px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.23);
}

.card-ribbon::after {
    content: '';
    position: absolute;
    width: 10px;
    bottom: 0;
    left: 0;
    height: 10px;
    z-index: -1;
    box-shadow: 140px -140px #cc3f47;
    background-image: linear-gradient(45deg, #FF512F 0%, #F09819 51%, #FF512F 100%);
}

.price-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(56, 189, 248, 0.1);
}

.card-banner {
    height: 160px;
    position: relative;
    background: linear-gradient(135deg, #111, #050505);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.banner-logo {
    height: 60px;
    opacity: 0.9;
    z-index: 2;
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.price-card:hover .banner-logo {
    transform: scale(1.15) rotate(2deg);
    opacity: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15), transparent 70%);
}

.card-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.access {
    color: var(--text-dim);
    font-size: 15px;
    margin-bottom: 32px;
}

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

.price {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(180deg, #fff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.action-btn {
    width: 52px;
    height: 52px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    font-size: 18px;
}

.price-card:hover .action-btn {
    background: var(--primary-color);
    color: #000;
    transform: rotate(-45deg);
}


.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    z-index: 999;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%) translateY(-10px);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.mobile-menu a {
    display: block;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 16px;
    border-radius: 12px;
    transition: 0.2s;
}

.mobile-menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}


@media (max-width: 1100px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
        gap: 60px;
    }

    .hero-left h1 {
        font-size: 80px;
        letter-spacing: -3px;
    }

    .hero-left p {
        margin: 0 auto 40px;
    }

    .buttons {
        justify-content: center;
    }

    .hero-right {
        justify-content: center;
        width: 100%;
    }

    .nav-links {
        display: none;
    }

    .dashboard-btn,
    .nav-actions .divider {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .pricing-header h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-left h1 {
        font-size: 60px;
    }
}


.product-root {
    padding: 140px 40px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.left-col {
    flex: 1.4;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.right-col {
    flex: 1;
}

.product-media {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.product-media img {
    width: 50%;
    filter: drop-shadow(0 0 30px rgba(56, 189, 248, 0.3));
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-container:hover .product-media img {
    transform: scale(1.05) rotate(2deg);
}

.product-details {
    width: 100%;
}

.product-info {
    margin-bottom: 32px;
}

.product-info h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.product-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-color);
    font-family: 'Outfit', sans-serif;
}

.product-actions {
    background: #0a0a0a;
    border: 1px solid var(--border-color);
    padding: 28px;
    border-radius: 24px;
    margin-bottom: 32px;
}

.qty-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.qty-row span {
    color: var(--text-dim);
    font-size: 14px;
    font-weight: 600;
}

.qty-selector {
    display: flex;
    align-items: center;
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 6px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    color: var(--text-dim);
}

.qty-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.qty-value {
    padding: 0 16px;
    font-weight: 700;
    font-size: 15px;
}

.buy-buttons {
    display: flex;
    gap: 12px;
}

.add-cart-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 16px;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.buy-now-btn {
    flex: 1;
    background: #fff;
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.buy-now-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.desc-tabs {
    padding-top: 0;
}

.tab-nav {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

.tab-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dim);
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-link.active {
    color: #fff;
}

.tab-pane p {
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 16px;
}

.tab-pane ul {
    list-style: none;
}

.tab-pane ul li {
    color: var(--text-dim);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-pane ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
}

@media (max-width: 968px) {
    .product-container {
        flex-direction: column;
    }

    .product-media {
        width: 100%;
    }
}


.dashboard-root {
    display: flex;
    min-height: 100vh;
    background: var(--bg-color);
    overflow: hidden;
}


.sidebar {
    width: 280px;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--border-color);
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.sidebar-logo {
    margin-bottom: 48px;
    padding-left: 12px;
}

.nav-menu {
    list-style: none;
    flex-grow: 1;
}

.nav-item {
    margin-bottom: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 14px;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

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

.nav-link.active {
    box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.nav-link i {
    font-size: 18px;
}

.nav-link.active i {
    color: var(--accent-color);
}

.user-footer {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}


.main-dash {
    flex: 1;
    padding: 60px;
    overflow-y: auto;
    position: relative;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.dash-header {
    margin-bottom: 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.dash-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 4px;
}

.dash-header p {
    color: var(--text-dim);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    transition: 0.3s;
}

.stat-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.stat-label {
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
}


.input-group {
    margin-bottom: 16px;
    text-align: left;
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrapper i {
    position: absolute;
    left: 18px;
    color: var(--text-dim);
    font-size: 18px;
    pointer-events: none;
    opacity: 0.6;
    z-index: 2;
}

.auth-page .input-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 18px 18px 18px 52px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    caret-color: #fff;
}

.auth-page .input-field::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
}

.auth-page .input-field:focus {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.02);
}

.auth-page .input-field:focus+i {
    opacity: 0.9;
    color: var(--primary-color);
}

/* Keep auth inputs styled when browser autofills */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0 1000px #0c0c0c inset !important;
    box-shadow: 0 0 0 1000px #0c0c0c inset !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Fix Icon visibility - Ensure they stay on top and have enough contrast */
.auth-page .input-icon-wrapper i {
    z-index: 10 !important;
    opacity: 0.8 !important;
    color: #fff !important;
    pointer-events: none; /* Make sure clicking the icon focuses the input */
}

/* Specific fix for the focused icon as well */
.auth-page .input-field:focus ~ i,
.auth-page .input-field:active ~ i,
.auth-page .input-field:-webkit-autofill ~ i {
    color: var(--primary-color) !important;
    opacity: 1 !important;
}

.stat-value {
    font-size: 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #fff;
}

.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
    margin-top: 12px;
}


.dl-grid {
    display: grid;
    gap: 16px;
}

.dl-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0a0a0a;
    border: 1px solid var(--border-color);
    padding: 24px 32px;
    border-radius: 20px;
    transition: 0.3s;
}

.dl-item:hover {
    border-color: var(--accent-color);
    transform: translateX(8px);
}

.dl-info h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.dl-info span {
    font-size: 13px;
    color: var(--text-dim);
}

.dl-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.dl-btn:hover {
    background: var(--primary-color);
    color: #000;
}


.seller-card {
    background: rgba(59, 130, 246, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 28px;
    padding: 40px;
    max-width: 800px;
}

.gen-controls {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.gen-field label {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.gen-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: 12px;
    color: #fff;
    outline: none;
}

.gen-btn {
    grid-column: span 3;
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 12px;
    transition: 0.3s;
}

.gen-btn:hover {
    background: #2563eb;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.result-key {
    margin-top: 32px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed var(--accent-color);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-family: monospace;
    font-size: 18px;
    color: var(--accent-color);
    display: none;
}


.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 48px;
    text-align: center;
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
}

.auth-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.auth-card p {
    color: var(--text-dim);
    margin-bottom: 32px;
    font-size: 15px;
}

.input-group {
    margin-bottom: 16px;
    position: relative;
    text-align: left;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 16px;
    pointer-events: none;
    transition: 0.3s ease;
}

.input-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 18px 14px 48px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.input-field:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

.input-field:focus+.input-icon {
    color: #fff;
}

.auth-btn {
    width: 100%;
    background: var(--primary-color);
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.auth-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
}

.auth-footer {
    margin-top: 24px;
    color: var(--text-dim);
    font-size: 14px;
}

.auth-footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
}

.auth-footer a:hover {
    color: var(--accent-color);
}

.background-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 1;
}

@media (max-width: 900px) {
    .sidebar {
        display: none;
    }

    .main-dash {
        padding: 40px 24px;
    }

    .gen-controls {
        grid-template-columns: 1fr;
    }

    .gen-btn {
        grid-column: span 1;
    }
}



.faq-divider {
    max-width: 1200px;
    margin: 80px auto 40px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02), transparent);
}

.faq {
    padding: 100px 40px 140px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq.active {
    opacity: 1;
    transform: translateY(0);
}

.faq-header {
    margin-bottom: 60px;
}

.faq-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 100px;
}

.faq-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.faq-item p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-header h2 {
        font-size: 36px;
    }
}


.site-footer {
    padding: 40px 40px 48px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.footer-copy {
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}




.dashboard-root {
    background: radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        #050505;
    min-height: 100vh;
    display: flex;
}


.sidebar {
    width: 280px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 24px;
    position: fixed;
    z-index: 100;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 60px;
    padding-left: 12px;
}

.sidebar-logo img {
    height: 32px;
}

.sidebar-logo span {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    color: var(--text-dim);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

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

.nav-link.active {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.2);
    transform: translateX(4px);
}


.tab-content {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.tab-content.active {
    display: block;
    pointer-events: all;
    animation: tabEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes tabEntrance {
    from {
        opacity: 0;
        transform: translateY(15px);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.sidebar-bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.user-profile-small {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar i {
    font-size: 18px;
    color: #fff;
}

.user-info-text {
    display: flex;
    flex-direction: column;
}

#side-username {
    font-size: 14px;
    font-weight: 600;
}

.user-plan {
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    color: #ef4444;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}


.main-dash {
    flex: 1;
    margin-left: 280px;
    padding: 60px;
}

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


.dash-welcome {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.welcome-text p {
    color: var(--text-dim);
    font-size: 16px;
    margin-bottom: 4px;
}

.welcome-text h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.pulse-icon {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}


.stats-overview {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 32px;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.stat-card-wide {
    display: flex;
    align-items: center;
    gap: 24px;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 24px;
    color: var(--primary);
}

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

.card-label {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 6px;
}

.card-value {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    word-break: break-all;
    filter: none !important; 
}

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

.stat-card i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
}

.card-value-small {
    font-size: 18px;
    font-weight: 600;
}


.settings-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.settings-panel {
    display: flex;
    flex-direction: column;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.panel-header i {
    font-size: 20px;
    color: var(--primary);
}

.panel-header h3 {
    font-size: 20px;
    font-weight: 600;
}

.panel-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.modern-input label {
    display: block;
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 10px;
    font-weight: 500;
}

.modern-input input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    border-radius: 16px;
    color: #fff;
    font-size: 15px;
    transition: 0.3s;
}

.modern-input input:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.panel-desc {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}


.dl-prof-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.dl-prof-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dl-prof-icon i {
    font-size: 24px;
    color: var(--primary);
}

.dl-prof-info {
    flex: 1;
}

.dl-prof-info h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.dl-prof-info p {
    font-size: 13px;
    color: var(--text-dim);
}


.primary-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.primary-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.05);
    cursor: not-allowed;
    transform: none;
}

.primary-btn.sm,
.secondary-btn.sm {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 12px;
}


.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal[style*="--delay: 1"] {
    transition-delay: 0.1s;
}

.reveal[style*="--delay: 2"] {
    transition-delay: 0.2s;
}

.reveal[style*="--delay: 3"] {
    transition-delay: 0.3s;
}

.reveal[style*="--delay: 4"] {
    transition-delay: 0.4s;
}


@media (max-width: 1100px) {
    .settings-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .sidebar {
        width: 80px;
        padding: 40px 10px;
    }

    .sidebar-logo span,
    .nav-link span,
    .user-info-text,
    .logout-btn span {
        display: none;
    }

    .nav-link,
    .logout-btn {
        justify-content: center;
        padding: 16px 0;
    }

    .main-dash {
        margin-left: 80px;
        padding: 40px 20px;
    }

    .welcome-text h1 {
        font-size: 28px;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .dash-welcome {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}




.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
}

.cart-drawer.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

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

.cart-header {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.close-cart {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
}

.close-cart:hover {
    opacity: 1;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.cart-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.02);
}

.item-details {
    flex: 1;
}

.item-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.item-details p {
    color: var(--text-dim);
    font-size: 14px;
}

.item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.qty-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
}

.remove-item {
    color: #ff4d4d;
    background: none;
    border: none;
    font-size: 12px;
    cursor: pointer;
    opacity: 0.7;
}

.remove-item:hover {
    opacity: 1;
    text-decoration: underline;
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent-color);
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.cart-badge.active {
    opacity: 1;
}

@media (max-width: 500px) {
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}




.add-to-cart-btn {
    flex: 1;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.add-to-cart-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}




.dashboard-root {
    background-color: #000 !important;
    color: #fff;
    min-height: 100vh;
}

.dash-master {
    padding-bottom: 100px;
}

.dash-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.dash-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    margin-bottom: 40px;
}

.dash-nav .logo {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dash-nav .nav-links {
    display: flex;
    gap: 40px;
}

.dash-nav .nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.dash-nav .nav-links a:hover {
    color: #fff;
}

.logout-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.logout-btn:hover {
    background: #fff;
    color: #000;
}

.dash-section {
    margin-bottom: 48px;
}

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    opacity: 0.8;
}

.dash-card {
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
}

.info-row {
    display: flex;
    gap: 8px;
    padding: 6px 0;
}

.info-row .label {
    color: var(--text-dim);
    font-size: 14px;
}

.info-row .value {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.info-row .value.mono {
    font-family: monospace;
    opacity: 0.7;
}


.version-num {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 4px;
}

.update-time {
    color: var(--text-dim);
    font-size: 13px;
}


.changelog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.changelog-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.v-tag {
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 6px;
}

.c-time {
    margin-left: 8px;
    font-weight: 400;
    color: var(--text-dim);
}

.changelog-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.c-item {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge {
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.badge.updated {
    background: rgba(234, 179, 8, 0.1);
    color: #eab308;
}

.badge.fixed {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.badge.improved {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.badge.note {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    opacity: 0.6;
}


.dash-action-btn {
    width: auto;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    border: none;
}

.dash-action-btn.primary-btn {
    background: #fff;
    color: #000;
}

.dash-action-btn:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .dash-container {
        padding: 0 20px;
    }

    .dash-nav .nav-links {
        display: none;
    }

    .changelog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}



.dash-card {
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-nav {
    max-width: 1300px;
    margin: 0 auto;
}