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



*::-webkit-scrollbar {
    display: none !important;
}

* {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #121212;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: transparent !important;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    display: none !important;
}

html, body {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.navbar {
    padding: 24px 0;
    position: sticky;
    top: 0;
    background: #121212;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: auto;
    height: 90px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: #909090;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #aaff00;
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

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

.btn-primary,
.btn-secondary,
.btn-hero {
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary {
    background: #aaff00;
    color: #000000;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #a0a0a0;
    border: 1px solid #333;
}

.btn-secondary:hover {
    border-color: #a0a0a0;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-hero {
    background: #aaff00;
    color: #000000;
    padding: 16px 40px;
    font-size: 16px;
    margin-top: 32px;
}

.btn-hero:hover {
    transform: translateY(-2px);
}

/* User Menu Styles */
.user-menu {
    position: relative;
}

.user-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #333;
    background: transparent;
    color: #a0a0a0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-btn:hover {
    border-color: #a0a0a0;
    color: #ffffff;
    transform: translateY(-2px);
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow: hidden;
}

.dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: #909090;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.dropdown-item:hover {
    background: #252525;
    color: #ffffff;
}

.dropdown-item.logout-btn:hover {
    color: #ff4444;
}

.hero {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(50, 50, 50, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(50, 50, 50, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-right: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(170, 255, 0, 0.08);
    border: 1px solid rgba(170, 255, 0, 0.25);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: #aaff00;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-content h1 span {
    color: #aaff00;
    position: relative;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #ffffff;
}

.hero-description {
    font-size: 17px;
    color: #9a9a9a;
    max-width: 520px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat h3 {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
}

.stat p {
    font-size: 14px;
    color: #8a8a8a;
    font-weight: 500;
}

.shopping-bag-3d {
    width: 100%;
    max-width: 550px;
    height: auto;
    transform: perspective(1200px) rotateY(-20deg) rotateX(8deg);
    transition: transform 0.6s ease;
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    display: block;
}

.shopping-bag-3d:hover {
    transform: perspective(1200px) rotateY(-10deg) rotateX(5deg) scale(1.05);
}

@keyframes float {
    0%, 100% {
        transform: perspective(1200px) rotateY(-20deg) rotateX(8deg) translateY(0);
    }
    50% {
        transform: perspective(1200px) rotateY(-20deg) rotateX(8deg) translateY(-20px);
    }
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

.navbar.menu-open .nav-links,
.navbar.menu-open .nav-actions {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #121212;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    z-index: 1000;
}

.navbar.menu-open .nav-links {
    padding-top: 80px;
}

.navbar.menu-open .nav-links a {
    font-size: 20px;
}

.navbar.menu-open .nav-actions {
    padding-top: 20px;
}

@media (min-width: 1440px) {
    .hero .container {
        max-width: 1600px;
    }
    
    .hero-content h1 {
        font-size: 72px;
    }
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 54px;
    }
    
    .hero .container {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-description {
        margin: 0 auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: flex;
        justify-content: center;
    }
    
    .shopping-bag-3d {
        max-width: 400px;
        transform: perspective(1200px) rotateY(-10deg) rotateX(5deg);
    }
    
    .shopping-bag-3d:hover {
        transform: perspective(1200px) rotateY(-5deg) rotateX(2deg) scale(1.05);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .navbar {
        padding: 20px 0;
    }
    
    .nav-links,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo h1 {
        font-size: 22px;
    }
    
    .hero {
        padding: 50px 0 70px;
    }
    
    .hero-content h1 {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .btn-hero {
        padding: 14px 32px;
        font-size: 15px;
    }
    
    .hero-stats {
        gap: 25px;
        margin-top: 40px;
    }
    
    .stat h3 {
        font-size: 26px;
    }
    
    .stat p {
        font-size: 13px;
    }
    
    .shopping-bag-3d {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .navbar {
        padding: 16px 0;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 32px;
        letter-spacing: -0.5px;
    }
    
    .hero-badge {
        padding: 6px 16px;
        font-size: 11px;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 14px;
    }
    
    .hero-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .btn-hero {
        padding: 12px 28px;
        font-size: 14px;
        margin-top: 24px;
    }
    
    .hero-stats {
        gap: 20px;
        margin-top: 35px;
        flex-wrap: wrap;
    }
    
    .stat h3 {
        font-size: 24px;
    }
    
    .stat p {
        font-size: 12px;
    }
    
    .shopping-bag-3d {
        max-width: 260px;
        transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
    }
    
    .shopping-bag-3d:hover {
        transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) scale(1.05);
    }
}

@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat h3 {
        font-size: 22px;
    }
    
    .shopping-bag-3d {
        max-width: 220px;
    }
}

.logos-section {
    padding: 60px 0;
    background: #0f0f0f;
    overflow: hidden;
    position: relative;
}

.logos-section::before,
.logos-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.logos-section::before {
    left: 0;
    background: linear-gradient(to right, #0f0f0f, transparent);
}

.logos-section::after {
    right: 0;
    background: linear-gradient(to left, #0f0f0f, transparent);
}

.logos-container {
    overflow: hidden;
    position: relative;
}

.logos-track {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logos-track:hover {
    animation-play-state: paused;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: fit-content;
    padding: 0 10px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #666;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.logo-item:hover .logo-text {
    color: #aaff00;
}

@media (max-width: 1024px) {
    .logos-section {
        padding: 40px 0;
    }
    
    .logos-track {
        gap: 50px;
        animation-duration: 25s;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logos-section::before,
    .logos-section::after {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .logos-section {
        padding: 30px 0;
    }
    
    .logos-track {
        gap: 40px;
        animation-duration: 20s;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .logos-section::before,
    .logos-section::after {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .logos-track {
        gap: 30px;
        animation-duration: 18s;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .logos-section::before,
    .logos-section::after {
        width: 30px;
    }
}

.features-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.features-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: #ffffff;
}

.features-subtitle {
    font-size: 16px;
    text-align: center;
    color: #888;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-item.reversed {
    direction: rtl;
}

.feature-item.reversed .feature-content,
.feature-item.reversed .feature-image {
    direction: ltr;
}

.feature-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}

.feature-highlight {
    font-size: 16px;
    font-weight: 700;
    color: #aaff00;
    margin-bottom: 16px;
}

.feature-description {
    font-size: 15px;
    color: #999;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-features p {
    font-size: 14px;
    color: #888;
    margin: 8px 0;
}

.feature-features p strong {
    color: #fff;
}

.checkmark {
    margin-right: 8px;
    color: #aaff00;
    font-weight: bold;
    font-size: 18px;
}

.feature-image {
    position: relative;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333;
    overflow: hidden;
}

.feature-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    position: relative;
    z-index: 2;
    object-fit: contain;
}

.feature-image::before,
.feature-image::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
    animation: glow-pulse 4s ease-in-out infinite;
}

.feature-image::before {
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: rgba(170, 255, 0, 0.3);
}

.feature-image::after {
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: rgba(100, 200, 0, 0.25);
    animation-delay: 2s;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@media (max-width: 1024px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-grid {
        gap: 60px;
    }
    
    .feature-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-item.reversed {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 40px 0;
    }
    
    .features-title {
        font-size: 24px;
    }
    
    .features-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-highlight {
        font-size: 14px;
    }
    
    .feature-description {
        font-size: 14px;
    }
}

.faq-section {
    padding: 80px 0;
}

.faq-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 50px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #121212;
    border: 1px solid #252525;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #353535;
}

.faq-question {
    width: 100%;
    padding: 22px 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #1a1a1a;
}

.faq-item.active {
    border-color: #353535;
}

.faq-question-text {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 20px;
    color: #aaff00;
    transition: transform 0.3s ease;
    min-width: 28px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 350px;
    padding: 0 26px 26px 26px;
}

.faq-answer p {
    color: #999;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 28px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question-text {
        font-size: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 15px 20px;
    }
    
    .btn-test-notification {
        margin-left: 0;
        width: 100%;
        margin-top: 12px;
    }
}

/* Footer Styles */
.footer {
    background: #0a0a0a;
    padding: 60px 0 40px;
    border-top: 1px solid #151515;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.footer-logo-img {
    width: auto;
    height: 70px;
    margin-bottom: 16px;
    object-fit: contain;
}

.footer-desc {
    color: #666;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.footer-email {
    color: #666;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-email:hover {
    color: #aaff00;
}

.footer-heading {
    color: #888;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links li a {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s ease;
}

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

.footer-copyright-wrap {
    padding-top: 30px;
    border-top: 1px solid #151515;
}

.footer-copyright {
    color: #555;
    font-size: 11px;
    line-height: 1.4;
    text-align: left;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: #0f0f0f;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 100%;
    padding: 0 !important;
}

.product-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #aaff00;
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 200px;
    background: #222;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    margin-bottom: 15px;
}

.product-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.product-category {
    font-size: 12px;
    color: #aaff00;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-description {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-price {
    font-size: 24px;
    font-weight: 800;
    color: #aaff00;
    margin-bottom: 15px;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: #aaff00;
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: #88cc00;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    /* Center using flexbox */
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 20px;
    max-width: 420px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    /* Ensure proper box sizing */
    box-sizing: border-box;
    /* No absolute positioning - flexbox parent centers it */
    position: relative;
}

/* Cart Modal Specific */
.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: #2a2a2a;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-modal-header h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.cart-items-count {
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
}

.modal-content > p:first-of-type {
    color: #888;
    font-size: 14px;
    margin: 0 0 30px 0;
}

.cart-empty-container {
    text-align: center;
    padding: 30px 15px;
    background: #222;
    border-radius: 12px;
    border: 2px dashed #444;
}

.cart-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.cart-icon-wrapper svg {
    width: 40px;
    height: 40px;
    color: #888;
}

.cart-empty-title {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 10px 0;
}

.cart-empty-text {
    color: #888;
    font-size: 15px;
    margin: 0 0 30px 0;
}

.cart-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.cart-btn-primary {
    background: #fff;
    color: #000;
    padding: 12px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-btn-primary:hover {
    background: #e0e0e0;
    transform: translateY(-1px);
}

.cart-btn-secondary {
    background: #222;
    color: #fff;
    padding: 12px 32px;
    border: 1px solid #444;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-btn-secondary:hover {
    background: #333;
}

.cart-count-badge {
    display: inline-block;
    background: #222;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    float: right;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #888;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: #fff;
}

.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    background: #222;
    border: none;
    border-radius: 8px;
    color: #888;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #aaff00;
    color: #000;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.auth-form input {
    width: 100%;
    padding: 14px;
    background: #222;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    margin-bottom: 15px;
    font-size: 14px;
}

.auth-form input:focus {
    outline: none;
    border-color: #aaff00;
}

.otp-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.otp-section h4 {
    color: #fff;
    margin-bottom: 15px;
}

/* Cart Styles */
.cart-content {
    max-width: 600px;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: #0f0f0f;
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    border-radius: 12px;
    overflow: visible;
}

.product-card {
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-color: #333;
}

.product-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg,#0a0a0a 0%,#1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.9) 100%);
}

.product-info {
    padding: 20px;
}

.product-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.product-tag {
    background: #333;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.product-title {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    margin: 0;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.product-price {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    white-space: nowrap;
}

.product-actions {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 0;
}

.btn-view {
    flex: 1;
    padding: 14px 24px;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    color: #000;
    border: none;
    border-radius: 16px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255,255,255,0.1);
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.2);
}

.btn-cart {
    width: 52px;
    height: 52px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cart:hover {
    background: #aaff00;
    border-color: #aaff00;
    color: #000;
}

#cartItems {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #222;
    border-radius: 8px;
    margin-bottom: 10px;
}

.cart-item h4 {
    color: #fff;
    margin: 0;
}

.cart-item p {
    color: #aaff00;
    font-weight: 700;
    margin: 0;
}

.cart-total {
    padding: 20px 0;
    border-top: 1px solid #333;
    margin-bottom: 20px;
}

.cart-total strong {
    color: #fff;
    font-size: 20px;
}

/* Orders Section */
.orders-section {
    padding: 80px 0;
    background: #0f0f0f;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.page-header h1 span {
    color: #aaff00;
}

.page-header p {
    color: #888;
    font-size: 16px;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #888;
}

.empty-state h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #fff;
}

.empty-state p {
    font-size: 16px;
    margin-bottom: 30px;
}

.orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.order-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.order-card:hover {
    border-color: #444;
    transform: translateY(-5px);
}

.order-id {
    font-size: 14px;
    color: #888;
    margin-bottom: 12px;
}

.order-info p {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.order-status {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

.order-status.pending {
    background: #ffcc00;
    color: #000;
}

.order-status.accepted {
    background: #aaff00;
    color: #000;
}

.order-status.rejected {
    background: #ff4444;
    color: #fff;
}

.order-total {
    color: #aaff00;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
}

.order-actions {
    display: flex;
    gap: 10px;
}

.order-actions button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-chat {
    background: #4a9eff;
    color: #fff;
}

.btn-chat:hover {
    background: #3377dd;
}

/* Cart Button Styles */
.cart-btn {
    position: relative;
    padding: 0;
    background: transparent;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.cart-btn svg {
    width: 20px;
    height: 20px;
}

.cart-btn:hover {
    background: #222;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #aaff00;
    color: #000;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-small {
    padding: 6px 12px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-small:hover {
    background: #444;
}

/* Admin Panel Styles */
.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.chart-container {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 24px;
}

.chart-container h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-header-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.orders-table-container,
.users-table-container {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 24px;
    overflow-x: auto;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table thead {
    background: #222;
}

.orders-table th,
.orders-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.orders-table th {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.orders-table td {
    color: #ddd;
    font-size: 14px;
}

.status-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-pending {
    background: #ffcc00;
    color: #000;
}

.status-accepted {
    background: #aaff00;
    color: #000;
}

.status-rejected {
    background: #ff4444;
    color: #fff;
}

.btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-small {
    padding: 6px 12px;
    font-size: 12px;
    margin-right: 8px;
}

.btn-primary {
    background: #aaff00;
    color: #000;
}

.btn-primary:hover {
    background: #88cc00;
}

.btn-danger {
    background: #ff4444;
    color: #fff;
}

.btn-danger:hover {
    background: #dd3333;
}

.product-stock {
    color: #aaa;
    font-size: 13px;
    margin-bottom: 12px;
}

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

/* Dashboard Styles */
.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background: #1a1a1a;
    border-right: 1px solid #333;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.sidebar.collapsed {
    width: 80px;
}

.sidebar-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.sidebar-brand img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.sidebar.collapsed .sidebar-brand img {
    margin: 0 auto;
    display: block;
}

.sidebar-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.sidebar-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #888;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 24px;
    color: #888;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    width: 100%;
    cursor: pointer;
    text-align: left;
}

.sidebar-link:hover,
.sidebar-link.active {
    color: #fff;
    background: rgba(170, 255, 0, 0.1);
    border-left: 3px solid #aaff00;
}

.sidebar-icon {
    font-size: 20px;
    min-width: 20px;
}

.sidebar.collapsed .sidebar-text {
    display: none;
}

.sidebar.collapsed .sidebar-link {
    justify-content: center;
    padding: 14px 0;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid #333;
}

.sidebar-logout:hover {
    color: #ff4444 !important;
    border-left-color: #ff4444 !important;
}

.main-content {
    flex: 1;
    padding: 0;
    background: #0a0a0a;
}

.top-bar {
    background: #121212;
    padding: 24px 40px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.page-title span {
    color: #aaff00;
}

.user-role {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(170, 255, 0, 0.1);
    border: 1px solid #aaff00;
    color: #aaff00;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.dashboard-section {
    padding: 40px;
}

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

.stat-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #aaff00;
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(170, 255, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.stat-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px 0;
}

.stat-content p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

.section-header {
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px 0;
}

.section-header p {
    color: #888;
    margin: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.product-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #aaff00;
    transform: translateY(-8px);
}

.product-image {
    background: #222;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.product-content {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: #aaff00;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-name {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px 0;
}

.product-desc {
    color: #888;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 24px;
    font-weight: 800;
    color: #aaff00;
}

.btn-buy {
    padding: 10px 24px;
    background: #aaff00;
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    background: #88cc00;
    transform: scale(1.05);
}

.btn-full {
    width: 100%;
}

.modal-product {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    background: #222;
    border-radius: 12px;
}

.modal-product-emoji {
    font-size: 48px;
}

.modal-product-details h3 {
    margin: 0 0 4px 0;
    color: #fff;
    font-size: 20px;
}

.modal-product-price {
    margin: 0;
    color: #aaff00;
    font-size: 24px;
    font-weight: 800;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #222;
    border: 1px solid #444;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #aaff00;
}

.form-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 16px;
    background: #222;
    border-radius: 10px;
    font-weight: 700;
}

.total-price {
    color: #aaff00;
    font-size: 24px;
}

/* Charts Grid Styles */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #333;
}

.section-header h2 {
    color: #fff;
    font-size: 24px;
    margin: 0;
}

.chart-select {
    background: #222;
    color: #fff;
    border: 1px solid #444;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.chart-container {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 24px;
}

.chart-container h3 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.chart-wide {
    grid-column: span 2;
}

@media (max-width: 1024px) {
    .charts-grid {
        grid-template-columns: 1fr;
    }
    .chart-wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .dashboard-wrapper {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #333;
    }
    
    .sidebar.collapsed {
        width: 100%;
    }
    
    .sidebar-nav {
        display: flex;
        overflow-x: auto;
        padding: 10px 0;
    }
    
    .sidebar-link {
        flex-shrink: 0;
        padding: 12px 20px;
    }
    
    .top-bar {
        padding: 20px;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .dashboard-section {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Nav Actions Updates */
.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}



@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand-col {
        grid-column: span 1;
    }
}
