/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.highlight {
    color: #ff6b35;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
}

.btn-outline:hover {
    background: #ff6b35;
    color: #fff;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid #333;
    color: #fff;
}

.btn-outline-primary:hover {
    background: #333;
    border-color: #555;
}

/* ===== HEADER ===== */
.main-header {
    background: #000;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: #111;
    padding: 8px 0;
    border-bottom: 1px solid #222;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.contact-info span {
    margin-right: 20px;
    color: #999;
}

.contact-info i {
    color: #ff6b35;
    margin-right: 5px;
}

.top-bar-links a {
    color: #999;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.top-bar-links a:hover {
    color: #ff6b35;
}

.main-nav {
    padding: 15px 0;
    position: relative;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 40px;
}

.search-form {
    position: relative;
    display: flex;
}

.search-input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #333;
    border-radius: 25px;
    background: #111;
    color: #fff;
    font-size: 14px;
}

.search-input:focus {
    outline: none;
    border-color: #ff6b35;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    background: #ff6b35;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-actions a {
    color: #fff;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist {
    position: relative;
}

.cart {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== MEGA MENU ===== */
.mega-menu {
    background: #111;
    border-bottom: 1px solid #222;
}

.main-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    position: relative;
}

.menu-item > a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-item:hover > a,
.menu-item > a:hover {
    background: #222;
    color: #ff6b35;
}

.sale-link {
    color: #ff4444 !important;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #222;
    min-width: 400px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.menu-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    display: flex;
    padding: 20px;
}

.menu-column {
    flex: 1;
    margin-right: 20px;
}

.menu-column h4 {
    color: #ff6b35;
    margin-bottom: 10px;
    font-size: 14px;
}

.menu-column ul {
    list-style: none;
}

.menu-column li {
    margin-bottom: 8px;
}

.menu-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.menu-column a:hover {
    color: #ff6b35;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    background: #0a0a0a;
}

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.hero-controls {
    position: relative;
    background: #0a0a0a;
    padding: 20px 0;
    border-top: 1px solid #222;
    z-index: 3;
}

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

.slider-dots {
    display: flex;
    gap: 10px;
}

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

.dot.active {
    background: #ff6b35;
}

.slider-arrows button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.slider-arrows button:hover {
    background: #ff6b35;
    color: #fff;
}

.hero-features {
    background: #111;
    padding: 30px 0;
    border-top: 1px solid #222;
}

.features-toggle {
    display: none;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.feature-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.feature-content p {
    color: #999;
    font-size: 14px;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #999;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #111;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card.featured {
    grid-column: span 2;
}

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

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.category-content {
    text-align: center;
    color: #fff;
}

.category-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.category-content p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.product-count {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.category-btn {
    background: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

.brands-section {
    margin-top: 40px;
    text-align: center;
}

.brands-title {
    font-size: 24px;
    margin-bottom: 30px;
    color: #999;
}

.brands-slider {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.brand-item {
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(1);
}

.brand-item:hover {
    opacity: 1;
    filter: grayscale(0);
}

.brand-item img {
    height: 50px;
    max-width: 120px;
    object-fit: contain;
}

/* ===== FEATURED PRODUCTS ===== */
.featured-products {
    padding: 80px 0;
    background: #111;
}

.products-tabs {
    margin-bottom: 40px;
}

.tab-nav {
    display: flex;
    justify-content: center;
    list-style: none;
    border-bottom: 1px solid #333;
}

.tab-item {
    margin: 0 20px;
}

.tab-item a {
    display: block;
    padding: 15px 20px;
    color: #999;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-item.active a,
.tab-item a:hover {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.product-card {
    background: #0a0a0a;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #222;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

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

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

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}

.badge.sale {
    background: #ff4444;
}

.badge.new {
    background: #ff6b35;
    color: #fff;
}

.badge.hot {
    background: #ff6600;
}

.badge.bestseller {
    background: #ffd700;
    color: #000;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-actions button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-actions button:hover {
    background: #ff6b35;
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.product-brand {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
}

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

.stars {
    color: #ffd700;
}

.rating-count {
    color: #999;
    font-size: 12px;
}

.product-price {
    margin-bottom: 15px;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: #ff6b35;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

.add-to-cart {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

/* ===== FOOTER ===== */
.main-footer {
    background: #000;
    border-top: 1px solid #222;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-desc {
    color: #999;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: #222;
    color: #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

.newsletter-desc {
    color: #999;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    margin-bottom: 30px;
}

.input-group {
    display: flex;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #333;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: #111;
    color: #fff;
    outline: none;
}

.newsletter-btn {
    background: #ff6b35;
    border: none;
    padding: 12px 15px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #ff4500;
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #999;
}

.contact-item i {
    color: #ff6b35;
    width: 16px;
}

.footer-middle {
    background: #111;
    padding: 30px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.footer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #999;
    font-size: 14px;
}

.payment-methods {
    display: flex;
    gap: 10px;
    align-items: center;
}

.payment-methods img {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-methods img:hover {
    opacity: 1;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Hide desktop top bar on mobile */
    .top-bar {
        display: none;
    }
    
    /* Mobile navigation */
    .nav-content {
        display: grid;
        grid-template-columns: auto 1fr auto auto;
        grid-template-rows: auto auto;
        gap: 15px;
        align-items: center;
        position: relative;
    }
    
    .mobile-menu-toggle {
        grid-column: 1;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        width: 30px;
        height: 25px;
        justify-content: space-between;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    
    .logo {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
    }
    
    .logo img {
        height: 30px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .nav-actions {
        grid-column: 3 / 5;
        grid-row: 1;
        display: flex;
        gap: 15px;
        justify-self: end;
    }
    
    .search-bar {
        grid-column: 1 / 5;
        grid-row: 2;
        width: 100%;
        margin: 0;
        max-width: none;
    }
    
    .mobile-menu-toggle span {
        width: 100%;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        transition: 0.3s;
        transform-origin: center;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobile mega menu */
    .mega-menu {
        display: none;
    }
    
    .mega-menu.show {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #111;
        border-top: 1px solid #333;
        z-index: 1000;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .mega-menu .main-menu {
        flex-direction: column;
    }
    
    .mega-menu .menu-item {
        border-bottom: 1px solid #333;
    }
    
    .mega-menu .menu-item > a {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .mega-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #1a1a1a;
        border-radius: 0;
        margin-left: 20px;
        display: none;
    }
    
    .mega-menu .menu-item:hover .dropdown-menu {
        display: block;
    }
    
    .mega-menu .dropdown-content {
        flex-direction: column;
        padding: 10px;
    }
    
    .mega-menu .menu-column {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    /* Hero section mobile */
    .hero-slider {
        min-height: 400px;
    }
    
    .hero-slide {
        height: 400px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text {
        max-width: 100%;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-image img {
        max-width: 200px;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 140px;
    }
    
    /* Hero controls mobile */
    .hero-controls .container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .slider-dots {
        order: 2;
    }
    
    .slider-arrows {
        order: 1;
    }
    
    /* Hero features mobile */
    .hero-section {
        position: relative;
        overflow: hidden;
    }
    
    .hero-features {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #111;
        z-index: 999;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    }
    
    .hero-features.show {
        left: 0;
    }
    
    .features-toggle {
        position: fixed;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        background: #ff6b35;
        padding: 15px 5px;
        border-radius: 0 8px 8px 0;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 998;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    }
    
    .features-toggle:hover {
        padding-right: 10px;
    }
    
    .features-toggle-text {
        display: none;
    }
    
    .features-toggle-arrow {
        color: #fff;
        font-size: 16px;
        transition: transform 0.3s ease;
    }
    
    .features-toggle.active .features-toggle-arrow {
        transform: rotate(-90deg);
    }
    
    .hero-features .container {
        padding: 60px 20px 20px;
    }
    
    .hero-features .features-grid {
        gap: 30px;
    }
    
    /* Close button for features panel */
    .features-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        color: #ff6b35;
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
        transition: all 0.3s ease;
    }
    
    .features-close:hover {
        transform: rotate(90deg);
    }
    
    /* Overlay when features panel is open */
    .features-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    .features-overlay.show {
        display: block;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    /* Categories mobile */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card.featured {
        grid-column: span 1;
    }
    
    .category-image {
        height: 200px;
    }
    
    /* Brands section mobile */
    .brands-slider {
        gap: 15px;
    }
    
    .brand-item img {
        height: 30px;
        max-width: 80px;
    }
    
    /* Products mobile */
    .products-tabs {
        margin-bottom: 30px;
    }
    
    .tab-nav {
        flex-direction: column;
        border-bottom: none;
        gap: 10px;
    }
    
    .tab-item {
        margin: 0;
        width: 100%;
    }
    
    .tab-item a {
        border-bottom: none;
        border-left: 3px solid transparent;
        border-radius: 5px;
        background: #222;
        text-align: center;
    }
    
    .tab-item.active a,
    .tab-item a:hover {
        border-left-color: #ff6b35;
        border-bottom: none;
        background: #333;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .payment-methods {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        min-width: auto;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .brands-slider {
        gap: 10px;
    }
    
    .brand-item {
        min-width: 60px;
        flex: 0 1 auto;
    }
    
    .contact-info {
        text-align: left;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 400px;
    }
    
    .hero-content {
        flex-direction: row;
        text-align: left;
    }
    
    .hero-text {
        order: 1;
        max-width: 60%;
    }
    
    .hero-image {
        order: 2;
        max-width: 40%;
    }
}