* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #010020;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 200, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 255, 200, 0.025) 0%, transparent 50%);
    animation: bgPulse 15s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 200, 0.015) 2px, rgba(0, 255, 200, 0.015) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 255, 200, 0.015) 2px, rgba(0, 255, 200, 0.015) 4px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #0b1d1b00;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    width: 100%;
    position: sticky;
    top: 20px;
    z-index: 100;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    transition: right 0.4s ease;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sidebar.active {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 50px;
    color: white;
    cursor: pointer;
    font-weight: 300;
}

.nav-links {
    list-style: none;
    text-align: center;
}

.nav-links li {
    margin: 30px 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 32px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    .logo {
        font-size: 24px;
    }
}

.logo {
    color: #ffffff;
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 23%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    .logo span {
        font-size: 16px;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
}


.no-select {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 1px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 255, 0.6);
    border-radius: 1px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 255, 0.8);
    background-clip: padding-box;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    color: #e7fbff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cart-icon svg {
    width: 24px;
    height: 24px;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(90deg, #00ffc8, #00ff88);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.cart-count.hidden {
    display: none;
}

.cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background-color: rgba(0, 15, 20, 0);
    backdrop-filter: blur(20px);
    z-index: 300;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.cart-modal.active {
    right: 0;
}

.cart-modal-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 200, 0.2);
    margin-bottom: 20px;
}

.cart-header h2 {
    color: #e7fbff;
    font-size: 24px;
    font-weight: 600;
}

.cart-close {
    background: none;
    border: none;
    color: #e7fbff;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.cart-close:hover {
    color: #00ffc8;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.empty-cart {
    color: rgba(231, 251, 255, 0.6);
    text-align: center;
    padding: 40px 20px;
    font-size: 16px;
}

.cart-item {
    background: rgba(0, 0, 0, 0.199);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    backdrop-filter: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: contain;
    padding: 5px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    color: #e7fbff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-brand {
    color: rgba(231, 251, 255, 0.6);
    font-size: 12px;
    margin-bottom: 8px;
}

.cart-item-price {
    color: #00ffc8;
    font-size: 18px;
    font-weight: 700;
}

.cart-item-remove {
    background: rgba(255, 0, 0, 0.2);
    border: none;
    color: #ff4444;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: rgba(255, 0, 0, 0.3);
}

.cart-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 200, 0.2);
    margin-top: auto;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: #e7fbff;
    font-size: 18px;
}

.total-price {
    font-size: 24px;
    font-weight: 700;
    color: #00ffc8;
}

.pay-now-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, #00ffc8, #00ff88);
    border: none;
    border-radius: 10px;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 200, 0.3);
}

.pay-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 200, 0.5);
}

.pay-now-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cart-modal {
        max-width: 100%;
    }
    
    .nav-right {
        gap: 15px;
    }
    
    .cart-icon svg {
        width: 22px;
        height: 22px;
    }
}






.footer {
    background: linear-gradient(145deg, #00071d, #001a1f);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(0, 255, 200, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e7fbff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-logo-image {
    width: 40px;
    height: 40px;
    border-radius: 23%;
    object-fit: cover;
}

.footer-description {
    color: rgba(240, 240, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-title {
    color: var(--light);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    color: rgba(240, 240, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(240, 240, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact li svg {
    color: var(--primary);
    flex-shrink: 0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px 0;
    border-top: 1px solid rgba(0, 255, 200, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(240, 240, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(0, 255, 200, 0.1);
    border: 1px solid rgba(0, 255, 200, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(240, 240, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(0, 255, 200, 0.2);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 200, 0.3);
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 30px;
    }
    
    .footer-bottom {
        padding: 20px 30px 0;
    }
}

@media (max-width: 768px) {
    .footer {
        margin-top: 40px;
        padding: 30px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .footer-logo {
        font-size: 18px;
    }
    
    .footer-logo-image {
        width: 35px;
        height: 35px;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-links li a,
    .footer-contact li {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding: 20px 20px 0;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .footer {
        margin-top: 30px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-logo {
        font-size: 16px;
    }
    
    .footer-description,
    .footer-links li a,
    .footer-contact li {
        font-size: 0.8rem;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
    }
    
    .footer-social a svg {
        width: 16px;
        height: 16px;
    }
}