/* ===== BASE STYLES ===== */
:root {
    --primary: #00aaff; /* Vibrant Blue */
    --primary-dark: #0088cc;
    --secondary: #00f5d4; /* Bright Cyan */
    --dark: #0f172a; /* Dark Slate Blue */
    --darker: #020617; /* Very Dark Blue */
    --light: #e2e8f0; /* Light Grayish Blue */
    --gray: #475569; /* Slate Gray */
    --light-gray: #94a3b8; /* Lighter Slate Gray */
    --border: #334155; /* Border Color */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

a {
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

/* ===== RUNNING HEADLINE SECTION ===== */
.running-headline {
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    border: none;
    border-radius: 50px;
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.3);
    margin: 100px 30px 0 30px;
    z-index: 999;
    transform: skew(-2deg);
}

.running-headline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
    border-radius: 50px;
}

.headline-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.headline-text {
    display: inline-block;
    animation: scroll-left 14s linear infinite;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    padding: 0 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transform: skew(2deg);
}

.headline-text span {
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

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

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}


/* Responsive design for mobile */
@media (max-width: 768px) {
    .headline-text {
        font-size: 16px;
    }
}

/* ===== UPCOMING SERIES SECTION ===== */
.upcoming-series {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.upcoming-series::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 170, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.series-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.series-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00aaff, #00f5d4, #ffffff, #00aaff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    margin-bottom: 40px;
    text-shadow: 0 0 30px rgba(0, 170, 255, 0.5);
    letter-spacing: 3px;
}

.video-preview {
    margin-top: 30px;
}

.video-btn {
    background: linear-gradient(135deg, #ff0066, #ff3399, #ff0066);
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.video-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 102, 0.6);
}

.video-btn i {
    margin-right: 10px;
    font-size: 20px;
    animation: bounce 2s infinite;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: glow-sweep 2s infinite;
}

/* ===== VIDEO MODAL ===== */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: modalSlideIn 0.5s ease-out;
}

.close-video {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.close-video:hover {
    color: #ff0066;
}

#promoVideo {
    width: 100%;
    height: auto;
    border-radius: 15px;
    outline: none;
}

/* ===== ANIMATIONS ===== */
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

@keyframes glow-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== LEARN ABOUT US BUTTON ===== */
.info-actions {
    margin-top: 20px;
}

.learn-btn {
    background: linear-gradient(135deg, #00bfff, #0078ff);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.learn-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.4);
    background: linear-gradient(135deg, #22c1ff, #2094ff);
}

.learn-btn i {
    margin-right: 8px;
    font-size: 14px;
}

/* ===== INFO MODAL ===== */
.info-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.info-modal-content {
    position: relative;
    margin: 3% auto;
    width: 90%;
    max-width: 700px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: modalSlideIn 0.5s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

.close-info {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.close-info:hover {
    color: #00bfff;
}

.info-body {
    color: #ffffff;
    line-height: 1.8;
}

.info-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00bfff;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.info-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff6b6b;
    margin-bottom: 15px;
    margin-top: 10px;
}

.info-body p {
    margin-bottom: 15px;
    font-size: 1rem;
    text-align: justify;
}

.info-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #00bfff, transparent);
    margin: 25px 0;
    border-radius: 1px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.info-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #00ff88;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .series-title {
        font-size: 2rem;
    }
    
    .video-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .video-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .learn-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .info-modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 20px;
    }
    
    .info-title {
        font-size: 1.5rem;
    }
    
    .info-subtitle {
        font-size: 1.1rem;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid transparent;
    border-radius: 0;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    justify-items: center;
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--light);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--light);
    transition: var(--transition);
    z-index: -1;
}

.btn-outline:hover {
    color: var(--dark);
}

.btn-outline:hover::before {
    left: 0;
}

.btn-icon {
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(5, 5, 5, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 2rem;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-left: -1rem;
    background: linear-gradient(45deg, #ff6b9d, #ff8fab, #ffb3c1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(255, 107, 157, 0.6);
}

.logo span {
    color: transparent;
    background: linear-gradient(45deg, #ff6b9d, #ff8fab, #ffb3c1);
    -webkit-background-clip: text;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ===== STYLISH CART ICON ===== */
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(0, 255, 204, 0.1));
    border: 2px solid rgba(255, 51, 102, 0.3);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.2);
}

.cart-icon:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.2), rgba(0, 255, 204, 0.2));
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.4);
}

/* ===== STYLISH USER ICON ===== */
.user-profile,
.nav-icons a[href="login.php"] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(0, 255, 204, 0.1));
    border: 2px solid rgba(255, 51, 102, 0.3);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.2);
}

.user-profile:hover,
.nav-icons a[href="login.php"]:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.2), rgba(0, 255, 204, 0.2));
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.4);
}

.nav-icons .fa-user {
    font-size: 1.4rem;
    color: var(--light);
}

.cart-icon i {
    font-size: 1.2rem;
    color: var(--light);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

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

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    border: 2px solid var(--dark);
    box-shadow: 0 3px 10px rgba(255, 51, 102, 0.5);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.cart-count:empty {
    display: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(255, 51, 102, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 5px 15px rgba(255, 51, 102, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(255, 51, 102, 0.5);
    }
}

/* Cart icon active state when cart has items */
.cart-icon.has-items {
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.15), rgba(0, 255, 204, 0.15));
    border-color: var(--secondary);
    animation: cartGlow 3s ease-in-out infinite alternate;
}

@keyframes cartGlow {
    from {
        box-shadow: 0 4px 15px rgba(255, 51, 102, 0.2);
    }
    to {
        box-shadow: 0 4px 20px rgba(0, 255, 204, 0.3);
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

/* Mobile cart icon adjustments */
@media (max-width: 768px) {
    .cart-icon {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(0, 255, 204, 0.1));
        border: 2px solid rgba(34, 193, 255, 0.3);
        border-radius: 12px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(73, 115, 255, 0.2);
    }
    
    .cart-icon i {
        font-size: 1.1rem;
    }
    
    .cart-count {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
        top: -6px;
        right: -6px;
    }
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--light);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */


.hero .btn-outline {
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--light);
    position: relative;
    overflow: hidden;
}

.hero .btn-outline:hover {
    color: var(--dark);
    background-color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.scroll-down:hover {
    opacity: 1;
}

.scroll-down span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--light), transparent);
    animation: scrollDown 2s infinite;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 51, 102, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 51, 102, 0.8);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(30px);
        opacity: 0;
    }
}

/* ===== FEATURED PRODUCTS ===== */
.featured {
    padding: 8rem 0;
    background-color: var(--darker);
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 51, 102, 0.3);
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    background-color: transparent;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    background-color: transparent;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
    opacity: 0.9;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: var(--transition);
    gap: 1rem;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.price {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    padding: 6rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    text-shadow: 0 0 20px rgba(255, 51, 102, 0.5);
}

.newsletter p {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form .btn {
    padding: 1rem 2.5rem;
    white-space: nowrap;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--darker);
    color: var(--light-gray);
    padding: 5rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-section h3 {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-section a {
    display: block;
    color: var(--light-gray);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--light-gray);
    margin-top: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--light-gray);
}

.legal-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--light-gray);
    font-size: 0.8rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--primary);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--darker);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transition: var(--transition);
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        padding: 1.5rem;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Header scroll effect - Moved to HTML file */

/* ===== PRODUCTS PAGE ===== */
.products-page {
    padding: 120px 0 60px;
    min-height: 100vh;
}

/* ===== CART SECTION ===== */
.cart-section {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    margin: 3rem auto 0 auto;
    padding: 2rem 2rem 1.5rem 2rem;
    max-width: 600px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    color: var(--light);
}
.cart-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: center;
}
.cart-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cart-item:last-child {
    border-bottom: none;
}
.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    background: #222;
    border: 1px solid rgba(255,255,255,0.04);
}
.cart-item-info {
    flex: 1;
}
.cart-item-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light);
}
.cart-item-price {
    font-size: 1rem;
    color: var(--secondary);
    margin: 0.2rem 0;
}
.cart-item-qty {
    font-size: 0.9rem;
    color: var(--light-gray);
}
.empty-cart {
    text-align: center;
    color: var(--light-gray);
    margin: 2rem 0;
}
.ordernow-btn {
    width: 100%;
    margin-top: 2rem;
    background: var(--primary);
    color: var(--light);
    border: none;
    padding: 1rem 0;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 10px rgba(255,51,102,0.08);
    cursor: pointer;
}
.ordernow-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}


.page-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--light);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* Filters */
.filters {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.filter-select {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    min-width: 200px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 51, 102, 0.2);
}

/* General Button Styles */
.btn-next {
    background-color: #00aaff; /* Matching blue for next button */
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.btn-next:hover {
    background-color: #0088cc; /* Darker blue on hover */
}

/* Search Container */
.search-container {
    display: flex;
    max-width: 400px;
    width: 100%;
    margin: 0 1rem;
}

.search-container input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    color: var(--light);
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    border-radius: 4px 0 0 4px;
    transition: var(--transition);
}

.search-container input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 51, 102, 0.2);
}

.search-container button {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--light);
    padding: 0 1.5rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-container button:hover {
    background: var(--primary-dark);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background-color: var(--darker);
    margin: 5% auto;
    padding: 2rem;
    max-width: 900px;
    width: 90%;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-product {
    display: flex;
    gap: 2rem;
}

.modal-product-image {
    flex: 1;
    min-width: 300px;
}

.modal-product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.modal-product-details {
    flex: 1;
    color: var(--light);
}

.modal-product-details h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.modal-price {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.modal-description {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-actions .btn {
    flex: 1;
    text-align: center;
    padding: 1rem;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-details-btn {
    background: var(--primary);
    color: var(--light);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-details-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.product-info {
    padding: 0.5rem;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--light);
    font-family: 'Orbitron', sans-serif;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.8rem;
    margin-top: 0.5rem;
    text-shadow: 0 0 8px var(--primary);
}

.product-description {
    color: var(--light-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.add-to-cart-btn {
    width: 100%;
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
    padding: 0.8rem 1rem;
    border-radius: 6px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-to-cart-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.add-to-cart-btn.large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.buy-now-btn {
    background: var(--secondary);
    color: var(--dark);
    border: 2px solid var(--secondary);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.buy-now-btn:hover {
    background: transparent;
    color: var(--secondary);
    transform: translateY(-2px);
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background-color: var(--darker);
    margin: 2% auto;
    padding: 2rem;
    max-width: 1000px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    animation: modalFadeIn 0.3s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.close-modal:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-product {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.modal-product-image {
    flex: 0 0 400px;
    max-width: 400px;
}

.modal-product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.modal-product-details {
    flex: 1;
    color: var(--light);
}

.modal-product-details h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--light);
    font-family: 'Orbitron', sans-serif;
}

.modal-price {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.modal-description {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.specifications, .features {
    margin-bottom: 2rem;
}

.specifications h3, .features h3 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.specifications ul, .features ul {
    list-style: none;
    padding: 0;
}

.specifications li, .features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
}

.specifications li:last-child, .features li:last-child {
    border-bottom: none;
}

.specifications li strong {
    color: var(--light);
    margin-right: 0.5rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-actions button {
    flex: 1;
    max-width: 200px;
}

/* ===== NOTIFICATIONS ===== */
.notification {
    position: fixed;
    top: 100px;
    right: -400px;
    background: var(--darker);
    color: var(--light);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    z-index: 3000;
    transition: all 0.3s ease;
    min-width: 300px;
}

.notification.show {
    right: 20px;
}

.notification.success {
    border-left-color: var(--secondary);
}

.notification i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* ===== RESPONSIVE MODAL ===== */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        padding: 1.5rem;
        width: 95%;
    }
    
    .modal-product {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .modal-product-image {
        flex: none;
        max-width: 100%;
    }
    
    .modal-product-details h2 {
        font-size: 1.8rem;
    }
    
    .modal-price {
        font-size: 1.6rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions button {
        max-width: 100%;
    }
    
    .notification {
        right: -350px;
        min-width: 280px;
    }
    
    .notification.show {
        right: 10px;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--light);
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    z-index: 1001;
}

.close-modal:hover {
    color: var(--primary);
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
        margin-bottom: 2rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
    }

@media (max-width: 768px) {
    .filters {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .search-container {
        max-width: 100%;
        margin: 1rem 0;
    }
    
    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }
    
    .modal-product-image {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .modal-content {
        padding: 1rem;
    }
    
    .modal-product-details h2 {
        font-size: 1.5rem;
    }
    
    .modal-price {
        font-size: 1.5rem;
    }
}