* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d4ff;
    --secondary-color: #7c3aed;
    --accent-pink: #ff006e;
    --accent-lime: #00ff88;
    --dark-bg: #0a0e27;
    --darker-bg: #050812;
    --card-bg: #1a1f3a;
    --light-bg: #16213e;
    --text-dark: #ffffff;
    --text-light: #b0b5c0;
    --border-color: #00d4ff;
    --success: #00ff88;
    --danger: #ff006e;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ANIMATED BANNER ===== */
.animated-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.banner-content {
    display: flex;
    animation: slide 8s infinite;
}

.banner-text {
    display: inline-block;
    padding: 0 20px;
    white-space: nowrap;
    color: var(--dark-bg);
    font-weight: bold;
    font-size: 14px;
    opacity: 0;
    animation: fade-in-out 8s infinite;
}

.banner-text.active {
    opacity: 1;
}

.banner-text:nth-child(1) {
    animation: fade-in-out 8s 0s infinite;
}

.banner-text:nth-child(2) {
    animation: fade-in-out 8s 4s infinite;
}

@keyframes fade-in-out {
    0%, 100% {
        opacity: 0;
    }
    20%, 80% {
        opacity: 1;
    }
}

/* ===== NAVBAR ===== */
.navbar {
    background: linear-gradient(90deg, rgba(10, 14, 39, 0.95) 0%, rgba(5, 8, 18, 0.95) 100%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--primary-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Search Bar */
.search-container {
    display: flex;
    align-items: center;
    background: rgba(26, 31, 58, 0.6);
    border-radius: 25px;
    padding: 8px 15px;
    gap: 10px;
    flex: 0.3;
    border: 2px solid var(--primary-color);
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: var(--text-light);
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 16px;
    transition: all 0.3s;
}

.search-btn:hover {
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

/* Cart Icon */
.cart-icon {
    position: relative;
}

.cart-icon a {
    font-size: 24px;
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    transition: all 0.3s;
}

.cart-icon a:hover {
    color: var(--accent-lime);
    transform: scale(1.2);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--primary-color) 100%);
    color: var(--dark-bg);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255, 0, 110, 0.6);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-bottom: 2px solid var(--primary-color);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-dark);
    z-index: 10;
    animation: slide-up 0.8s ease-out;
}

.carousel-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.carousel-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--accent-lime);
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translate(-50%, -30%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 212, 255, 0.7);
    border: 2px solid var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 20;
    color: var(--dark-bg);
}

.carousel-btn:hover {
    background: rgba(0, 212, 255, 1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(5, 8, 18, 0.8) 100%);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.category-card {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(20, 24, 44, 0.8) 100%);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
    border: 2px solid var(--primary-color);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
    border-color: var(--secondary-color);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
    border-bottom: 2px solid var(--primary-color);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card h3 {
    padding: 15px;
    text-align: center;
    font-size: 16px;
    color: var(--primary-color);
}

/* ===== PRODUCTS GRID ===== */
.top-products {
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.product-card {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(20, 24, 44, 0.8) 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid var(--primary-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
    border-color: var(--secondary-color);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--darker-bg);
    border-bottom: 2px solid var(--primary-color);
}

.product-info {
    padding: 15px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.product-brand {
    font-size: 12px;
    color: var(--accent-lime);
    margin-bottom: 10px;
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.product-rating {
    color: var(--primary-color);
    font-size: 12px;
    margin-bottom: 12px;
}

.product-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--dark-bg);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.product-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

/* ===== STATISTICS SECTION ===== */
.statistics {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.statistics .section-title {
    color: var(--dark-bg);
    margin-bottom: 50px;
    -webkit-text-fill-color: unset;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(10, 14, 39, 0.3);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: var(--dark-bg);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 16px;
}

/* ===== PARTNERS SECTION ===== */
.partners {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(5, 8, 18, 0.8) 100%);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
}

.partners-grid img {
    max-width: 100%;
    height: 100px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    padding: 10px;
    border-radius: 8px;
}

.partners-grid img:hover {
    filter: grayscale(0%) brightness(1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--text-light);
    padding: 40px 0 20px;
    margin-top: 60px;
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 -0 20px rgba(0, 212, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-logo h3 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.newsletter-form {
    display: flex;
    gap: 5px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    background: rgba(26, 31, 58, 0.6);
    color: var(--text-light);
    font-size: 12px;
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form button {
    padding: 10px 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--dark-bg);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: var(--accent-lime);
}

/* ===== BUTTONS ===== */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--dark-bg);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s;
    background: rgba(26, 31, 58, 0.6);
    color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    background: rgba(26, 31, 58, 0.8);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== LOADER ===== */
.loader {
    border: 4px solid rgba(0, 212, 255, 0.2);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===== ALERTS ===== */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(0, 255, 136, 0.2);
    color: var(--success);
    border-left-color: var(--success);
}

.alert-error {
    background: rgba(255, 0, 110, 0.2);
    color: var(--danger);
    border-left-color: var(--danger);
}

.alert-info {
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}
/* ===== LOGO STYLING ===== */
.logo-img {
    height: 45px;
    width: auto;
    max-width: 50px;
    transition: all 0.3s;
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.3));
}

.nav-logo:hover .logo-img {
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
    transform: scale(1.05);
}

.logo-text {
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NAVBAR STYLING - CENTERED MENU ===== */
.navbar {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(5, 8, 18, 0.98) 100%);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* LOGO - LEFT SIDE */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    flex: 0 0 auto;
    white-space: nowrap;
}

/* MENU - CENTER */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    font-size: 14px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

/* SEARCH - RIGHT SIDE */
.search-container {
    flex: 0.25;
    display: flex;
    align-items: center;
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 8px 15px;
    gap: 10px;
    transition: all 0.3s;
    white-space: nowrap;
}

.search-container:hover,
.search-container:focus-within {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    color: var(--text-light);
    font-size: 13px;
}

.search-input::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.search-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    padding: 0;
    flex: 0 0 auto;
}

.search-btn:hover {
    transform: scale(1.2);
}

/* CART ICON - RIGHT SIDE */
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.cart-icon a {
    color: var(--primary-color);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.cart-icon a:hover {
    transform: scale(1.15);
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent-pink);
    color: var(--dark-bg);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

/* LOGO IMAGE */
.logo-img {
    height: 45px;
    width: auto;
    max-width: 50px;
    transition: all 0.3s;
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.3));
}

.nav-logo:hover .logo-img {
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
    transform: scale(1.05);
}

.logo-text {
    font-size: 16px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex: 0 0 auto;
}

.hamburger span {
    width: 22px;
    height: 2.5px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-container {
        gap: 15px;
    }

    .nav-menu {
        gap: 20px;
    }

    .search-container {
        flex: 0.2;
    }

    .search-input {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        gap: 10px;
        padding: 12px 15px;
    }

    .nav-logo {
        order: 1;
        flex: 0 0 auto;
    }

    .hamburger {
        display: flex;
        order: 2;
    }

    .search-container {
        order: 3;
        width: 100%;
        flex: 1;
    }

    .cart-icon {
        order: 4;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-bottom: 2px solid var(--primary-color);
        z-index: 999;
        order: 5;
        width: 100%;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
    }

    .logo-img {
        height: 35px;
    }

    .logo-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 10px 12px;
        gap: 8px;
    }

    .search-input {
        font-size: 11px;
    }

    .logo-img {
        height: 30px;
    }

    .logo-text {
        font-size: 12px;
    }

    .search-container {
        padding: 6px 10px;
    }

    .cart-icon a {
        font-size: 18px;
    }
}

/* ===== PARTNERS SECTION - CENTERED ===== */
.partners {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.5) 0%, rgba(5, 8, 18, 0.5) 100%);
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.partners .section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-items: center;
    padding: 0 20px;
}

.partners-grid img {
    height: 80px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: all 0.3s;
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.8;
}

.partners-grid img:hover {
    filter: grayscale(0%) brightness(1.1);
    opacity: 1;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .partners {
        padding: 60px 0;
    }

    .partners .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 30px;
    }

    .partners-grid img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .partners {
        padding: 40px 0;
    }

    .partners .section-title {
        font-size: 18px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partners-grid img {
        height: 50px;
    }
}

/* ===== PROFESSIONAL FOOTER ===== */
.footer {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(5, 8, 18, 0.98) 100%);
    border-top: 2px solid var(--primary-color);
    padding: 60px 0 20px 0;
    margin-top: 100px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

/* Column Styling */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column h4 {
    color: var(--accent-lime);
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Logo Section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-logo:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
}

.footer-logo img {
    height: 40px;
    width: auto;
    transition: all 0.3s;
}

.footer-logo-text {
    font-size: 16px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s;
    text-decoration: none;
    font-size: 18px;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

/* Newsletter Form */
.footer-newsletter {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    color: var(--text-dark);
    font-size: 13px;
    transition: all 0.3s;
}

.footer-newsletter input::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.footer-newsletter input:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    background: rgba(0, 212, 255, 0.1);
}

.footer-newsletter button {
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--dark-bg);
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    font-size: 13px;
}

.footer-newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

/* Contact Info */
.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.footer-contact-item a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--text-light);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-bottom a:hover {
    color: var(--accent-lime);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-newsletter {
        flex-direction: column;
    }

    .footer-newsletter button {
        width: 100%;
    }
}


