/* General Variables */
:root {
    --neon-blue: #00eaff;
    --neon-green: #00ffb7;
    --neon-purple: #a259ff;
    --neon-pink: #ff4fd8;
    --bg-dark: #0a0a23;
    --bg-card: #181840;
    --text-main: #fff;
    --text-muted: #b3b3b3;
}

body {
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Rajdhani', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* HEADER EXACT STYLES */
.header-exact {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    background: #0a0a23;
    box-shadow: 0 2px 8px #00eaff22;
    border-bottom: 1.5px solid #1a1a40;
    font-family: 'Rajdhani', Arial, sans-serif;
}
.header-row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 1.5rem;
}
.header-logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.header-logo-exact {
    width: 160px;
    height: auto;
    display: block;
}
.header-nav-exact {
    display: none;
}
@media (min-width: 900px) {
    .header-nav-exact {
        display: flex;
        gap: 2.5rem;
        align-items: center;
    }
}
.nav-link-exact {
    position: relative;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    font-size: 1.15rem;
    text-decoration: none;
    transition: color 0.2s;
    padding: 0.2rem 0;
}
.nav-link-exact.active,
.nav-link-exact:hover,
.nav-link-exact:focus {
    color: #00eaff;
}
.nav-link-exact::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00eaff, #a259ff);
    transition: width 0.3s;
    border-radius: 2px;
}
.nav-link-exact.active::after,
.nav-link-exact:hover::after,
.nav-link-exact:focus::after {
    width: 100%;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.register-btn-exact {
    display: none;
    padding: 0.6rem 1.5rem;
    border-radius: 0.7rem;
    background: #00eaff;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 0 8px #00eaff, 0 0 16px #00eaff44;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
}
.register-btn-exact:hover {
    background: #a259ff;
    box-shadow: 0 0 8px #a259ff, 0 0 16px #a259ff44;
}
@media (min-width: 900px) {
    .register-btn-exact {
        display: inline-block;
    }
}
.cart-link-exact {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.cart-icon-exact {
    width: 28px;
    height: 28px;
    color: #00eaff;
    filter: drop-shadow(0 0 6px #00eaff);
    transition: color 0.2s;
}
.cart-link-exact:hover .cart-icon-exact {
    color: #a259ff;
}
.cart-badge-exact {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #a259ff;
    color: #fff;
    font-size: 0.85rem;
    font-weight: bold;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    box-shadow: 0 0 8px #a259ff, 0 0 16px #a259ff44;
    animation: pulse 1.5s infinite;
    pointer-events: none;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.user-link-exact {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.user-icon-exact {
    width: 28px;
    height: 28px;
    color: #00eaff;
    filter: drop-shadow(0 0 6px #00eaff);
    transition: color 0.2s;
}
.user-link-exact:hover .user-icon-exact {
    color: #a259ff;
}
.hamburger-exact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
    margin-left: 0.5rem;
}
.hamburger-icon-exact {
    width: 28px;
    height: 28px;
    color: #00eaff;
    filter: drop-shadow(0 0 6px #00eaff);
}
@media (min-width: 900px) {
    .hamburger-exact {
        display: none;
    }
}
@media (max-width: 899px) {
    .header-nav-exact {
        display: none;
    }
    .register-btn-exact {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    background: url('/images/hero-image.png') center/cover no-repeat;
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: #000a;
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1rem 0 1rem;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-blue);
    margin-bottom: 1rem;
    text-shadow: 0 0 8px var(--neon-blue), 0 0 16px #00eaff44;
}
.hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}
@media (min-width: 600px) {
    .hero-buttons {
        flex-direction: row;
    }
}
.btn {
    display: inline-block;
    padding: 0.75rem 2.5rem;
    border-radius: 0.7rem;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 8px var(--neon-blue), 0 0 16px #00eaff44;
}
.btn-neon-blue {
    background: var(--neon-blue);
    color: #fff;
}
.btn-neon-blue:hover {
    background: var(--neon-green);
    color: #181840;
    box-shadow: 0 0 8px var(--neon-green), 0 0 16px #00ffb744;
}
.btn-neon-purple {
    background: var(--neon-purple);
    color: #fff;
    box-shadow: 0 0 8px var(--neon-purple), 0 0 16px #a259ff44;
}
.btn-neon-purple:hover {
    background: var(--neon-blue);
    color: #fff;
    box-shadow: 0 0 8px var(--neon-blue), 0 0 16px #00eaff44;
}
.btn-neon-green {
    background: var(--neon-green);
    color: #181840;
    box-shadow: 0 0 8px var(--neon-green), 0 0 16px #00ffb744;
}
.btn-neon-green:hover {
    background: var(--neon-blue);
    color: #fff;
    box-shadow: 0 0 8px var(--neon-blue), 0 0 16px #00eaff44;
}

/* Category Section */
.category-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem 2rem 1rem;
}
.section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Rajdhani', Arial, sans-serif;
}
.neon-blue { color: var(--neon-blue); }
.neon-green { color: var(--neon-green); }
.neon-purple { color: var(--neon-purple); }
.neon-pink { color: var(--neon-pink); }
.category-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 700px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.category-card {
    background: var(--bg-card);
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 0 8px #00eaff44;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, border 0.2s;
    text-decoration: none;
    cursor: pointer;
}
.category-card:hover {
    transform: scale(1.05);
    border-color: var(--neon-blue);
    z-index: 2;
}
.category-card.neon-green:hover { border-color: var(--neon-green); }
.category-card.neon-purple:hover { border-color: var(--neon-purple); }
.category-img {
    width: 100%;
    max-width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 2rem 0 1rem 0;
}
.category-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Featured Products Section */
.featured-section {
    padding: 4rem 1.5rem;
    text-align: center;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.featured-card {
    background: #181840;
    border-radius: 1.2rem;
    box-shadow: 0 0 8px #a259ff44;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem 2rem 1rem;
    transition: transform 0.2s, border 0.2s, box-shadow 0.2s;
}

.featured-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px var(--neon-purple-glow);
}

.featured-card img {
    width: 100%;
    max-width: 160px;
    height: 160px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 0.7rem;
}

.featured-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
    text-align: center;
    flex-grow: 1;
}

.featured-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.btn-add-cart {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: var(--neon-green);
    color: black;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: white;
    box-shadow: 0 0 12px var(--neon-green-glow);
}

/* Why Choose Us Section */
.why-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1rem 2rem 1rem;
}
.why-desc {
    text-align: center;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 700px) {
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.why-card {
    background: var(--bg-card);
    border-radius: 1.2rem;
    box-shadow: 0 0 8px #a259ff44;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    transition: border 0.2s;
}
.why-card:hover {
    border-color: var(--neon-purple);
}
.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px var(--neon-blue), 0 0 16px #00eaff44;
}
.why-icon.neon-green { text-shadow: 0 0 8px var(--neon-green), 0 0 16px #00ffb744; }
.why-icon.neon-purple { text-shadow: 0 0 8px var(--neon-purple), 0 0 16px #a259ff44; }
.why-icon.neon-pink { text-shadow: 0 0 8px var(--neon-pink), 0 0 16px #ff4fd844; }
.why-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

/* Blog Section */
.blog-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem 2rem 1rem;
}
.blog-desc {
    text-align: center;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    /* max-width: 900px; */
    margin: 0 auto;
}
@media (min-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.blog-card {
    background: var(--bg-card);
    border-radius: 1.2rem;
    box-shadow: 0 0 8px #00ffb744;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem 2rem 1rem;
    transition: border 0.2s, transform 0.2s;
}
.blog-card:hover {
    border-color: var(--neon-green);
    transform: scale(1.05);
    z-index: 2;
}
.blog-img {
    width: 100%;
    max-width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 1rem 1rem 0 0;
    margin-bottom: 1rem;
}
.blog-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    text-align: center;
}
.blog-excerpt {
    color: #fff;
    opacity: 0.8;
    font-size: 0.98rem;
    margin-bottom: 1rem;
    text-align: center;
}
.blog-btn {
    margin-top: auto;
    font-size: 0.95rem;
    padding: 0.5rem 1.5rem;
}
.blog-viewall {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Reviews Section */
.reviews-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1rem 2rem 1rem;
}
.reviews-desc {
    text-align: center;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 900px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.review-card {
    background: var(--bg-card);
    border-radius: 1.2rem;
    box-shadow: 0 0 8px #a259ff44;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    transition: border 0.2s;
}
.review-card:hover {
    border-color: var(--neon-purple);
}
.review-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 0 8px var(--neon-blue);
}
.review-name {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
}
.review-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}
.review-text {
    color: #fff;
    opacity: 0.8;
    font-size: 0.98rem;
    text-align: center;
}

/* Contact Section */
.contact-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 1rem 2rem 1rem;
}
.contact-desc {
    text-align: center;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
.contact-form {
    background: var(--bg-card);
    border-radius: 1.2rem;
    box-shadow: 0 0 8px #00eaff44;
    border: 2px solid var(--neon-blue);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contact-label {
    color: var(--neon-blue);
    font-weight: bold;
    margin-bottom: 0.2rem;
}
.contact-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: #22224a;
    border: 2px solid var(--neon-blue);
    color: #fff;
    font-family: 'Rajdhani', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: border 0.2s, box-shadow 0.2s;
}
.contact-input:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
}
.contact-btn {
    margin-top: 0.5rem;
    width: 100%;
}

/* Footer */
.footer {
    width: 100%;
    background: #181840;
    color: #00eaff;
    text-align: center;
    padding: 2rem 0 1rem 0;
    font-size: 1rem;
    font-family: 'Rajdhani', Arial, sans-serif;
    margin-top: 2rem;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Tweaks */
@media (max-width: 700px) {
    .section-title {
        font-size: 1.3rem;
    }
    .category-title, .product-name, .blog-title, .why-text, .review-name {
        font-size: 1rem;
    }
    .product-img, .blog-img {
        max-width: 100px;
        height: 100px;
    }
    .review-avatar {
        width: 48px;
        height: 48px;
    }
    .featured-section, .category-section, .why-section, .blog-section, .reviews-section, .contact-section {
        padding: 2rem 0.5rem 1rem 0.5rem;
    }
} 

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80vw;
    max-width: 350px;
    background: #181840;
    box-shadow: -4px 0 24px #00eaff44;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 1.5rem;
    padding-right: 1rem;
    pointer-events: none;
}
.mobile-menu-drawer.open {
    transform: translateX(0);
    pointer-events: auto;
}
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
}
.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu-close {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-bottom: 1rem;
    margin-right: 0.5rem;
    transition: background 0.2s;
}
.mobile-menu-close:focus {
    outline: 2px solid #00eaff;
}
.mobile-menu-close-icon {
    width: 32px;
    height: 32px;
    color: #00eaff;
    filter: drop-shadow(0 0 6px #00eaff);
}
.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    margin-top: 3rem;
}
.nav-link-mobile {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    padding: 0.5rem 0;
    text-decoration: none;
    transition: color 0.2s;
}
.nav-link-mobile:hover, .nav-link-mobile:focus {
    color: #00eaff;
}
.register-btn-mobile {
    display: block;
    width: 75%;
    text-align: center;
    padding: 0.8rem 0;
    border-radius: 0.7rem;
    background: #00eaff;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 0 8px #00eaff, 0 0 16px #00eaff44;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: background 0.2s, box-shadow 0.2s;
}
.register-btn-mobile:hover {
    background: #a259ff;
    box-shadow: 0 0 8px #a259ff, 0 0 16px #a259ff44;
}
@media (min-width: 900px) {
    .mobile-menu-drawer, .mobile-menu-overlay {
        display: none !important;
    }
} 

.reviews-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.slider-arrow {
    background: #00eaff;
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 0 8px #00eaff, 0 0 16px #00eaff44;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.slider-arrow:hover {
    background: #a259ff;
    box-shadow: 0 0 8px #a259ff, 0 0 16px #a259ff44;
}
.slider-arrow-left {
    left: 0;
}
.slider-arrow-right {
    right: 0;
}
.reviews-slider-inner {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    position: relative;
}
@media (max-width: 700px) {
    .slider-arrow {
        font-size: 1.3rem;
        width: 36px;
        height: 36px;
    }
    .reviews-slider-inner {
        min-height: 220px;
    }
} 

.contact-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.contact-modal.open {
    display: flex;
}
.contact-modal-content {
    background: #181840;
    border: 2px solid #00eaff;
    box-shadow: 0 0 16px #00eaff44, 0 0 8px #a259ff44;
    border-radius: 1.2rem;
    padding: 2.5rem 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-modal-title {
    color: #00ffb7;
    font-weight: bold;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}
.contact-modal-desc {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1rem;
}
.contact-modal-close {
    width: 100%;
    margin-top: 0.5rem;
}
@media (max-width: 600px) {
    .contact-modal-content {
        padding: 1.5rem 0.5rem;
    }
} 