/* ==========================================
   SOLE STUDIO — Premium Sneaker Portfolio
   Design System & Global Styles
   ========================================== */

:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-tertiary: #1a1a25;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.05);

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.4);

    --accent-1: #7c3aed;
    --accent-2: #a855f7;
    --accent-3: #c084fc;
    --accent-gold: #f59e0b;
    --accent-gold-light: #fbbf24;

    --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #ec4899 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b, #fbbf24, #f59e0b);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #111118 100%);

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(124, 58, 237, 0.3);

    /* Spacing */
    --section-padding: clamp(80px, 10vw, 140px);
    --container-max: 1300px;
    --container-padding: clamp(20px, 4vw, 60px);

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ==========================================
   Reset & Base
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-1) var(--bg-primary);
}

html::-webkit-scrollbar {
    width: 6px;
}

html::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

html::-webkit-scrollbar-thumb {
    background: var(--accent-1);
    border-radius: 3px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ==========================================
   Custom Cursor
   ========================================== */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent-2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), background 0.3s;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), border-color 0.3s, opacity 0.3s;
    opacity: 0.5;
}

body:hover .cursor { opacity: 1; }

.cursor.hover {
    width: 50px;
    height: 50px;
    background: rgba(168, 85, 247, 0.2);
    mix-blend-mode: normal;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--accent-3);
    opacity: 0.8;
}

/* ==========================================
   Preloader
   ========================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-shoe {
    font-size: 60px;
    animation: preloaderBounce 1s var(--ease-out-back) infinite;
}

@keyframes preloaderBounce {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 6px;
    margin-top: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    margin: 20px auto 0;
    overflow: hidden;
}

.preloader-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px var(--container-padding);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.brand-icon {
    color: var(--accent-2);
    font-size: 1.4rem;
    animation: brandPulse 3s ease-in-out infinite;
}

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

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

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

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-hamburger span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   Shared Styles
   ========================================== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(40px, 6vw, 80px);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 24px rgba(124, 58, 237, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #a855f7, #ec4899, #7c3aed);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.5);
}

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

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-accent);
}

.btn-outline:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--accent-2);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gradient-gold);
    color: #0a0a0f;
    box-shadow: 0 4px 24px rgba(245, 158, 11, 0.3);
}

.btn-gold::before {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
}

.btn-gold:hover {
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.5);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px var(--container-padding) 40px;
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent-2);
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-subtitle.animated {
    animation: slideUp 0.8s var(--ease-out-expo) forwards;
}

.line {
    width: 40px;
    height: 2px;
    background: var(--accent-2);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line span {
    display: inline-block;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-desc.animated {
    animation: slideUp 0.8s var(--ease-out-expo) forwards;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.hero-cta.animated {
    animation: slideUp 0.8s var(--ease-out-expo) forwards;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shoe-wrapper {
    position: relative;
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    25% { transform: translateY(-15px) rotate(-3deg); }
    50% { transform: translateY(-25px) rotate(-5deg); }
    75% { transform: translateY(-10px) rotate(-7deg); }
}

.hero-shoe {
    width: min(500px, 90%);
    filter: drop-shadow(0 30px 60px rgba(124, 58, 237, 0.3));
    transition: filter 0.5s ease;
}

.shoe-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.shoe-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.4) 0%, transparent 70%);
    filter: blur(10px);
    animation: shadowPulse 6s ease-in-out infinite;
}

@keyframes shadowPulse {
    0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 0.5; }
    50% { transform: translateX(-50%) scaleX(0.8); opacity: 0.3; }
}

/* Hero Badges */
.hero-badge {
    position: absolute;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: scale(0.7);
}

.hero-badge.animated {
    animation: popIn 0.6s var(--ease-out-back) forwards;
}

.badge-top {
    top: 10%;
    right: 0;
}

.badge-bottom {
    bottom: 20%;
    left: 0;
}

.badge-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-2);
}

.badge-text {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 40px;
    opacity: 0;
}

.scroll-indicator.animated {
    animation: fadeIn 1s ease forwards;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-2), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.01% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

/* ==========================================
   Marquee
   ========================================== */
.marquee-section {
    padding: 30px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
    background: var(--bg-secondary);
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-tertiary);
    padding: 0 40px;
}

/* ==========================================
   Showcase Section
   ========================================== */
.showcase {
    padding: var(--section-padding) var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

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

.showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease;
    opacity: 0;
    transform: translateY(60px);
    perspective: 1000px;
}

.showcase-card.animated {
    animation: cardReveal 0.8s var(--ease-out-expo) forwards;
}

.showcase-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
    border-color: var(--border-accent);
}

.card-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.6s var(--ease-out-expo);
}

.showcase-card:hover .card-image {
    transform: scale(1.08) rotate(-2deg);
}

.card-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
}

.card-category {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-3);
    border: 1px solid var(--border-subtle);
}

.card-content {
    padding: 24px;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

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

.card-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-gold);
    background: rgba(245, 158, 11, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Card Shine Effect */
.card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 40%,
        rgba(255, 255, 255, 0.03) 45%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.03) 55%,
        transparent 60%
    );
    transform: translateX(-100%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.showcase-card:hover .card-shine {
    transform: translateX(100%);
}

/* ==========================================
   Parallax / Featured Section
   ========================================== */
.parallax-section {
    position: relative;
    padding: var(--section-padding) var(--container-padding);
    overflow: hidden;
    background: var(--bg-secondary);
}

.parallax-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.parallax-layer {
    position: absolute;
    inset: 0;
}

.parallax-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.circle-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-1);
    top: -200px;
    right: -200px;
    filter: blur(80px);
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-gold);
    bottom: -100px;
    left: -100px;
    filter: blur(60px);
}

.circle-3 {
    width: 300px;
    height: 300px;
    background: #ec4899;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
}

.parallax-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
}

.featured-shoe {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.featured-shoe-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: rotate(-15deg) scale(0.8);
}

.featured-shoe-image.animated {
    animation: rotateIn 1s var(--ease-out-expo) forwards;
}

.featured-img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 30px 60px rgba(245, 158, 11, 0.2));
    animation: featuredFloat 5s ease-in-out infinite;
}

@keyframes featuredFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

.featured-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    animation: goldGlow 4s ease-in-out infinite;
}

@keyframes goldGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.featured-info {
    opacity: 0;
    transform: translateX(50px);
}

.featured-info.animated {
    animation: slideRight 0.8s var(--ease-out-expo) forwards;
}

.featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.featured-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.featured-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.featured-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 36px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-tertiary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================
   Gallery Section
   ========================================== */
.gallery-section {
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.gallery-section .section-header {
    padding: 0 var(--container-padding);
}

.gallery-scroll {
    margin-top: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: flex;
    gap: 24px;
    padding: 0 var(--container-padding);
    width: max-content;
    animation: galleryAutoScroll 25s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes galleryAutoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); }
}

.gallery-item {
    flex-shrink: 0;
    width: 340px;
}

.gallery-image-wrap {
    position: relative;
    height: 360px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease;
}

.gallery-image-wrap:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
    transition: transform 0.6s var(--ease-out-expo);
}

.gallery-image-wrap:hover .gallery-img {
    transform: scale(1.1) rotate(-3deg);
}

.gallery-hover-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
}

.gallery-image-wrap:hover .gallery-hover-info {
    transform: translateY(0);
}

.gallery-hover-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.gallery-hover-info p {
    font-size: 1rem;
    color: var(--accent-2);
    font-weight: 600;
}

/* ==========================================
   About Section
   ========================================== */
.about-section {
    padding: var(--section-padding) var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-left {
    opacity: 0;
    transform: translateX(-50px);
}

.about-left.animated {
    animation: slideRight 0.8s var(--ease-out-expo) forwards;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 16px 0 20px;
}

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.4s var(--ease-out-expo), border-color 0.3s;
}

.feature-item.animated {
    animation: slideUp 0.6s var(--ease-out-expo) forwards;
}

.feature-item:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px) !important;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.feature-item h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 0.78rem;
    color: var(--text-tertiary);
}

/* About Image Collage */
.about-right {
    position: relative;
    height: 500px;
}

.about-image-collage {
    position: relative;
    width: 100%;
    height: 100%;
}

.collage-item {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: var(--bg-tertiary);
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease;
}

.collage-item:hover {
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.collage-1 {
    width: 250px;
    height: 250px;
    top: 0;
    right: 20px;
    animation: collageDrift1 8s ease-in-out infinite;
}

.collage-2 {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: collageDrift2 7s ease-in-out infinite;
}

.collage-3 {
    width: 200px;
    height: 200px;
    bottom: 0;
    right: 60px;
    animation: collageDrift3 9s ease-in-out infinite;
}

@keyframes collageDrift1 {
    0%, 100% { transform: translate(0, 0) rotate(0); }
    50% { transform: translate(-10px, 10px) rotate(2deg); }
}

@keyframes collageDrift2 {
    0%, 100% { transform: translateY(-50%) translate(0, 0); }
    50% { transform: translateY(-50%) translate(10px, -10px); }
}

@keyframes collageDrift3 {
    0%, 100% { transform: translate(0, 0) rotate(0); }
    50% { transform: translate(-10px, -10px) rotate(-2deg); }
}

/* ==========================================
   Testimonials
   ========================================== */
.testimonials-section {
    padding: var(--section-padding) var(--container-padding);
    background: var(--bg-secondary);
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.4s var(--ease-out-expo), border-color 0.3s;
}

.testimonial-card.animated {
    animation: slideUp 0.7s var(--ease-out-expo) forwards;
}

.testimonial-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px) !important;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: -10px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-author h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-tertiary);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-section {
    padding: var(--section-padding) var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    opacity: 0;
    transform: translateX(-50px);
}

.contact-info.animated {
    animation: slideRight 0.8s var(--ease-out-expo) forwards;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 16px 0 16px;
}

.contact-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.detail-icon {
    font-size: 1.2rem;
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px;
    opacity: 0;
    transform: translateY(40px);
}

.contact-form.animated {
    animation: slideUp 0.8s var(--ease-out-expo) forwards;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-input {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--accent-2);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-input::placeholder {
    color: var(--text-tertiary);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s var(--ease-out-expo), left 0.4s var(--ease-out-expo);
    border-radius: 1px;
}

.form-input:focus ~ .input-line {
    width: 100%;
    left: 0;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 60px var(--container-padding) 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-brand .brand-icon {
    font-size: 1.6rem;
}

.footer-brand .brand-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    padding: 4px 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-2);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* ==========================================
   Animations
   ========================================== */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes popIn {
    from { opacity: 0; transform: scale(0.7); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes rotateIn {
    from { opacity: 0; transform: rotate(-15deg) scale(0.8); }
    to { opacity: 1; transform: rotate(0) scale(1); }
}

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

/* Particle */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-2);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s linear infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text { order: 1; }
    .hero-image { order: 0; margin-bottom: 20px; }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-badge { display: none; }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-shoe {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .featured-stats {
        justify-content: center;
    }

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

    .about-right {
        height: 400px;
    }

    .testimonials-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    body { cursor: auto; }
    .cursor, .cursor-follower { display: none; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        transition: right 0.5s var(--ease-out-expo);
        border-left: 1px solid var(--border-subtle);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-hamburger {
        display: flex;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }

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

    .about-right {
        height: 350px;
    }

    .collage-1 {
        width: 180px;
        height: 180px;
    }

    .collage-2 {
        width: 160px;
        height: 160px;
    }

    .collage-3 {
        width: 150px;
        height: 150px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .gallery-item {
        width: 280px;
    }

    .gallery-image-wrap {
        height: 300px;
    }

    .featured-stats {
        gap: 24px;
    }

    .contact-form {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .hero-shoe {
        width: 90%;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ==========================================
   Performance: Reduced Motion
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .hero-shoe-wrapper,
    .featured-img,
    .collage-1, .collage-2, .collage-3,
    .gallery-track,
    .marquee-content {
        animation: none !important;
    }
}
