:root {
    --neon-blue: #00E5FF;
    --neon-pink: #FF007A;
    --neon-green: #00FF88;
    --dark-bg: #2a2a2a;
    --light-text: #ffffff;
    --medium-bg: #3a3a3a;
    --card-bg: #404040;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--dark-bg);
    color: var(--light-text);
    padding-top: 90px;
}

.navbar {
    background: rgba(42, 42, 42, 0.98);
    padding: 1rem 0;
    border-bottom: 1px solid var(--neon-green);
    min-height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(42, 42, 42, 0.95);
    padding: 0.5rem 0;
    min-height: 70px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

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

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

.navbar-nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    display: flex;
    align-items: center;
}

.navbar-brand {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue) !important;
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--neon-blue);
}

.nav-link {
    color: var(--light-text) !important;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    margin: 0 0.2rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 48px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--neon-green) !important;
    background: rgba(0, 255, 136, 0.1);
}

.search-box {
    position: relative;
    width: 300px;
    display: flex;
    align-items: center;
}

.search-box input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--light-text);
    padding-right: 40px;
    border-radius: 25px;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-box .search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--neon-green);
    padding: 5px 10px;
}

.cart-btn {
    background: transparent;
    border: 2px solid var(--neon-green);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    color: var(--light-text);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    min-width: 60px;
    gap: 0.5rem;
}

.cart-btn i {
    font-size: 1.1rem;
}

.cart-btn .snipcart-items-count {
    background: var(--neon-green);
    color: var(--dark-bg);
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 0.3rem;
}

.cart-btn .snipcart-items-count:empty {
    display: none;
}

.cart-btn:hover {
    background: var(--neon-green);
    color: var(--dark-bg);
    box-shadow: 0 0 15px var(--neon-green);
}

.breadcrumb {
  background: rgba(0, 255, 136, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

/* Footer Styles */
.footer {
    background: rgba(42, 42, 42, 0.95);
    border-top: 1px solid var(--neon-green);
}

.footer-heading {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--neon-green);
    transform: translateY(-50%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-green);
    padding-left: 20px;
}

.footer-links a:hover:before {
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

.company-info p {
    color: var(--light-text);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.company-info i {
    color: var(--neon-green);
    width: 24px;
    margin-right: 10px;
}

.footer-divider {
    border-color: rgba(0, 255, 136, 0.2);
    margin: 2rem 0;
}

.copyright {
    color: var(--light-text);
    margin: 0;
    opacity: 0.8;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    padding: 4rem 0;
    margin-bottom: 3rem;
    border-radius: 12px;
}

.contact-info-card {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid var(--neon-green);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.contact-info-card i {
    color: var(--neon-green);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-form {
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid var(--neon-blue);
    border-radius: 12px;
    padding: 2rem;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--light-text);
    border-radius: 8px;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 15px var(--neon-green);
}

.contact-map {
    border: 2px solid var(--neon-green);
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

/* Cookie Consent */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 37, 41, 0.95);
    color: white;
    padding: 1rem;
    z-index: 1000;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.accept-cookies {
    background: var(--neon-green);
    border: none;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-cookies:hover {
    box-shadow: 0 0 15px var(--neon-green);
}

.cookie-policy {
    color: var(--neon-green);
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.cookie-policy:hover {
    color: white;
    text-decoration: underline;
}

/* Thank You Page Styles */
.thank-you-content {
    padding: 3rem 0;
}

.thank-you-icon {
    color: var(--neon-green);
    font-size: 5rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.contact-card {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid var(--neon-green);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.contact-card i {
    color: var(--neon-green);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--neon-blue);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Product Page Styles */
.product-image-container {
    background: rgba(0, 229, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--neon-blue);
}

.product-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.02);
}

.product-title {
    color: var(--neon-blue);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 2rem;
    color: var(--neon-green);
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-description {
    color: var(--light-text);
    line-height: 1.6;
}

.product-features {
    background: rgba(0, 255, 136, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--neon-green);
}

.product-features h3 {
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-green);
}

.product-actions .btn-primary {
    background: var(--neon-green);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.product-actions .btn-primary:hover {
    background: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    margin-bottom: 4rem;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(255, 0, 122, 0.1));
}

.hero-section .carousel-inner {
    border-radius: 15px;
}

.hero-section .carousel-item img {
    height: 400px;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8);
    border-radius: 15px;
}

.hero-section .carousel-caption {
    background: rgba(42, 42, 42, 0.9);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--neon-green);
    backdrop-filter: blur(10px);
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
}

.hero-section .carousel-caption h1,
.hero-section .carousel-caption h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
    text-shadow: 0 0 20px var(--neon-blue);
    margin-bottom: 1rem;
}

.hero-section .carousel-caption p {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.hero-section .carousel-control-prev {
    left: 20px;
}

.hero-section .carousel-control-next {
    right: 20px;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    background: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 20px var(--neon-green);
}

.hero-section .carousel-indicators {
    bottom: 20px;
}

.hero-section .carousel-indicators [data-bs-target] {
    background-color: var(--neon-green);
    border-radius: 10px;
    width: 40px;
    height: 4px;
    transition: all 0.3s ease;
}

.hero-section .carousel-indicators .active {
    background-color: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

/* Categories Section Styles */
.categories-section {
    background: var(--medium-bg);
    padding: 4rem 0;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.categories-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
    text-shadow: 0 0 15px var(--neon-blue);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.category-card {
    background: var(--card-bg);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    border-color: var(--neon-blue);
}

.category-card img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-content {
    padding: 2rem;
}

.category-content h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--neon-blue);
}

.category-content p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-content .btn {
    background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-content .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--neon-green);
}

/* Featured Products Section */
.featured-products {
    background: var(--medium-bg);
    padding: 4rem 0;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.featured-products h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-pink);
    text-shadow: 0 0 15px var(--neon-pink);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--card-bg);
    border: 2px solid var(--neon-blue);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
    border-color: var(--neon-green);
}

.product-card .product-image {
    display: block;
    overflow: hidden;
}

.product-card .product-image img {
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.product-content h3 a {
    color: var(--neon-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-content h3 a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.product-content .price {
    font-size: 1.4rem;
    color: var(--neon-green);
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--neon-green);
}

.product-content .btn {
    background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.product-content .btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px var(--neon-green);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 229, 255, 0.1));
    padding: 4rem 0;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 1px solid var(--neon-green);
}

.newsletter-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid var(--neon-green);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--light-text);
    padding: 1rem 1.5rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: none;
    color: var(--light-text);
}

.newsletter-form .btn {
    background: var(--neon-green);
    border: none;
    padding: 1rem 2rem;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue);
}

/* Support Section */
.support-section {
    background: var(--medium-bg);
    padding: 4rem 0;
    border-radius: 15px;
    border: 1px solid var(--neon-pink);
}

.support-card {
    background: var(--card-bg);
    border: 2px solid var(--neon-blue);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.2);
    border-color: var(--neon-green);
}

.support-card i {
    font-size: 3rem;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    display: block;
    text-shadow: 0 0 15px var(--neon-green);
}

.support-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--neon-blue);
}

.support-card p {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

/* General button improvements */
.btn-primary {
    background: var(--neon-green) !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 0.7rem 1.5rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.btn-primary:hover {
    background: var(--neon-blue) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 0 20px var(--neon-blue) !important;
}

/* Navigation improvements */
.navbar-toggler {
    border: 2px solid var(--neon-green);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 10px var(--neon-green);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300FF88' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.d-flex {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.d-flex.me-3 {
    margin-right: 1rem !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 1rem;
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        text-align: left;
        justify-content: flex-start;
        border-radius: 8px;
        margin: 0.2rem 0;
    }
    
    .d-flex.me-3 {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .search-box {
        width: 100%;
    }
    
    .d-flex.align-items-center {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .hero-section .carousel-item img {
        height: 250px;
    }
    
    .hero-section .carousel-caption {
        padding: 1rem;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }
    
    .category-card img,
    .product-card .product-image img {
        height: 180px;
    }
    
    .categories-section h2,
    .featured-products h2 {
        font-size: 2rem;
    }
    
    .newsletter-content h2 {
        font-size: 1.8rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
        min-height: 70px;
    }
    
    .navbar.scrolled {
        padding: 0.3rem 0;
        min-height: 60px;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    body {
        padding-top: 80px;
    }
}
