/* Fixed black top bar and global black background overrides */
:root { --header-height: 72px; }

body {
    background: #000 !important;
    padding-top: var(--header-height);
}

.header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: #000 !important;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header .container { height: 100%; }
.header-top { height: 100%; align-items: center; }
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #121212;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Improve touch targets for mobile */
button, a {
    min-height: 44px;
    min-width: 44px;
}

/* Performance optimizations */
* {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Skip to main content for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: white;
    padding: 8px;
    z-index: 1001;
    text-decoration: none;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Header Styles */
.header {
    background: #1e1e1e;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: baseline;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.logo h1 {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    margin-right: 2px;
}

.logo span {
    font-size: clamp(12px, 3vw, 16px);
    color: #666;
    font-weight: 400;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-actions button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
}

.header-actions button:hover {
    background-color: #333;
    transform: scale(1.05);
}

.header-actions button:active {
    transform: scale(0.98);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    animation: bounce 0.3s ease;
}

@keyframes bounce {
    0%, 20%, 60%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    80% { transform: translateY(-5px); }
}

/* Search Bar */
.search-bar {
    display: none;
    padding: 12px 0;
    border-top: 1px solid #eee;
}

.search-bar.active {
    display: flex;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-bar input {
    flex: 1;
    border: none;
    background: #2a2a2a;
    padding: 14px 20px;
    font-size: 16px;
    outline: none;
    border-radius: 25px;
    transition: background-color 0.3s;
    color: #e0e0e0;
}

.search-bar input:focus {
    background: #333;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.search-bar input::placeholder {
    color: #888;
}

.search-submit {
    background: #000;
    color: white;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    background: #333;
    transform: scale(1.05);
}

/* Navigation */
.nav {
    border-top: 1px solid #eee;
    padding: 12px 0;
    display: none;
}

.nav.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(15px, 4vw, 35px);
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-links::-webkit-scrollbar {
    display: none;
}

.nav-links li a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: clamp(14px, 3vw, 16px);
    position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
    border-color: #fff;
    color: #fff;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.hero-banner {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
}

.hero-text {
    color: white;
    margin-bottom: 30px;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text p {
    margin: 0 0 10px 0;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-text p:first-child {
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 600;
}

.hero-text p:last-child {
    font-size: clamp(14px, 3vw, 18px);
    opacity: 0.95;
}

.cta-btn {
    background: #fff;
    color: #333;
    border: none;
    padding: 16px 40px;
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    min-height: 56px;
    z-index: 2;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: #f8f9fa;
}

.cta-btn:active {
    transform: translateY(-1px);
}

/* Categories Section - Now Brand Section */
.categories {
    padding: clamp(40px, 8vw, 80px) 0;
    background: #1a1a1a;
}

.categories h2 {
    text-align: center;
    font-size: clamp(24px, 6vw, 40px);
    margin-bottom: clamp(30px, 6vw, 50px);
    font-weight: 600;
    color: #e0e0e0;
}

.brand-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(20px, 4vw, 30px);
    max-width: 1000px;
    margin: 0 auto;
    justify-items: center;
}

.brand-image {
    width: 200px;
    height: 120px;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)) brightness(0) invert(1);
}

/* Double the visual size for the Adidas logo only */
.brand-image[data-category="adidas"] {
    /* reduced by ~33% from 400x240 to 268x161 */
    width: 268px;
    height: 161px;
}

/* Keep the Adidas logo responsive on narrower viewports */
@media (max-width: 600px) {
    .brand-image[data-category="adidas"] {
        width: 90%;
        height: auto;
    }
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.product-card {
    background: #0d0d0d;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

.product-image {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-overlay {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,0.5);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
}

.product-info {
    padding: 12px;
}

.product-title {
    margin: 0 0 6px 0;
    font-size: 16px;
}

.product-description {
    color: #bbb;
    font-size: 13px;
    min-height: 36px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.product-price .shipping {
    color: #999;
    font-size: 12px;
}

.load-more {
    margin: 20px auto 0;
    display: block;
    background: #222;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 16px;
    border-radius: 8px;
}

.brand-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15)) brightness(0) invert(1);
}

/* Brand Sections */
.brand-section {
    padding: clamp(40px, 8vw, 80px) 0;
    position: relative;
    background: #1e1e1e;
}

.nike-section {
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.1) 0%, rgba(255, 0, 0, 0.1) 100%), #1e1e1e;
}

.adidas-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(51, 51, 51, 0.2) 100%), #1e1e1e;
}

.lv-section {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.15) 0%, rgba(218, 165, 32, 0.15) 100%), #1e1e1e;
}

.brand-header {
    text-align: center;
    margin-bottom: clamp(30px, 6vw, 50px);
}

.brand-header h2 {
    font-size: clamp(24px, 6vw, 40px);
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.brand-header p {
    font-size: clamp(16px, 3.5vw, 18px);
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section */
.products {
    padding: clamp(40px, 8vw, 80px) 0;
}

.products h2 {
    text-align: center;
    font-size: clamp(24px, 6vw, 40px);
    margin-bottom: clamp(30px, 6vw, 50px);
    font-weight: 600;
    color: #1a1a1a;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: clamp(20px, 4vw, 35px);
    margin-bottom: 50px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Brand-specific product card styling */
.nike-card {
    border-top: 3px solid #FF6900;
}

.adidas-card {
    border-top: 3px solid #000;
}

.louis-vuitton-card {
    border-top: 3px solid #DAA520;
}

.product-image {
    height: clamp(200px, 40vw, 280px);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(35px, 8vw, 50px);
    color: #999;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff4757;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: clamp(11px, 2.5vw, 13px);
    font-weight: 600;
    z-index: 2;
}

.product-badge.luxury {
    background: linear-gradient(135deg, #DAA520 0%, #8B4513 100%);
}

.product-badge.sale {
    background: #ff4757;
}

.product-badge.new {
    background: #10ac84;
}

.product-badge.popular {
    background: #667eea;
}

.brand-overlay {
    position: absolute;
    bottom: 10px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.product-info {
    padding: clamp(20px, 4vw, 25px);
}

.product-title {
    font-size: clamp(16px, 3.5vw, 18px);
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    line-height: 1.3;
}

.product-description {
    font-size: clamp(13px, 3vw, 15px);
    color: #666;
    margin-bottom: 16px;
    line-height: 1.4;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.current-price {
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 700;
    color: #1a1a1a;
}

.original-price {
    font-size: clamp(15px, 3.5vw, 18px);
    color: #999;
    text-decoration: line-through;
}

.add-to-cart {
    width: 100%;
    background: #000;
    color: white;
    border: none;
    padding: clamp(12px, 3vw, 16px);
    border-radius: 12px;
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
}

.add-to-cart:hover {
    background: #333;
    transform: translateY(-2px);
}

.add-to-cart:active {
    transform: translateY(0);
}

.load-more {
    display: block;
    margin: 0 auto;
    background: none;
    border: 2px solid #000;
    color: #000;
    padding: clamp(12px, 3vw, 18px) clamp(25px, 5vw, 40px);
    border-radius: 50px;
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 56px;
}

.load-more:hover {
    background: #000;
    color: white;
    transform: translateY(-2px);
}

/* Search Results Overlay */
.search-results-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.search-results-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 1000px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.search-header h3 {
    font-size: 24px;
    color: #1a1a1a;
}

.close-search {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.close-search:hover {
    background: #f5f5f5;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.no-results {
    text-align: center;
    color: #666;
    font-size: 18px;
    padding: 40px;
}

/* Coming Soon Message */
.coming-soon-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: clamp(40px, 8vw, 80px) 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 2px dashed #ddd;
    margin: 20px 0;
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    animation: pulse 2s infinite;
}

.coming-soon-message h3 {
    font-size: clamp(20px, 4vw, 28px);
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.coming-soon-message p {
    font-size: clamp(14px, 3vw, 18px);
    color: #666;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Newsletter Section */
.newsletter {
    background: #000;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.newsletter h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.newsletter p {
    margin-bottom: 30px;
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-form button {
    background: #667eea;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background: #5a6fd8;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #e0e0e0;
}

.footer-section p {
    color: #b0b0b0;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background: #333;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #b0b0b0;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #1e1e1e;
    z-index: 2000;
    transition: right 0.3s;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    color: #e0e0e0;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    color: #e0e0e0;
}

.cart-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    color: #666;
    margin-top: 50px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #666;
    margin-bottom: 10px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-controls button {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-total {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.checkout-btn {
    width: 100%;
    background: #000;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.checkout-btn:hover {
    background: #333;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .header-top {
        padding: 14px 0;
        min-height: 60px;
    }
    
    .header-actions {
        gap: 4px;
    }
    
    .header-actions button {
        padding: 10px;
        min-width: 40px;
        min-height: 40px;
    }
    
    .logo h1 {
        font-size: 18px;
    }
    
    .logo span {
        font-size: 12px;
    }
    
    .hero {
        margin-top: 60px;
        padding: 30px 12px;
        min-height: 500px;
    }
    
    .hero-content h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .hero-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .cta-btn {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .categories,
    .products {
        padding: 30px 0;
    }
    
    .categories h2,
    .products h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .nav-links {
        gap: 16px;
        padding: 8px 0;
    }
    
    .nav-links li a {
        font-size: 14px;
        padding: 8px 0;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        margin-top: 70px;
        padding: 50px 20px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .cart-sidebar {
        width: 400px;
        right: -400px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero {
        padding: 60px 30px;
    }
    
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .nav-links {
        gap: 30px;
    }
}

/* Desktop Optimizations */
@media (min-width: 1025px) {
    .container {
        padding: 0 40px;
    }
    
    .header-top {
        padding: 20px 0;
        min-height: 80px;
    }
    
    .hero {
        margin-top: 80px;
        padding: 80px 40px;
        min-height: 600px;
    }
    
    .categories,
    .products {
        padding: 80px 0;
    }
    
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: 1200px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 40px;
    }
    
    .newsletter {
        padding: 80px 0;
    }
    
    .newsletter-form {
        max-width: 500px;
        gap: 0;
    }
    
    .newsletter-form input {
        border-radius: 50px 0 0 50px;
    }
    
    .newsletter-form button {
        border-radius: 0 50px 50px 0;
        padding: 15px 30px;
    }
    
    .footer {
        padding: 80px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 50px;
    }
    
    .nav {
        display: block !important;
        border-top: none;
        padding: 0;
    }
    
    .nav-links {
        justify-content: center;
        gap: 40px;
        padding: 20px 0;
    }
    
    .menu-btn {
        display: none;
    }
    
    .search-bar.active {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Extra large screens */
@media (min-width: 1441px) {
    .container {
        max-width: 1400px;
        padding: 0 50px;
    }
    
    .hero {
        padding: 100px 50px;
        min-height: 700px;
    }
    
    .categories,
    .products {
        padding: 100px 0;
    }
}
/* Fixed black top bar and global black background overrides */
:root { --header-height: 72px; }

body {
	background: #000 !important;
	padding-top: var(--header-height);
}

.header {
	position: fixed !important;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header-height);
	background: #000 !important;
	z-index: 1000;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header .container { height: 100%; }
.header-top { height: 100%; align-items: center; }
/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: #e0e0e0;
	background-color: #121212;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
}

/* Improve touch targets for mobile */
button, a {
	min-height: 44px;
	min-width: 44px;
}

/* Performance optimizations */
* {
	-webkit-tap-highlight-color: transparent;
}

img {
	max-width: 100%;
	height: auto;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus {
	outline: 2px solid #667eea;
	outline-offset: 2px;
}

/* Skip to main content for screen readers */
.skip-link {
	position: absolute;
	top: -40px;
	left: 6px;
	background: #000;
	color: white;
	padding: 8px;
	z-index: 1001;
	text-decoration: none;
	border-radius: 4px;
}

.skip-link:focus {
	top: 6px;
}

/* Header Styles */
.header {
	background: #1e1e1e;
	box-shadow: 0 2px 20px rgba(0,0,0,0.3);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
	min-height: 70px;
}

.logo {
	display: flex;
	align-items: baseline;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}

.logo h1 {
	font-size: clamp(20px, 4vw, 28px);
	font-weight: 700;
	margin-right: 2px;
}

.logo span {
	font-size: clamp(12px, 3vw, 16px);
	color: #666;
	font-weight: 400;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.header-actions button {
	background: none;
	border: none;
	font-size: 18px;
	cursor: pointer;
	padding: 12px;
	border-radius: 50%;
	transition: all 0.3s ease;
	color: #e0e0e0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	min-width: 44px;
}

.header-actions button:hover {
	background-color: #333;
	transform: scale(1.05);
}

.header-actions button:active {
	transform: scale(0.98);
}

.cart-btn {
	position: relative;
}

.cart-count {
	position: absolute;
	top: 5px;
	right: 5px;
	background: #ff4757;
	color: white;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	font-size: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	animation: bounce 0.3s ease;
}

@keyframes bounce {
	0%, 20%, 60%, 100% { transform: translateY(0); }
	40% { transform: translateY(-10px); }
	80% { transform: translateY(-5px); }
}

/* Search Bar */
.search-bar {
	display: none;
	padding: 12px 0;
	border-top: 1px solid #eee;
}

.search-bar.active {
	display: flex;
	animation: slideDown 0.3s ease;
}

@keyframes slideDown {
	from { opacity: 0; transform: translateY(-10px); }
	to { opacity: 1; transform: translateY(0); }
}

.search-bar input {
	flex: 1;
	border: none;
	background: #2a2a2a;
	padding: 14px 20px;
	font-size: 16px;
	outline: none;
	border-radius: 25px;
	transition: background-color 0.3s;
	color: #e0e0e0;
}

.search-bar input:focus {
	background: #333;
	box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.search-bar input::placeholder {
	color: #888;
}

.search-submit {
	background: #000;
	color: white;
	border: none;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-left: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-submit:hover {
	background: #333;
	transform: scale(1.05);
}

/* Navigation */
.nav {
	border-top: 1px solid #eee;
	padding: 12px 0;
	display: none;
}

.nav.active {
	display: block;
	animation: slideDown 0.3s ease;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: clamp(15px, 4vw, 35px);
	overflow-x: auto;
	padding: 12px 0;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.nav-links::-webkit-scrollbar {
	display: none;
}

.nav-links li a {
	text-decoration: none;
	color: #e0e0e0;
	font-weight: 500;
	padding: 12px 0;
	border-bottom: 2px solid transparent;
	transition: all 0.3s ease;
	white-space: nowrap;
	font-size: clamp(14px, 3vw, 16px);
	position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
	border-color: #fff;
	color: #fff;
}

.nav-links li a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: #fff;
	transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
	width: 100%;
}

/* Hero Section */
.hero {
	margin-top: 70px;
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
}

.hero-banner {
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
	max-width: 100%;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.3);
	text-align: center;
}

.hero-text {
	color: white;
	margin-bottom: 30px;
	max-width: 800px;
	padding: 0 20px;
}

.hero-text p {
	margin: 0 0 10px 0;
	font-weight: 500;
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-text p:first-child {
	font-size: clamp(18px, 4vw, 24px);
	font-weight: 600;
}

.hero-text p:last-child {
	font-size: clamp(14px, 3vw, 18px);
	opacity: 0.95;
}

.cta-btn {
	background: #fff;
	color: #333;
	border: none;
	padding: 16px 40px;
	font-size: clamp(14px, 3vw, 18px);
	font-weight: 600;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	min-height: 56px;
	z-index: 2;
}

.cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.3);
	background: #f8f9fa;
}

.cta-btn:active {
	transform: translateY(-1px);
}

/* Categories Section - Now Brand Section */
.categories {
	padding: clamp(40px, 8vw, 80px) 0;
	background: #1a1a1a;
}

.categories h2 {
	text-align: center;
	font-size: clamp(24px, 6vw, 40px);
	margin-bottom: clamp(30px, 6vw, 50px);
	font-weight: 600;
	color: #e0e0e0;
}

.brand-logos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: clamp(20px, 4vw, 30px);
	max-width: 1000px;
	margin: 0 auto;
	justify-items: center;
}

.brand-image {
	width: 200px;
	height: 120px;
	object-fit: contain;
	display: block;
	transition: all 0.3s ease;
	cursor: pointer;
	filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)) brightness(0) invert(1);
}

/* Double the visual size for the Adidas logo only */
.brand-image[data-category="adidas"] {
	/* reduced by ~33% from 400x240 to 268x161 */
	width: 268px;
	height: 161px;
}

/* Keep the Adidas logo responsive on narrower viewports */
@media (max-width: 600px) {
	.brand-image[data-category="adidas"] {
		width: 90%;
		height: auto;
	}
}

/* Product grid */
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
	margin-top: 24px;
}

.product-card {
	background: #0d0d0d;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.06);
}

.product-image {
	position: relative;
	aspect-ratio: 4 / 3;
	background: #0a0a0a;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.brand-overlay {
	position: absolute;
	bottom: 8px;
	left: 8px;
	background: rgba(0,0,0,0.5);
	padding: 4px 8px;
	border-radius: 6px;
	font-size: 12px;
}

.product-info {
	padding: 12px;
}

.product-title {
	margin: 0 0 6px 0;
	font-size: 16px;
}

.product-description {
	color: #bbb;
	font-size: 13px;
	min-height: 36px;
}

.product-price {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 8px;
}

.product-price .shipping {
	color: #999;
	font-size: 12px;
}

.load-more {
	margin: 20px auto 0;
	display: block;
	background: #222;
	color: #fff;
	border: 1px solid rgba(255,255,255,0.1);
	padding: 10px 16px;
	border-radius: 8px;
}

.brand-image:hover {
	transform: scale(1.05);
	filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15)) brightness(0) invert(1);
}

/* Brand Sections */
.brand-section {
	padding: clamp(40px, 8vw, 80px) 0;
	position: relative;
	background: #1e1e1e;
}

.nike-section {
	background: linear-gradient(135deg, rgba(255, 105, 0, 0.1) 0%, rgba(255, 0, 0, 0.1) 100%), #1e1e1e;
}

.adidas-section {
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(51, 51, 51, 0.2) 100%), #1e1e1e;
}

.lv-section {
	background: linear-gradient(135deg, rgba(139, 69, 19, 0.15) 0%, rgba(218, 165, 32, 0.15) 100%), #1e1e1e;
}

.brand-header {
	text-align: center;
	margin-bottom: clamp(30px, 6vw, 50px);
}

.brand-header h2 {
	font-size: clamp(24px, 6vw, 40px);
	font-weight: 600;
	color: #e0e0e0;
	margin-bottom: 15px;
}

.brand-header p {
	font-size: clamp(16px, 3.5vw, 18px);
	color: #b0b0b0;
	max-width: 600px;
	margin: 0 auto;
}

/* Products Section */
.products {
	padding: clamp(40px, 8vw, 80px) 0;
}

.products h2 {
	text-align: center;
	font-size: clamp(24px, 6vw, 40px);
	margin-bottom: clamp(30px, 6vw, 50px);
	font-weight: 600;
	color: #1a1a1a;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: clamp(20px, 4vw, 35px);
	margin-bottom: 50px;
}

.product-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0,0,0,0.08);
	transition: all 0.4s ease;
	cursor: pointer;
	border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Brand-specific product card styling */
.nike-card {
	border-top: 3px solid #FF6900;
}

.adidas-card {
	border-top: 3px solid #000;
}

.louis-vuitton-card {
	border-top: 3px solid #DAA520;
}

.product-image {
	height: clamp(200px, 40vw, 280px);
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(35px, 8vw, 50px);
	color: #999;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.product-card:hover .product-image {
	transform: scale(1.05);
}

.product-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: #ff4757;
	color: white;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: clamp(11px, 2.5vw, 13px);
	font-weight: 600;
	z-index: 2;
}

.product-badge.luxury {
	background: linear-gradient(135deg, #DAA520 0%, #8B4513 100%);
}

.product-badge.sale {
	background: #ff4757;
}

.product-badge.new {
	background: #10ac84;
}

.product-badge.popular {
	background: #667eea;
}

.brand-overlay {
	position: absolute;
	bottom: 10px;
	right: 15px;
	background: rgba(0,0,0,0.7);
	color: white;
	padding: 4px 8px;
	border-radius: 10px;
	font-size: 11px;
	font-weight: 600;
}

.product-info {
	padding: clamp(20px, 4vw, 25px);
}

.product-title {
	font-size: clamp(16px, 3.5vw, 18px);
	font-weight: 600;
	margin-bottom: 8px;
	color: #1a1a1a;
	line-height: 1.3;
}

.product-description {
	font-size: clamp(13px, 3vw, 15px);
	color: #666;
	margin-bottom: 16px;
	line-height: 1.4;
}

.product-price {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.current-price {
	font-size: clamp(18px, 4vw, 22px);
	font-weight: 700;
	color: #1a1a1a;
}

.original-price {
	font-size: clamp(15px, 3.5vw, 18px);
	color: #999;
	text-decoration: line-through;
}

.add-to-cart {
	width: 100%;
	background: #000;
	color: white;
	border: none;
	padding: clamp(12px, 3vw, 16px);
	border-radius: 12px;
	font-size: clamp(14px, 3vw, 16px);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	min-height: 48px;
}

.add-to-cart:hover {
	background: #333;
	transform: translateY(-2px);
}

.add-to-cart:active {
	transform: translateY(0);
}

.load-more {
	display: block;
	margin: 0 auto;
	background: none;
	border: 2px solid #000;
	color: #000;
	padding: clamp(12px, 3vw, 18px) clamp(25px, 5vw, 40px);
	border-radius: 50px;
	font-size: clamp(14px, 3vw, 18px);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	min-height: 56px;
}

.load-more:hover {
	background: #000;
	color: white;
	transform: translateY(-2px);
}

/* Search Results Overlay */
.search-results-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.search-results-content {
	background: white;
	border-radius: 20px;
	width: 100%;
	max-width: 1000px;
	max-height: 80vh;
	overflow-y: auto;
	padding: 30px;
}

.search-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.search-header h3 {
	font-size: 24px;
	color: #1a1a1a;
}

.close-search {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	padding: 8px;
	border-radius: 50%;
	transition: background-color 0.3s;
}

.close-search:hover {
	background: #f5f5f5;
}

.search-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
}

.no-results {
	text-align: center;
	color: #666;
	font-size: 18px;
	padding: 40px;
}

/* Coming Soon Message */
.coming-soon-message {
	grid-column: 1 / -1;
	text-align: center;
	padding: clamp(40px, 8vw, 80px) 20px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 20px;
	border: 2px dashed #ddd;
	margin: 20px 0;
}

.coming-soon-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 32px;
	color: white;
	animation: pulse 2s infinite;
}

.coming-soon-message h3 {
	font-size: clamp(20px, 4vw, 28px);
	color: #1a1a1a;
	margin-bottom: 12px;
	font-weight: 600;
}

.coming-soon-message p {
	font-size: clamp(14px, 3vw, 18px);
	color: #666;
	max-width: 400px;
	margin: 0 auto;
	line-height: 1.5;
}

/* Newsletter Section */
.newsletter {
	background: #000;
	color: white;
	padding: 60px 0;
	text-align: center;
}

.newsletter h2 {
	font-size: 28px;
	margin-bottom: 10px;
}

.newsletter p {
	margin-bottom: 30px;
	opacity: 0.8;
}

.newsletter-form {
	display: flex;
	max-width: 400px;
	margin: 0 auto;
	gap: 10px;
}

.newsletter-form input {
	flex: 1;
	padding: 15px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
}

.newsletter-form button {
	background: #667eea;
	color: white;
	border: none;
	padding: 15px 25px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s;
}

.newsletter-form button:hover {
	background: #5a6fd8;
}

/* Footer */
.footer {
	background: #1a1a1a;
	padding: 50px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 30px;
}

.footer-section h3 {
	font-size: 20px;
	margin-bottom: 15px;
	color: #e0e0e0;
}

.footer-section h4 {
	font-size: 16px;
	margin-bottom: 15px;
	font-weight: 600;
	color: #e0e0e0;
}

.footer-section p {
	color: #b0b0b0;
	margin-bottom: 20px;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 8px;
}

.footer-section ul li a {
	color: #b0b0b0;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-section ul li a:hover {
	color: #fff;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	width: 40px;
	height: 40px;
	background: #000;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: background-color 0.3s;
}

.social-links a:hover {
	background: #333;
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #333;
	color: #b0b0b0;
}

/* Cart Sidebar */
.cart-sidebar {
	position: fixed;
	top: 0;
	right: -400px;
	width: 400px;
	height: 100%;
	background: #1e1e1e;
	z-index: 2000;
	transition: right 0.3s;
	box-shadow: -5px 0 15px rgba(0,0,0,0.3);
	display: flex;
	flex-direction: column;
	color: #e0e0e0;
}

.cart-sidebar.active {
	right: 0;
}

.cart-header {
	padding: 20px;
	border-bottom: 1px solid #333;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.close-cart {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	padding: 5px;
	color: #e0e0e0;
}

.cart-items {
	flex: 1;
	padding: 20px;
	overflow-y: auto;
}

.empty-cart {
	text-align: center;
	color: #666;
	margin-top: 50px;
}

.cart-item {
	display: flex;
	gap: 15px;
	padding: 15px 0;
	border-bottom: 1px solid #eee;
}

.cart-item-image {
	width: 60px;
	height: 60px;
	background: #f5f5f5;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
}

.cart-item-info {
	flex: 1;
}

.cart-item-title {
	font-weight: 600;
	margin-bottom: 5px;
}

.cart-item-price {
	color: #666;
	margin-bottom: 10px;
}

.quantity-controls {
	display: flex;
	align-items: center;
	gap: 10px;
}

.quantity-controls button {
	width: 30px;
	height: 30px;
	border: 1px solid #ddd;
	background: white;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cart-footer {
	padding: 20px;
	border-top: 1px solid #eee;
}

.cart-total {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
	text-align: center;
}

.checkout-btn {
	width: 100%;
	background: #000;
	color: white;
	border: none;
	padding: 15px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s;
}

.checkout-btn:hover {
	background: #333;
}

/* Overlay */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 1500;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

.overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Mobile Responsive */
@media (max-width: 480px) {
	.container {
		padding: 0 12px;
	}
    
	.header-top {
		padding: 14px 0;
		min-height: 60px;
	}
    
	.header-actions {
		gap: 4px;
	}
    
	.header-actions button {
		padding: 10px;
		min-width: 40px;
		min-height: 40px;
	}
    
	.logo h1 {
		font-size: 18px;
	}
    
	.logo span {
		font-size: 12px;
	}
    
	.hero {
		margin-top: 60px;
		padding: 30px 12px;
		min-height: 500px;
	}
    
	.hero-content h2 {
		font-size: 28px;
		margin-bottom: 16px;
	}
    
	.hero-content p {
		font-size: 16px;
		margin-bottom: 30px;
	}
    
	.cta-btn {
		padding: 14px 30px;
		font-size: 16px;
	}
    
	.categories,
	.products {
		padding: 30px 0;
	}
    
	.categories h2,
	.products h2 {
		font-size: 24px;
		margin-bottom: 25px;
	}
    
	.category-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
    
	.product-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
    
	.newsletter-form {
		flex-direction: column;
		gap: 12px;
	}
    
	.newsletter-form input,
	.newsletter-form button {
		width: 100%;
		padding: 16px;
		font-size: 16px;
	}
    
	.footer-content {
		grid-template-columns: 1fr;
		gap: 25px;
		text-align: center;
	}
    
	.cart-sidebar {
		width: 100%;
		right: -100%;
	}
    
	.nav-links {
		gap: 16px;
		padding: 8px 0;
	}
    
	.nav-links li a {
		font-size: 14px;
		padding: 8px 0;
	}
}

@media (min-width: 481px) and (max-width: 768px) {
	.container {
		padding: 0 20px;
	}
    
	.hero {
		margin-top: 70px;
		padding: 50px 20px;
	}
    
	.category-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
    
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
    
	.footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
    
	.cart-sidebar {
		width: 400px;
		right: -400px;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.container {
		padding: 0 30px;
	}
    
	.hero {
		padding: 60px 30px;
	}
    
	.category-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 25px;
	}
    
	.product-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
	}
    
	.footer-content {
		grid-template-columns: repeat(4, 1fr);
		gap: 30px;
	}
    
	.nav-links {
		gap: 30px;
	}
}

/* Desktop Optimizations */
@media (min-width: 1025px) {
	.container {
		padding: 0 40px;
	}
    
	.header-top {
		padding: 20px 0;
		min-height: 80px;
	}
    
	.hero {
		margin-top: 80px;
		padding: 80px 40px;
		min-height: 600px;
	}
    
	.categories,
	.products {
		padding: 80px 0;
	}
    
	.category-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 40px;
		max-width: 1200px;
	}
    
	.product-grid {
		grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
		gap: 40px;
	}
    
	.newsletter {
		padding: 80px 0;
	}
    
	.newsletter-form {
		max-width: 500px;
		gap: 0;
	}
    
	.newsletter-form input {
		border-radius: 50px 0 0 50px;
	}
    
	.newsletter-form button {
		border-radius: 0 50px 50px 0;
		padding: 15px 30px;
	}
    
	.footer {
		padding: 80px 0 30px;
	}
    
	.footer-content {
		grid-template-columns: 2fr 1fr 1fr 1fr;
		gap: 50px;
	}
    
	.nav {
		display: block !important;
		border-top: none;
		padding: 0;
	}
    
	.nav-links {
		justify-content: center;
		gap: 40px;
		padding: 20px 0;
	}
    
	.menu-btn {
		display: none;
	}
    
	.search-bar.active {
		max-width: 400px;
		margin: 0 auto;
	}
}

/* Extra large screens */
@media (min-width: 1441px) {
	.container {
		max-width: 1400px;
		padding: 0 50px;
	}
    
	.hero {
		padding: 100px 50px;
		min-height: 700px;
	}
    
	.categories,
	.products {
		padding: 100px 0;
	}
}
