/* ==========================================================================
   HYPE KICKS - ULTRA PREMIUM STREETWEAR E-COMMERCE
   ========================================================================== */

:root {
    --bg-dark: #0f1014;
    --bg-darker: #050608;
    --neon: #ccff00;
    --neon-hover: #e0ff4d;
    --text-primary: #ffffff;
    --text-muted: #888899;
    --border-color: rgba(255, 255, 255, 0.1);
    --surface: #1e1f26;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography Utilities */
.highlight {
    color: var(--neon);
}

.stroke-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    display: block;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}

section {
    padding: 10rem 0; /* Huge padding for premium feel */
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--neon);
    color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(0,0,0,0.1);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.6s;
    z-index: 0;
}

.btn-primary:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.btn-primary:active {
    transform: scale(0.96);
}

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

.btn-secondary:hover {
    border-color: var(--text-primary);
    background-color: rgba(255,255,255,0.05);
}

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-text {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: #fff;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: 0.4s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(15, 16, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #fff;
}

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

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--neon);
    transition: 0.3s ease;
}

.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--neon); }

.nav-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    font-size: 1.2rem;
}

.action-icon:hover { color: var(--neon); cursor: pointer; }

#menu-btn { display: none; cursor: pointer; }

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    inset: 0;
    background: var(--bg-darker);
    z-index: 2000;
    transform: translateX(100%);
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.mobile-drawer.open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
}

.drawer-header i { font-size: 2rem; cursor: pointer; }

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.drawer-links a {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #fff;
    text-transform: uppercase;
}

.drawer-links a:hover { color: var(--neon); }

/* Animation Engine */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
}

.glitch::before {
    left: 3px;
    text-shadow: -2px 0 red;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -3px;
    text-shadow: -2px 0 var(--neon);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    20% { clip: rect(12px, 9999px, 59px, 0); }
    40% { clip: rect(73px, 9999px, 11px, 0); }
    60% { clip: rect(62px, 9999px, 86px, 0); }
    80% { clip: rect(15px, 9999px, 32px, 0); }
    100% { clip: rect(53px, 9999px, 92px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    20% { clip: rect(3px, 9999px, 88px, 0); }
    40% { clip: rect(90px, 9999px, 34px, 0); }
    60% { clip: rect(81px, 9999px, 16px, 0); }
    80% { clip: rect(32px, 9999px, 7px, 0); }
    100% { clip: rect(66px, 9999px, 55px, 0); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-split {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text { flex: 1.2; }

.hero-title {
    font-size: clamp(4.5rem, 8vw, 8rem);
    line-height: 1;
    margin-bottom: 0;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 2rem;
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.floating-sneaker {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    transform-origin: center;
}

.neon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: var(--neon);
    transform: translate(-50%, -50%);
    filter: blur(100px);
    opacity: 0.15;
    z-index: 1;
    border-radius: 50%;
}

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

/* About Grid */
.about-section { background: var(--bg-darker); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    filter: grayscale(100%) contrast(1.2);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-img img:hover { filter: grayscale(0%) contrast(1); }

.section-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.feature-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list i { color: var(--neon); }

/* Scrolling Ticker */
.scrolling-ticker {
    background: var(--neon);
    color: var(--bg-dark);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.ticker-content {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll-x 30s linear infinite;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.ticker-content span { padding: 0 2rem; }

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

/* Products Carousel */
.products-section {
    background: var(--bg-dark);
    overflow: hidden;
}

.products-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 4rem;
}

.nav-btn {
    background: var(--surface);
    color: #fff;
    border: 1px solid var(--border-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-btn:hover {
    background: var(--neon);
    color: var(--bg-dark);
    border-color: var(--neon);
}

.prev-btn { left: -30px; }
.next-btn { right: -30px; }

.products-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2rem 0;
    scrollbar-width: none;
}

.products-carousel::-webkit-scrollbar { display: none; }

.product-card {
    min-width: 350px;
    flex: 0 0 350px;
    background: var(--surface);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    transition: 0.4s ease;
}

.product-card:hover { border-color: var(--neon); transform: translateY(-10px); }

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    z-index: 5;
}

.product-badge.hot { background: #ff3333; color: #fff; }

.product-img-wrap {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.product-img-wrap img {
    width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    filter: drop-shadow(0 20px 20px rgba(0,0,0,0.5));
}

.product-card:hover .product-img-wrap img { transform: scale(1.1) rotate(-5deg); }

.product-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--neon);
}

.btn-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-color);
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover { background: #fff; color: var(--bg-dark); }
.btn-icon.disabled { opacity: 0.5; cursor: not-allowed; background: var(--bg-dark); color: var(--text-muted); }

/* Editor's Pick Split Section */
.editors-pick {
    background: var(--bg-darker);
    position: relative;
}

.pb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pb-text { padding: 4rem 0; }

.p-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.pb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    filter: contrast(1.1);
}

/* Process Series */
.process-section {
    padding-bottom: 4rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.process-card {
    background: var(--surface);
    padding: 4rem 3rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: 0.4s;
}

.process-card:hover {
    border-color: var(--neon);
    background: rgba(204, 255, 0, 0.02);
}

.p-icon {
    font-size: 3rem;
    color: var(--neon);
    margin-bottom: 2rem;
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-card p {
    color: var(--text-muted);
}

/* Gallery Masonry */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 1rem;
    margin-top: 4rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
    filter: grayscale(80%);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }

/* Reviews */
.reviews-section {
    background: var(--bg-darker);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.review-box {
    background: var(--surface);
    padding: 3rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.quote-icon {
    font-size: 2rem;
    color: var(--neon);
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    color: #e0e0e0;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--neon);
}

.reviewer h4 { font-size: 1.2rem; margin-bottom: 0.2rem;}
.reviewer span { color: var(--text-muted); font-size: 0.9rem;}

/* Newsletter */
.newsletter-section {
    padding: 6rem 0 10rem;
}

.newsletter-card {
    background: var(--surface);
    border: 1px solid var(--border-color);
    padding: 6rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 5px; height: 100%; 
    background: var(--neon);
}

.nl-text { flex: 1; }

.nl-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.nl-text p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.nl-form {
    flex: 1;
    display: flex;
    gap: 1rem;
    width: 100%;
}

.nl-form input {
    flex: 1;
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    border-radius: 4px;
}

.nl-form input:focus { border-color: var(--neon); }

/* Footer */
.footer {
    background: #050508;
    padding-top: 8rem;
    border-top: 1px solid #1a1a20;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 1.5rem 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a { color: #fff; font-size: 1.2rem; }
.social-links a:hover { color: var(--neon); }

.footer-links h4 {
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-links a:hover { color: var(--neon); transform: translateX(5px); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid #1a1a20;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.bottom-links { display: flex; gap: 2rem; }
.bottom-links a:hover { color: #fff; }

/* Brutalist Contact Section */
.brutalist-contact {
    background: #000;
    padding: 10rem 0;
    border-top: 5px solid var(--neon);
}

.contact-brutal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    align-items: center;
}

.stroke-title {
    font-size: clamp(5rem, 12vw, 15rem);
    line-height: 0.85;
    font-family: var(--font-heading);
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    margin-bottom: 2rem;
}

.brutal-details {
    margin-top: 3rem;
}

.brutal-details p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    color: var(--neon);
}

.brutal-form {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.brutal-input-group {
    position: relative;
    border-bottom: 5px solid #fff;
    transition: 0.3s;
}

.brutal-input-group:focus-within {
    border-color: var(--neon);
}

.brutal-input-group input, .brutal-input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    padding: 2rem 0;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    outline: none;
}

.brutal-input-group input::placeholder, .brutal-input-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.brutal-btn {
    background: var(--neon);
    color: #000;
    border: none;
    padding: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s cubic-bezier(0.23, 1, 0.320, 1);
}

.brutal-btn:hover {
    background: #fff;
    transform: translate(10px, -10px);
    box-shadow: -10px 10px 0 var(--neon);
}

@media (max-width: 1024px) {
    .contact-brutal-grid { grid-template-columns: 1fr; gap: 5rem; text-align: center; }
    .stroke-title { font-size: 8rem; }
    .brutal-btn { padding: 1.5rem; font-size: 1.5rem; }
}

/* Responsive Options */
@media (max-width: 1024px) {
    .hero-split, .about-grid, .pb-grid { flex-direction: column; text-align: center; gap: 3rem; }
    .hero { padding-top: 150px; text-align: center; }
    .hero-desc { margin: 2rem auto; }
    .hero-buttons { justify-content: center; }
    .process-grid, .reviews-grid { grid-template-columns: 1fr; }
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
    .newsletter-card { flex-direction: column; text-align: center; padding: 4rem 2rem; }
    .nl-form { flex-direction: column; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    #menu-btn { display: block; }
    .section-title { font-size: 2.5rem; }
    section { padding: 6rem 0; }
    .gallery-masonry { grid-template-columns: 1fr; }
    .gallery-item.large, .gallery-item.tall { grid-column: auto; grid-row: auto; height: 300px;}
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
