/* ============================================
   Apex Technologies - Main Stylesheet
   Modern Tech-Focused Design with Swiss Red Theme
   ============================================ */

:root {
    /* Color Palette - Swiss Red & Gray */
    --primary-red: #E31E24;
    --primary-red-dark: #C01820;
    --primary-red-light: #FF3339;
    --secondary-gray: #2A2D34;
    --dark-gray: #1A1D23;
    --light-gray: #F5F5F7;
    --medium-gray: #8E8E93;
    --white: #FFFFFF;
    --black: #000000;
    
    /* Accent Colors */
    --accent-blue: #007AFF;
    --accent-green: #34C759;
    --accent-orange: #FF9500;
    
    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'IBM Plex Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-red: 0 4px 20px rgba(227, 30, 36, 0.3);
}

/* ============================================
   Reset & Base Styles
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--secondary-gray);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-gray);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

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

/* ============================================
   Containers & Layout
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-accent {
    width: 4px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    border-radius: 2px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--secondary-gray);
}

.logo span {
    color: var(--primary-red);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--secondary-gray);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-red);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary-red);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--secondary-gray);
    transition: var(--transition-fast);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    min-height: 600px;
    height: auto;
    display: flex;
    align-items: center;
    padding: 8rem var(--spacing-md) 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FAFAFA 0%, #F0F0F0 100%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(227, 30, 36, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227, 30, 36, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

/* Hero Product Background - Single Large Image */
.hero-products-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.product-bg-main {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 55%;
    max-width: 800px;
    height: 85%;
    max-height: 700px;
    opacity: 0.7;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.product-bg-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(15%) brightness(1.05);
}

.hero-content {
    max-width: min(800px, 90%);
    width: 100%;
    z-index: 10;
    position: relative;
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--white);
    border: 1px solid rgba(227, 30, 36, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-red);
    margin-bottom: var(--spacing-md);
    animation: fadeIn 1s ease 0.3s both;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-gray);
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease both;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
    color: var(--primary-red);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-top: 0.5rem;
}

.hero-visual {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(227, 30, 36, 0.1);
}

.circle-1 {
    width: 400px;
    height: 400px;
    animation: rotate 20s linear infinite;
}

.circle-2 {
    width: 500px;
    height: 500px;
    top: -50px;
    right: -50px;
    animation: rotate 30s linear infinite reverse;
}

.circle-3 {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -100px;
    animation: rotate 40s linear infinite;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(227, 30, 36, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-gray);
    border-color: var(--secondary-gray);
}

.btn-secondary:hover {
    background: var(--secondary-gray);
    color: var(--white);
}

.btn-text {
    color: var(--primary-red);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.btn-text:hover {
    gap: 0.75rem;
    color: var(--primary-red-dark);
}

.btn-full {
    width: 100%;
}

/* ============================================
   Sections
   ============================================ */

section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(227, 30, 36, 0.1);
    color: var(--primary-red);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-gray);
    margin-bottom: var(--spacing-sm);
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ============================================
   Categories Section
   ============================================ */

.categories {
    background: var(--white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.category-card {
    padding: var(--spacing-md);
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.category-card:hover {
    background: var(--white);
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-red);
}

.category-icon svg {
    width: 32px;
    height: 32px;
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-gray);
}

.category-card p {
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
    color: var(--medium-gray);
}

.category-link {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.category-link:hover {
    gap: 0.75rem;
}

/* ============================================
   Products Section
   ============================================ */

.featured-products {
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.product-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    padding: 0.5rem 1rem;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.product-image {
    aspect-ratio: 4/3;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-gray);
    opacity: 0.3;
}

.product-placeholder svg {
    width: 200px;
    height: 200px;
}

.product-info {
    padding: var(--spacing-md);
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-gray);
}

.product-info p {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.product-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-sm);
}

.tag {
    padding: 0.25rem 0.75rem;
    background: rgba(227, 30, 36, 0.1);
    color: var(--primary-red);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

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

/* ============================================
   Why Choose Section
   ============================================ */

.why-choose {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: var(--spacing-md);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.feature-item {
    display: flex;
    gap: var(--spacing-sm);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-gray);
}

.feature-text p {
    font-size: 0.95rem;
    margin: 0;
}

.why-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    position: absolute;
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    transition: var(--transition-normal);
}

.visual-card:hover {
    transform: scale(1.05);
}

.card-1 {
    top: 50px;
    left: 50px;
    animation: float 3s ease-in-out infinite;
}

.card-2 {
    top: 150px;
    right: 50px;
    animation: float 3s ease-in-out 1s infinite;
}

.card-3 {
    bottom: 50px;
    left: 100px;
    animation: float 3s ease-in-out 2s infinite;
}

.card-icon {
    font-size: 3rem;
}

.card-label {
    font-weight: 600;
    color: var(--secondary-gray);
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-red);
}

.cta-buttons .btn-primary:hover {
    background: var(--light-gray);
}

.cta-buttons .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-sm);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
}

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

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Page Header
   ============================================ */

.page-header {
    padding: 8rem var(--spacing-md) 4rem;
    background: linear-gradient(135deg, var(--secondary-gray) 0%, var(--dark-gray) 100%);
    color: var(--white);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Products Page
   ============================================ */

.products-section {
    padding: var(--spacing-lg) 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--spacing-lg);
}

.products-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-section {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 12px;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.filter-section h3 {
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-gray);
}

.search-box {
    position: relative;
    display: flex;
    gap: 0.5rem;
}

.search-box input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-red);
}

.search-btn {
    padding: 0.75rem;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.search-btn:hover {
    background: var(--primary-red-dark);
}

.search-btn svg {
    width: 20px;
    height: 20px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-option:hover {
    background: var(--light-gray);
}

.filter-option input {
    margin-right: 0.75rem;
    accent-color: var(--primary-red);
}

.filter-option span {
    font-size: 0.95rem;
}

.count {
    padding: 0.25rem 0.5rem;
    background: var(--light-gray);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--medium-gray);
}

.sort-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-red);
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--white);
    border-radius: 8px;
}

.results-count {
    font-weight: 500;
    color: var(--medium-gray);
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    padding: 0.5rem;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.view-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--medium-gray);
}

.view-btn.active,
.view-btn:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.view-btn.active svg,
.view-btn:hover svg {
    fill: var(--white);
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Animation Observer */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    /* Adjust single background image for tablets */
    .product-bg-main {
        width: 50%;
        height: 75%;
        opacity: 0.5;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-visual {
        height: 400px;
    }
    
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .products-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 6rem var(--spacing-sm) 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    /* Background image better visibility on mobile */
    .product-bg-main {
        width: 100%;
        height: 50%;
        opacity: 0.3;
        right: 0;
        border-radius: 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .category-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
}
