/* ==========================================================================
   CSS Variables & Tokens (Dark/Premium Theme)
   ========================================================================== */
   :root {
    /* Colors (Dark Theme Default) */
    --clr-primary: #3b82f6; /* Blue */
    --clr-primary-dark: #1d4ed8;
    --clr-primary-light: #60a5fa;
    
    --clr-dark-bg: #0b132b; /* Deep Navy Background */
    --clr-dark-surface: #152238; /* Slightly lighter surface */
    --clr-dark-surface-elevated: #1e2f4a;
    
    --clr-light: #f8fafc; /* Soft white text */
    --clr-gray-light: #cbd5e1; /* Silver accents */
    --clr-gray: #94a3b8;
    --clr-gray-dark: #64748b;
    
    --clr-accent: #10b981; /* Green tone */
    
    /* Theme Specific Variables */
    --hero-bg: url('../images/first\ background.png');
    --hero-overlay: linear-gradient(to right, rgba(11, 19, 43, 0.9) 0%, rgba(11, 19, 43, 0.6) 100%);
    --header-bg: rgba(11, 19, 43, 0.85);
    --header-scrolled: rgba(11, 19, 43, 0.98);
    --border-color: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] {
    --clr-primary: #0ea5e9;
    --clr-primary-dark: #0284c7;
    --clr-primary-light: #e0f2fe;
    
    --clr-dark-bg: #f8fafc;
    --clr-dark-surface: #ffffff;
    --clr-dark-surface-elevated: #f1f5f9;
    
    --clr-light: #0f172a;
    --clr-gray-light: #475569;
    --clr-gray: #64748b;
    --clr-gray-dark: #94a3b8;
    
    --hero-bg: url('../images/first\ background.png');
    --hero-overlay: transparent;
    --header-bg: rgba(255, 255, 255, 0.85);
    --header-scrolled: rgba(255, 255, 255, 0.98);
    --border-color: rgba(0, 0, 0, 0.05);
}

:root {
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Borders & Shadows */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 20px rgba(228, 228, 231, 0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky nav */
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--clr-dark-bg);
    color: var(--clr-gray-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    color: var(--clr-light);
    font-weight: 600;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section-padding {
    padding: 100px 0;
}

.bg-dark {
    background-color: var(--clr-dark-surface);
}

.highlight {
    color: var(--clr-primary);
}

.center {
    text-align: center;
}

.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.ml-2 { margin-left: 0.5rem; }

/* ==========================================================================
   Typography utilities
   ========================================================================== */
.section-title {
    margin-bottom: 50px;
}

.section-title h4 {
    color: var(--clr-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.title-line {
    width: 60px;
    height: 4px;
    background-color: var(--clr-primary);
    border-radius: 2px;
    margin-top: 15px;
}

.section-subheading {
    color: var(--clr-gray);
    font-size: 1.1rem;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-main);
    line-height: 1.6;
}

.center .title-line {
    margin: 15px auto 0 auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 1px;
}

/* Primary Button (Clean Blue Gradient) */
.btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.2);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn-primary:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 6px 15px rgba(14, 165, 233, 0.3);
    color: #ffffff;
}

.btn-primary:hover::before {
    opacity: 1;
}

/* Secondary / Outline Button */
.btn-secondary, .btn-outline {
    background-color: transparent;
    border: 1px solid var(--clr-primary);
    color: var(--clr-primary);
    box-shadow: none;
}

.btn-secondary::before, .btn-outline::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.05);
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn-secondary:hover, .btn-outline:hover {
    transform: translateY(-2px);
    border-color: var(--clr-light);
    color: var(--clr-light);
    box-shadow: none;
}

.btn-secondary:hover::before, .btn-outline:hover::before {
    opacity: 1;
}

/* WhatsApp Button (Elegant Green) */
.btn-whatsapp {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #ffffff;
    padding: 12px 28px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    border: none;
}

.btn-whatsapp i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-large {
    padding: 16px 42px;
    font-size: 1.15rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal), background-color 0.4s ease;
}

.header.scrolled {
    padding: 0;
    background-color: var(--header-scrolled);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-normal);
}

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

.brand-link {
    display: flex;
    align-items: center;
    gap: 20px; /* Increased spacing between logo and text */
    text-decoration: none;
}

.brand-logo {
    height: 52px; /* Bigger logo height */
    width: 52px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.brand-link:hover .brand-logo {
    transform: scale(1.05); /* Subtle hover effect */
    box-shadow: 0 6px 15px rgba(0, 102, 255, 0.3);
    border-color: rgba(0, 102, 255, 0.3);
}

.brand-text {
    display: flex;
    align-items: center;
    font-family: var(--font-main);
    font-size: 1.9rem;
    letter-spacing: 1px;
    transition: var(--transition-normal);
    text-transform: uppercase;
}

.brand-highlight {
    background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    margin-right: 8px;
}

.brand-name {
    color: var(--clr-light);
    font-weight: 700;
}

.brand-link:hover .brand-text {
    transform: translateX(3px); /* Subtle hover layout boost */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 1rem;
    color: var(--clr-gray-light);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--clr-primary);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--clr-light);
    cursor: pointer;
}



/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
    transition: background-image 0.4s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
    z-index: 1;
    transition: background 0.4s ease;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    border: none;
}

.hero-tagline {
    color: var(--clr-light);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
}

.hero-heading {
    font-size: clamp(2.4rem, 7vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    font-weight: 700;
}

.hero-heading .nowrap,
.hero-heading .highlight {
    font-size: inherit;
    font-weight: inherit;
    display: inline-block;
}

.hero-heading .highlight {
    background: linear-gradient(135deg, var(--clr-primary-light), var(--clr-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nowrap {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .nowrap {
        white-space: normal;
    }
}

.hero-subheading {
    font-size: 1.5rem;
    color: var(--clr-gray);
    margin-bottom: 40px;
    font-weight: 300;
}

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

/* ==========================================================================
   About Section
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--clr-gray);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--clr-primary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    font-weight: 500;
    color: var(--clr-light);
}

.about-image {
    position: relative;
}

.about-image {
    position: relative;
}

.about-image-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    aspect-ratio: 4/3;
    background-color: var(--clr-dark-surface);
}

.factory-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.about-image:hover .factory-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--clr-primary);
    padding: 15px 35px;
    border-top-right-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 10px -5px 20px rgba(0,0,0,0.2);
    z-index: 2;
}

.experience-badge i {
    font-size: 1.4rem;
    color: white;
}

.experience-badge span {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    line-height: 1.2;
}

/* ==========================================================================
   Product Showcase
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.footwear-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 5px 40px 5px;
    scrollbar-width: thin;
    scrollbar-color: var(--clr-primary) transparent;
}

.footwear-grid::-webkit-scrollbar {
    height: 4px;
}

.footwear-grid::-webkit-scrollbar-thumb {
    background: var(--clr-primary);
    border-radius: 10px;
}

.footwear-grid .product-card {
    min-width: 300px;
    flex: 0 0 300px;
    scroll-snap-align: start;
    overflow: hidden;
}

/* Specific for footwear products */
.footwear-grid .product-img {
    height: 300px;
    background: #0f1013;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footwear-grid .product-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.footwear-grid .product-card:hover .product-img img {
    transform: scale(1.05);
}

.footwear-grid .product-img::after {
    opacity: 0.4;
}

.footwear-grid .product-card .product-info {
    padding-top: 25px;
}

.market-price {
    text-decoration: line-through;
    color: var(--clr-gray);
    font-size: 0.95rem;
}

/* Mobile & Tablet Horizontal Scroll Layout */
@media (max-width: 1024px) {
    .products-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 10px 20px 40px 20px;
        margin-left: -20px;
        margin-right: -20px;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
        -webkit-overflow-scrolling: touch;
    }

    .products-grid::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .product-card {
        min-width: 300px;
        flex: 0 0 300px;
        scroll-snap-align: center;
        height: auto;
    }
}

.product-card {
    background-color: var(--clr-dark-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: var(--shadow-glow);
}

.product-img {
    position: relative;
    height: 280px;
    overflow: hidden;
    background-color: #0f1013; /* Consistent dark base */
}

.product-img::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.6);
    pointer-events: none;
    z-index: 1;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.brand-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--clr-primary);
    color: white;
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-main);
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.size-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info .btn-outline {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.product-specs li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: var(--clr-gray);
}

.product-specs li span:first-child {
    flex-shrink: 0;
}

.product-specs li span:last-child {
    color: var(--clr-light);
    font-weight: 600;
    text-align: right;
    line-height: 1.4;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: auto 0 15px 0; /* 'auto' top margin pushes pricing and button to the bottom */
    flex-wrap: wrap;
    padding-top: 20px;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--clr-light);
}

.market-price {
    text-decoration: line-through;
    color: var(--clr-gray);
    font-size: 1rem;
    opacity: 0.7;
}

.discount-badge {
    background-color: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(16, 185, 129, 0.2);
    margin-left: auto;
}

.selling-points {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.selling-points li {
    font-size: 0.85rem;
    color: var(--clr-gray);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.selling-points li i {
    font-size: 0.8rem;
    color: var(--clr-primary);
}

.product-info .btn {
    width: 100%;
    margin-top: 5px;
}


/* ==========================================================================
   Featured Brand Section
   ========================================================================== */
.brand-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: var(--clr-dark-surface-elevated);
    border-radius: var(--radius-lg);
    padding: 60px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.brand-container::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,102,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.brand-content h2 {
    font-size: 3rem;
}

.brand-content p {
    margin: 25px 0;
    font-size: 1.1rem;
    color: var(--clr-gray);
}

.brand-features {
    margin-bottom: 30px;
}

.brand-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.brand-features i {
    color: var(--clr-primary);
    font-size: 1.2rem;
}

.brand-image img {
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    transform: rotate(3deg);
    transition: var(--transition-normal);
}

.brand-image:hover img {
    transform: rotate(0deg) scale(1.02);
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-box {
    background-color: var(--clr-dark-bg);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-normal);
}

.feature-box:hover {
    transform: translateY(-5px);
    background-color: var(--clr-dark-surface-elevated);
    border-color: rgba(0, 102, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px auto;
    transition: var(--transition-normal);
}

.feature-box:hover .feature-icon {
    background: var(--clr-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--clr-gray);
    font-size: 0.95rem;
}

/* ==========================================================================
   Footwear Collection (Ecommerce Grid)
   ========================================================================== */
.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--clr-gray);
    padding: 8px 24px;
    border-radius: var(--radius-full);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: var(--clr-light);
    box-shadow: var(--shadow-glow);
}

.ecommerce-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ecommerce-card {
    background-color: var(--clr-dark-surface-elevated);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.ecommerce-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.ecommerce-img {
    height: 250px;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

.ecommerce-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ecommerce-card:hover .ecommerce-img img {
    transform: scale(1.15);
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff4757;
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
}

.ecommerce-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 25, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
    backdrop-filter: blur(2px);
    z-index: 1;
}

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

.ecommerce-overlay .btn-zoom {
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.ecommerce-card:hover .ecommerce-overlay .btn-zoom {
    transform: translateY(0);
}

.ecommerce-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ecommerce-info .category {
    font-size: 0.8rem;
    color: var(--clr-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.ecommerce-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

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

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

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

.ecommerce-info .short-desc {
    font-size: 0.9rem;
    color: var(--clr-gray-light);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.variants {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
    margin-bottom: 15px;
}

.variants .sizes, .variants .colors {
    font-size: 0.85rem;
    color: var(--clr-gray);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.w-100 {
    width: 100%;
}

.filter-item {
    display: flex;
}

.filter-item.hide {
    display: none;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 102, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: white;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
    padding: 100px 20px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cta-banner h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.3rem;
    color: var(--clr-gray-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--clr-dark-bg);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.05);
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.info-item p {
    color: var(--clr-gray);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--clr-dark-surface-elevated);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background-color: var(--clr-dark-bg);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--clr-light);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.2);
}

.submit-btn {
    width: 100%;
    font-size: 1.1rem;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #050811; /* Extra dark for footer */
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-main);
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo span {
    background: linear-gradient(135deg, #3b82f6 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.footer-col p {
    color: var(--clr-gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--clr-dark-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--clr-light);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background-color: var(--clr-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-col ul li a,
.footer-col ul li {
    color: var(--clr-gray);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-col ul li i {
    color: var(--clr-primary);
    font-size: 0.8rem;
    margin-right: 8px;
}

.footer-col ul li a:hover {
    color: var(--clr-primary);
    padding-left: 5px;
}


.footer-bottom {
    background-color: var(--clr-dark-surface-elevated);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-bottom p {
    color: var(--clr-gray);
    font-size: 0.9rem;
}

.developer-credit {
    margin-top: 8px;
    font-size: 0.8rem !important;
    color: #888 !important;
}

.credit-link {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.credit-link:hover {
    color: var(--clr-light);
}

/* Floating Theme Toggle */
.floating-theme-toggle {
    position: fixed;
    bottom: 105px;
    right: 35px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 15px rgba(59, 130, 246, 0.2);
    z-index: 999;
    transition: var(--transition-normal);
}

.floating-theme-toggle:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(59, 130, 246, 0.4);
    background: rgba(15, 23, 42, 0.9);
}

/* Light Mode Styles for Floating Toggle */
[data-theme="light"] .floating-theme-toggle {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--clr-gray-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .floating-theme-toggle:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--clr-primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 0 15px rgba(14, 165, 233, 0.2);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
/* ==========================================================================
   Responsive Design & Mobile Optimization
   ========================================================================== */

/* Large Tablets & Small Desktops (992px) */
@media (max-width: 992px) {
    .about-container,
    .brand-container,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .ecommerce-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-padding {
        padding: 80px 0;
    }
}

/* Tablets (768px) */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--clr-dark-bg);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition-normal);
        z-index: 1000;
        padding: 40px;
        text-align: center;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger {
        display: block;
    }

    .hero {
        min-height: 70vh;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-heading {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    
    .hero-subheading {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .cta-banner {
        padding: 60px 15px;
    }

    .cta-banner h2 {
        font-size: 2.2rem;
    }

    .cta-banner p {
        font-size: 1.1rem;
    }
    
    .section-title {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title h4 {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 30px;
        padding-top: 30px;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .experience-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .about-image-container {
        aspect-ratio: 16/9;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
    }

    /* --- MOBILE ECOMMERCE APP UI (768px & below) --- */
    
    /* --- MOBILE ECOMMERCE APP UI (768px & below) --- */
    
    .products-grid, .footwear-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        overflow-x: hidden !important;
        padding: 10px 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        scroll-snap-type: none !important;
    }

    .product-card {
        display: flex !important;
        flex-direction: row !important;
        min-width: 100% !important;
        height: 260px !important; /* Fixed equal height for perfect symmetry */
        border-radius: 12px !important;
        background-color: var(--clr-dark-surface-elevated) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
        flex: none !important;
        scroll-snap-align: none !important;
        overflow: hidden !important;
        transform: none !important;
        position: relative !important;
    }

    .product-card:hover {
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    }

    .product-img {
        width: 140px !important; /* Fixed square container base */
        height: 100% !important;
        flex-shrink: 0 !important;
        min-width: 0 !important; /* Fix for flexbox shrinking in older Android Chrome */
        background-color: #050811 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important; /* Remove all padding for edge-to-edge fit */
        border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .product-img .size-badge {
        display: none !important; /* Hide size labels from image area */
    }

    .product-img img {
        width: 100% !important; /* Touch only left and right edges */
        height: auto !important; /* Scale naturally */
        max-height: 100% !important; /* Prevent overflow */
        object-fit: contain !important; /* Professional fitting without zooming or cropping */
        transition: none !important;
        background-color: transparent !important;
    }

    /* Move discount badge to content section */
    .product-card .discount-badge {
        position: static !important;
        display: inline-block !important;
        background-color: rgba(16, 185, 129, 0.1) !important;
        color: #10b981 !important;
        padding: 2px 8px !important;
        border-radius: 4px !important;
        font-size: 0.65rem !important;
        font-weight: 700 !important;
        border: 1px solid rgba(16, 185, 129, 0.2) !important;
        margin: 0 !important;
        box-shadow: none !important;
    }

    .product-info {
        padding: 18px 15px !important;
        flex-grow: 1 !important;
        flex-shrink: 1 !important;
        min-width: 0 !important; /* Fix for flexbox content overflow */
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        overflow: hidden !important;
    }

    .product-info h3 {
        font-size: 1.15rem !important;
        margin-bottom: 8px !important;
        color: var(--clr-light) !important;
        white-space: normal !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
        margin-top: 0 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .product-specs {
        margin: 0 0 10px 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
    }

    .product-specs li {
        padding: 0 !important;
        border: none !important;
        font-size: 0.72rem !important;
        color: var(--clr-gray) !important;
        display: flex !important;
        justify-content: space-between !important;
        background: transparent !important;
        margin: 0 !important;
    }

    .product-specs li span:first-child {
        font-weight: 500 !important;
        color: var(--clr-gray-light) !important;
    }
    
    .product-specs li span:last-child {
        color: var(--clr-primary-light) !important;
        font-weight: 600 !important;
    }

    .selling-points {
        display: none !important;
    }

    .product-pricing {
        padding: 0 !important;
        margin-top: auto !important;
        margin-bottom: 12px !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        align-items: center !important;
    }

    .current-price {
        font-size: 1.35rem !important;
        font-weight: 800 !important;
        color: var(--clr-light) !important;
    }

    .market-price {
        display: inline-block !important;
        font-size: 0.85rem !important;
        text-decoration: line-through !important;
        opacity: 0.4 !important;
    }

    /* Smaller proportional button */
    .product-info .btn-outline {
        display: flex !important;
        width: fit-content !important;
        flex-shrink: 0 !important; /* Prevent button compression */
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
        text-align: center !important;
        border-radius: 6px !important;
        background: var(--clr-primary) !important;
        color: white !important;
        align-items: center !important;
        justify-content: center !important;
        font-weight: 600 !important;
        border: none !important;
        margin: 0 !important;
        box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2) !important;
    }

    .feature-box {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
}

/* Mobile Landscape & Large Phones (576px) */
@media (max-width: 576px) {
    .brand-text {
        font-size: 1.3rem;
    }

    .brand-logo {
        height: 40px;
        width: 40px;
    }

    .hero-heading {
        font-size: 2.2rem;
    }

    .hero-buttons {
        gap: 12px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .footer-logo {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px;
    }

    .info-item {
        padding: 15px;
        gap: 15px;
    }

    .info-item .icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }
}

/* Medium Mobile (425px) */
@media (max-width: 425px) {
    .brand-text {
        font-size: 1.15rem;
    }

    .brand-logo {
        height: 36px;
        width: 36px;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .hero-subheading {
        font-size: 1rem;
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }
}

/* Mobile Landscape & Large Phones (576px) */
@media (max-width: 576px) {
    .brand-text {
        font-size: 1.3rem;
    }

    .brand-logo {
        height: 40px;
        width: 40px;
    }

    .hero-heading {
        font-size: 2.2rem;
    }

    .hero-buttons {
        gap: 12px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .footer-logo {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px;
    }

    .info-item {
        padding: 15px;
        gap: 15px;
    }

    .info-item .icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }
}

/* Medium Mobile (425px) */
@media (max-width: 425px) {
    .brand-text {
        font-size: 1.15rem;
    }

    .brand-logo {
        height: 36px;
        width: 36px;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .hero-subheading {
        font-size: 1rem;
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }
}

/* Small Mobile (375px) */
@media (max-width: 375px) {
    .brand-text {
        font-size: 1.1rem;
    }

    .hero-heading {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .btn {
        padding: 9px 20px;
        font-size: 0.85rem;
    }
    
    .product-card {
        height: auto !important;
        min-height: 160px !important; /* Balanced height for narrow screens */
    }
    
    .product-img {
        width: 100px !important;
    }
    
    .product-info {
        padding: 10px 12px !important;
    }
}

/* Extra Small Mobile (320px) */
@media (max-width: 320px) {
    .brand-text {
        font-size: 1rem;
    }

    .brand-logo {
        height: 30px;
        width: 30px;
    }

    .hero-heading {
        font-size: 1.6rem;
    }

    .cta-banner h2 {
        font-size: 1.5rem;
    }

    .experience-badge {
        padding: 8px 12px;
    }

    .experience-badge span {
        font-size: 0.8rem;
    }
    
    .product-card {
        height: auto !important;
        min-height: 155px !important;
    }
    
    .product-img {
        width: 90px !important;
    }
    
    .product-info h3 {
        font-size: 0.95rem !important;
    }
    
    .current-price {
        font-size: 1rem !important;
    }
}

/* Landscape Mobile Fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }
    
    .nav-links {
        padding: 20px;
        justify-content: flex-start;
        overflow-y: auto;
    }
}

/* High-res scaling for TV/Large Screens */
@media (min-width: 1440px) {
    :root {
        --container-width: 1400px;
    }
    
    html {
        font-size: 18px;
    }
    
    .section-padding {
        padding: 120px 0;
    }
}

/* Fix for potential horizontal scroll on entire body */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Prevent image overflow */
img {
    max-width: 100%;
    height: auto;
}
