:root {
    --electric-blue: #007BFF;
    --neon-green: #32FF7E;
    --space-gray: #1A1A1A;
    --off-white: #F5F5F7;
    --jet-black: #121212;
    --cool-gray: #A0A0A0;
    --cyber-red: #FF3B30;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--off-white);
    color: var(--jet-black);
    line-height: 1.6;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    color: var(--cool-gray);
}

.electric-blue {
    color: var(--electric-blue);
}

.neon-green {
    color: var(--neon-green);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--electric-blue);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn.primary {
    background-color: var(--electric-blue);
    color: white;
}

.btn.primary:hover {
    background-color: #0069d9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn.outline {
    background-color: transparent;
    border-color: var(--electric-blue);
    color: var(--electric-blue);
}

.btn.outline:hover {
    background-color: var(--electric-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn.small {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Header */
.header {
    background-color: var(--space-gray);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav ul li a:hover, .nav ul li a.active {
    color: var(--electric-blue);
}

.nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--electric-blue);
    transition: width 0.3s ease;
}

.nav ul li a:hover:after, .nav ul li a.active:after {
    width: 100%;
}

.nav-icons {
    display: flex;
    margin-left: 30px;
}

.nav-icons a {
    color: white;
    margin-left: 15px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-icons a:hover {
    color: var(--electric-blue);
}

.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    margin-top: 70px;
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background-size: contain;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.slider.active {
    opacity: 1;
}

.slider-content {
    max-width: 600px;
    padding: 0 40px;
    color: white;
    animation: slideIn 1s ease;
}

.slider-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.slider-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.slider-buttons {
    display: flex;
    gap: 15px;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-controls .control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-controls .control.active {
    background-color: white;
    transform: scale(1.2);
}

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

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background-color: white;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.brand-card {
    background-color: var(--off-white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.brand-card img {
    max-width: 200px;
    max-height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.category-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--electric-blue);
    font-size: 1.8rem;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: var(--off-white);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 200px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--cyber-red);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 20px;
}

.product-category {
    color: var(--electric-blue);
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: block;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-rating {
    color: #FFC107;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--electric-blue);
}

.old-price {
    font-size: 1rem;
    color: var(--cool-gray);
    text-decoration: line-through;
}

.product-card .btn {
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

/* Image + Text Section */
.image-text-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

.image-text-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.text-content ul {
    list-style: none;
    margin: 25px 0;
}

.text-content ul li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.text-content ul li i {
    position: absolute;
    left: 0;
    top: 3px;
}

.image-content {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-content img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-item {
    background-color: var(--off-white);
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item i {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-form {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: 10px;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Newsletter */
.newsletter-section {
    padding: 60px 0;
    background-color: var(--space-gray);
    color: white;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

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

.newsletter-content input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
}

.newsletter-content button {
    border-radius: 0 30px 30px 0;
    padding: 15px 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: var(--space-gray);
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--electric-blue);
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--electric-blue);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .image-text-content, .contact-content {
        grid-template-columns: 1fr;
    }
    
    .image-text-content {
        gap: 30px;
    }
    
    .image-content {
        order: -1;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .slider-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--space-gray);
        flex-direction: column;
        padding: 30px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        margin-bottom: 30px;
    }
    
    .nav ul li {
        margin: 15px 0;
    }
    
    .nav-icons {
        margin-left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-slider {
        height: 70vh;
        min-height: 400px;
    }
    
    .slider-content {
        padding: 0 20px;
    }
    
    .slider-content h2 {
        font-size: 2.2rem;
    }
    
    .slider-content p {
        font-size: 1rem;
    }
    
    .slider-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-slider {
        height: 60vh;
        min-height: 350px;
    }
    
    .slider-content h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-content form {
        flex-direction: column;
    }
    
    .newsletter-content input {
        border-radius: 30px;
        margin-bottom: 10px;
    }
    
    .newsletter-content button {
        border-radius: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}