/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Improve performance on mobile */
@media (max-width: 768px) {
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* Hero Section */
.hero-section {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #0a0a0a url('mandala-pattern.svg') repeat;
    background-size: 400px 400px;
    animation: mandalaMove 120s linear infinite;
}

/* Subtle overlay for depth */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.3) 70%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 2;
}

/* Mandala movement animation */
@keyframes mandalaMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 400px 400px;
    }
}

/* WebGL Background Canvas - Hidden */
.webgl-background {
    display: none;
}

/* Pause Indicator */
.pause-indicator {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 200ms ease-in-out;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}



/* Hero content container */
.hero-content {
    text-align: center;
    z-index: 20;
    max-width: 1400px;
    padding: 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Add subtle backdrop for text readability */
.hero-content::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: -2rem;
    right: -2rem;
    bottom: 60%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: 20px;
    z-index: -1;
    backdrop-filter: blur(5px);
}

/* Hero Text Block */
.hero-text-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
    flex-shrink: 0;
    width: 100%;
}

/* Brand Label */
.brand-label {
    font-size: 12px;
    font-weight: 500;
    color: #A0A0A0;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
    animation: fadeInUp 1s ease-out 0.1s both;
}

/* Main Heading */
.main-heading {
    font-size: clamp(36px, 8vw, 60px);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #8e44ad 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Sub Heading */
.sub-heading {
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 400;
    color: #CFCFCF;
    line-height: 1.5;
    max-width: 600px;
    margin: 12px auto 50px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Explore Collection Button Container */
.explore-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Enhanced Explore Collection Button */
.explore-collection-btn {
    background: linear-gradient(135deg, #7F5AF0, #2CB67D);
    color: white;
    font-weight: 600;
    font-size: 18px;
    padding: 14px 32px;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(127, 90, 240, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.explore-collection-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(127, 90, 240, 0.4);
}

/* Button Icon */
.btn-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.explore-collection-btn:hover .btn-icon {
    transform: translateX(4px);
}



/* Shoe Scroll Track */
.shoe-scroll-track {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 30px 0 0 0;
    animation: fadeInUp 1s ease-out 0.6s both;
    min-height: 0;
    overflow: visible;
}

/* Shoe Carousel */
.shoe-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
    width: 100%;
    margin: 0 auto;
    overflow: visible;
    transform: translateX(var(--carousel-offset, 0px));
    transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Subtle background glow */
.shoe-carousel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.8;
    z-index: -1;
    pointer-events: none;
}

/* Shoe container styles */
.shoe-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 300px;
    border-radius: 24px;
    margin: 0 20px;
    flex-shrink: 0;
    overflow: visible;
    perspective: 1000px;
    transition: all 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base shoe image styles */
.shoe-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: all 800ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

/* Center shoe enhanced styling with beautiful shadow */
.shoe-container.center-shoe {
    transform: scale(1.2) translateY(-15px) !important;
    z-index: 10 !important;
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) !important;
}

.shoe-container.center-shoe .shoe-image {
    filter: brightness(1.15) contrast(1.08) saturate(1.1);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.35),
        0 15px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Add beautiful glow and shadow behind center shoe */
.shoe-container.center-shoe::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -20px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 1;
    transition: all 600ms ease;
}

/* Add ground shadow beneath selected shoe */
.shoe-container.center-shoe::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(15px);
    z-index: -2;
    transition: all 600ms ease;
}

/* Smooth scale animation for center shoe */
@keyframes smoothScale {
    0% {
        transform: scale(1) translateY(0px);
    }
    100% {
        transform: scale(1.2) translateY(-10px);
    }
}

/* Disable interactions for non-center shoes */
.shoe-container:not(.center-shoe) {
    pointer-events: none;
    cursor: default;
}

.shoe-container:not(.center-shoe) .shoe-image {
    cursor: default;
}

/* Card Styling - All Same Size by Default */
.shoe1 {
    background: #333333;
    box-shadow: 0 10px 25px rgba(51, 51, 51, 0.2);
    transform: scale(1) translateY(0px);
    z-index: 2;
    transition: all 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.shoe2 {
    background: #e66ba1;
    box-shadow: 0 10px 25px rgba(230, 107, 161, 0.2);
    transform: scale(1) translateY(0px);
    z-index: 2;
    transition: all 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.shoe3 {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: scale(1) translateY(0px);
    z-index: 2;
    transition: all 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.shoe4 {
    background: #9beb58;
    box-shadow: 0 10px 25px rgba(155, 235, 88, 0.2);
    transform: scale(1) translateY(0px);
    z-index: 2;
    transition: all 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.shoe5 {
    background: #c9a3e5;
    box-shadow: 0 10px 25px rgba(201, 163, 229, 0.2);
    transform: scale(1) translateY(0px);
    z-index: 2;
    transition: all 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.shoe3 .shoe-image {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Center shoe spotlight effect */
.shoe3::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    right: -100px;
    bottom: -100px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

/* Center shoe oval shadow */
.shoe3::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 30px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    filter: blur(20px);
    z-index: -1;
    pointer-events: none;
}

/* Center shoe oval shadow for all center shoes */
.shoe-container.center-shoe::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 30px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    filter: blur(20px);
    z-index: -1;
    pointer-events: none;
    transition: all 400ms ease-in-out;
}

/* Enhanced mobile touch interactions */
@media (hover: none) and (pointer: coarse) {
    .shoe-container.center-shoe:active {
        transform: scale(1.15) translateY(-20px) !important;
        transition: transform 0.1s ease;
    }

    .shop-now-btn:active {
        transform: translateX(-50%) translateY(-10px) scale(0.95);
    }

    .scroll-btn:active {
        transform: scale(0.9);
    }

    .explore-collection-btn:active {
        transform: scale(0.95);
    }
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .hero-section {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
    }

    /* Improve carousel overflow handling */
    .shoe-carousel {
        overflow: visible;
        -webkit-overflow-scrolling: touch;
    }

    .shoe-container {
        flex-shrink: 0;
        -webkit-transform: translateZ(0); /* Hardware acceleration */
        transform: translateZ(0);
    }

    /* Better touch targets */
    .scroll-btn, .indicator {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
}

/* Center shoe styling */
.shoe-container.center-shoe .shoe-image {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    background: none;
    border: none;
}

.shoe-container.center-shoe {
    pointer-events: all;
}

/* Shop Now button */
.shop-now-btn {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(102, 126, 234, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    z-index: 15;
    cursor: pointer;
}

.shop-now-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateX(-50%) translateY(-2px);
    box-shadow:
        0 12px 40px rgba(102, 126, 234, 0.4),
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}











/* Scroll Controls */
.scroll-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.scroll-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: bold;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
}

.scroll-indicators {
    display: flex;
    gap: 0.5rem;
}

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

.indicator.active {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Brand Card Styles */
.brand-card {
    cursor: pointer;
    transition: all 400ms ease;
}

.brand-card:hover {
    transform: scale(1.05) translateY(-5px);
}

.brand-logo {
    object-fit: contain !important;
    padding: 20px;
    border-radius: 20px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.brand-card .shop-now-btn {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
    font-weight: 600;
}

.brand-card:hover .shop-now-btn {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-15px);
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
}

/* Hover effects for center shoes only */
.shoe-container.center-shoe:hover {
    transform: translateX(var(--x, 0px)) translateY(var(--y, 0px)) rotateY(var(--rotate-y, 0deg)) translateY(-15px);
}

.shoe-container.center-shoe:hover .shoe-image {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.shoe-container.center-shoe:hover .shop-now-btn {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-15px);
    animation: buttonPulse 1.5s ease-in-out infinite;
}

/* Button pulse animation */
@keyframes buttonPulse {
    0%, 100% {
        box-shadow:
            0 8px 32px rgba(102, 126, 234, 0.3),
            0 4px 16px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow:
            0 12px 40px rgba(102, 126, 234, 0.5),
            0 6px 20px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

/* Hero call-to-action button */
.hero-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    animation: fadeInUp 1s ease-out 0.9s both;
    margin-top: 1rem;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.hero-cta:active {
    transform: translateY(0);
}

/* Fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Asics image enhancements to match Nike quality */
.shoe-image[src*="ASICS"] {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3)) 
            drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2))
            brightness(1.05) 
            contrast(1.1) 
            saturate(1.1);
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: translateZ(0);
    transition: all 0.3s ease;
}

.shoe-image[src*="ASICS"]:hover {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3))
            brightness(1.08) 
            contrast(1.15) 
            saturate(1.15);
    transform: translateZ(0) scale(1.02);
}

/* Enhanced shadow for center Asics shoe */
.shoe-container.center-shoe .shoe-image[src*="ASICS"] {
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3))
            brightness(1.1) 
            contrast(1.2) 
            saturate(1.2);
}

/* New Balance image enhancements to match Nike quality */
.shoe-image[src*="NEW+BALANCE"] {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3)) 
            drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2))
            brightness(1.05) 
            contrast(1.1) 
            saturate(1.1);
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: translateZ(0);
    transition: all 0.3s ease;
}

.shoe-image[src*="NEW+BALANCE"]:hover {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3))
            brightness(1.08) 
            contrast(1.15) 
            saturate(1.15);
    transform: translateZ(0) scale(1.02);
}

/* Enhanced shadow for center New Balance shoe */
.shoe-container.center-shoe .shoe-image[src*="NEW+BALANCE"] {
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3))
            brightness(1.1) 
            contrast(1.2) 
            saturate(1.2);
}

/* Puma image enhancements to match Nike quality */
.shoe-image[src*="PUMA"] {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3)) 
            drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2))
            brightness(1.05) 
            contrast(1.1) 
            saturate(1.1);
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: translateZ(0) scale(0.75);
    transition: all 0.3s ease;
}

.shoe-image[src*="PUMA"]:hover {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3))
            brightness(1.08) 
            contrast(1.15) 
            saturate(1.15);
    transform: translateZ(0) scale(1.02);
}

/* Enhanced shadow for center Puma shoe */
.shoe-container.center-shoe .shoe-image[src*="PUMA"] {
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3))
            brightness(1.1) 
            contrast(1.2) 
            saturate(1.2);
}

/* Reebok image enhancements to match Nike quality */
.shoe-image[src*="REEBOK"] {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3)) 
            drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2))
            brightness(1.05) 
            contrast(1.1) 
            saturate(1.1);
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: translateZ(0);
    transition: all 0.3s ease;
}

.shoe-image[src*="REEBOK"]:hover {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3))
            brightness(1.08) 
            contrast(1.15) 
            saturate(1.15);
    transform: translateZ(0) scale(1.02);
}

/* Enhanced shadow for center Reebok shoe */
.shoe-container.center-shoe .shoe-image[src*="REEBOK"] {
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3))
            brightness(1.1) 
            contrast(1.2) 
            saturate(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        background-size: 200px 200px;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        padding: 30px 20px 20px;
        max-width: 95vw;
        gap: 1.5rem;
        justify-content: flex-start;
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-text-block {
        margin-bottom: 30px;
        padding-top: 20px;
        flex-shrink: 0;
    }

    .brand-label {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .main-heading {
        font-size: clamp(28px, 7vw, 48px);
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .sub-heading {
        font-size: clamp(14px, 3.5vw, 16px);
        margin: 10px auto 40px;
        max-width: 90%;
        line-height: 1.4;
    }

    .shoe-scroll-track {
        margin: 20px 0 0 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 400px;
    }

    .shoe-carousel {
        height: 280px;
        padding: 0 10px;
        margin: 20px 0;
    }

    .shoe-container {
        width: 160px;
        height: 220px;
        margin: 0 10px;
    }

    .shoe-image {
        width: 100%;
        height: 100%;
    }

    .shop-now-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
        bottom: -35px;
        border-radius: 20px;
    }

    .scroll-controls {
        gap: 1.5rem;
        margin-top: 30px;
        flex-shrink: 0;
    }

    .scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .explore-collection-btn {
        font-size: 16px;
        padding: 12px 28px;
    }

    .explore-button-container {
        margin-top: 25px;
        flex-shrink: 0;
    }


}

/* Extra small screens */
@media (max-width: 360px) {
    .hero-content {
        padding: 20px 10px 10px;
        gap: 0.8rem;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-text-block {
        padding-top: 10px;
        margin-bottom: 20px;
    }

    .main-heading {
        font-size: clamp(20px, 5.5vw, 32px);
        margin-bottom: 6px;
    }

    .sub-heading {
        font-size: clamp(11px, 2.8vw, 13px);
        margin: 6px auto 30px;
    }

    .shoe-scroll-track {
        min-height: 300px;
        margin-top: 10px;
    }

    .shoe-container {
        width: 120px;
        height: 160px;
        margin: 0 6px;
    }

    .shoe-carousel {
        height: 200px;
        margin: 10px 0;
    }

    .scroll-controls {
        gap: 0.8rem;
        margin-top: 20px;
    }

    .explore-collection-btn {
        font-size: 13px;
        padding: 9px 20px;
    }

    .explore-button-container {
        margin-top: 15px;
    }


}

@media (max-width: 480px) {
    .hero-section {
        background-size: 150px 150px;
        padding: 0;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        padding: 25px 15px 15px;
        gap: 1rem;
        max-width: 100vw;
        justify-content: flex-start;
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-text-block {
        margin-bottom: 25px;
        padding-top: 15px;
        flex-shrink: 0;
    }

    .brand-label {
        font-size: 9px;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }

    .main-heading {
        font-size: clamp(24px, 6vw, 36px);
        margin-bottom: 8px;
        line-height: 1.1;
    }

    .sub-heading {
        font-size: clamp(12px, 3vw, 14px);
        margin: 8px auto 35px;
        max-width: 95%;
        line-height: 1.4;
    }

    .shoe-scroll-track {
        margin: 15px 0 0 0;
        flex: 1;
        min-height: 350px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .shoe-carousel {
        height: 220px;
        padding: 0 5px;
        margin: 15px 0;
    }

    .shoe-container {
        width: 140px;
        height: 180px;
        margin: 0 8px;
    }

    .shop-now-btn {
        font-size: 0.8rem;
        padding: 8px 16px;
        bottom: -30px;
        border-radius: 18px;
        letter-spacing: 0.2px;
    }

    .scroll-controls {
        gap: 1rem;
        margin-top: 25px;
        flex-shrink: 0;
    }

    .scroll-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .explore-collection-btn {
        font-size: 14px;
        padding: 10px 24px;
    }

    .explore-button-container {
        margin-top: 20px;
        flex-shrink: 0;
    }

    /* Improve touch targets */
    .scroll-btn, .indicator, .shop-now-btn, .explore-collection-btn {
        min-height: 44px;
        min-width: 44px;
    }

    .indicator {
        min-width: 20px;
        min-height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .indicator::after {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: currentColor;
    }
}
