* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-cyan: #00fff9;
    --neon-pink: #ff006e;
    --neon-purple: #8338ec;
    --neon-yellow: #ffbe0b;
    --dark-bg: #0d0d0d;
    --darker-bg: #050505;
    --card-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-gradient: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-pink) 100%);
    --glow-cyan: 0 0 20px rgba(0, 255, 249, 0.5);
    --glow-pink: 0 0 20px rgba(255, 0, 110, 0.5);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Disable custom cursor on mobile */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
}


/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 10000;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    transition: all 0.15s;
}

body:hover .cursor-dot,
body:hover .cursor-outline {
    opacity: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 249, 0.1);
}

/* FIX MOBILE SCROLL */
@media (max-width: 768px) {
    .navbar {
        position: sticky; /* 🔥 THIS FIXES THE STUCK SCROLL */
    }
}


.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--neon-cyan);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.search-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    color: var(--neon-cyan);
    filter: drop-shadow(var(--glow-cyan));
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-icon:hover {
    filter: drop-shadow(var(--glow-cyan));
    color: var(--neon-cyan);
}

.cart-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--neon-pink);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: var(--glow-pink);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    padding-top: 60px;
    overflow: visible; /* 🔥 FIX */
}


.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    font-family: 'Bebas Neue', cursive;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 255, 249, 0.05);
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 249, 0.1);
    border: 1px solid var(--neon-cyan);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: var(--glow-cyan);
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    line-height: 0.9;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(var(--glow-pink));
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat h3 {
    font-size: 2.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1.2rem 2.5rem;
    border: none;
    /* border-radius: 8px; */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 10px 40px rgba(131, 56, 236, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(131, 56, 236, 0.6);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.btn-arrow {
    transition: transform 0.3s;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Hero Showcase */
.hero-showcase {
    display: flex;
    padding-right:20px ;
    gap: 2rem;
    position: relative;
}

.showcase-card {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s;
    cursor: pointer;
}

.showcase-card:hover {
    transform: translateY(-20px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 60px rgba(0, 255, 249, 0.3);
}

.card-active {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--neon-pink);
    box-shadow: 0 20px 60px rgba(255, 0, 110, 0.4);
}

/* Zoom effect for 2nd showcase card */
.showcase-zoom {
    transform: scale(1.15) translateY(-15px);
    z-index: 2;
}

.showcase-zoom:hover {
    transform: scale(1.2) translateY(-25px);
}

.card-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.showcase-card:hover .card-image img {
    transform: scale(1.1);
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.showcase-card:hover .card-shine {
    left: 100%;
}

.card-info {
    padding: 1.5rem;
    text-align: center;
}

.card-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.card-info p {
    color: var(--neon-cyan);
    font-weight: 700;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--neon-cyan);
    border-radius: 20px;
    position: relative;
    box-shadow: var(--glow-cyan);
}

.mouse::before {
    content: '';
    width: 6px;
    height: 10px;
    background: var(--neon-cyan);
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* Featured Jacket Section */
.featured-jacket {
    padding: 100px 0;
    background: var(--darker-bg);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.featured-tag {
    display: inline-block;
    background: var(--neon-yellow);
    color: var(--dark-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.featured-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.featured-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.featured-specs {
    list-style: none;
    margin-bottom: 2rem;
}

.featured-specs li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.featured-price {
    margin-bottom: 2rem;
}

.price-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-featured {
    background: var(--neon-cyan);
    color: var(--dark-bg);
    box-shadow: 0 10px 40px rgba(0, 255, 249, 0.4);
    font-size: 1.1rem;
    padding: 1.3rem 3rem;
}

.btn-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 255, 249, 0.6);
}

.featured-visual {
    position: relative;
}

.featured-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 30px 80px rgba(0, 255, 249, 0.3);
}

.featured-image-wrapper img,
.featured-video {
    width: 100%;
    display: block;
    object-fit: cover;
}

.featured-video {
    border-radius: 28px;
}

.image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 249, 0.2) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.color-picker {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
}

.color-options {
    display: flex;
    gap: 1rem;
}

.color-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.color-btn.active,
.color-btn:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    transform: scale(1.1);
}

/* Products Section */
.products {
    padding: 100px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    color: var(--neon-cyan);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4.5rem;
    line-height: 1;
    letter-spacing: 2px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.view-options {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.view-btn.active,
.view-btn:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(131, 56, 236, 0.3);
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background: var(--card-bg);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn .count {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--accent-gradient);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(131, 56, 236, 0.3);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    border: 2px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 60px rgba(0, 255, 249, 0.2);
}

.card-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.badge-new {
    background: var(--neon-cyan);
    color: var(--dark-bg);
    box-shadow: var(--glow-cyan);
}

.badge-trending {
    background: var(--neon-pink);
    color: white;
    box-shadow: var(--glow-pink);
}

.badge-sale {
    background: var(--neon-yellow);
    color: var(--dark-bg);
}

.badge-premium {
    background: var(--accent-gradient);
    color: white;
}

.badge-favorite {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: var(--neon-pink);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
}

.badge-favorite:hover {
    background: var(--neon-pink);
    color: white;
    box-shadow: var(--glow-pink);
}

.product-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.15);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view,
.add-to-cart-overlay {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-view:hover,
.add-to-cart-overlay:hover {
    background: var(--neon-cyan);
    color: var(--dark-bg);
    box-shadow: var(--glow-cyan);
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.product-category {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
}

.price del {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rating span:first-child {
    color: var(--neon-yellow);
    font-size: 0.9rem;
}

.rating span:last-child {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

.stock-status {
    padding: 0.3rem 1rem;
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.stock-status.hot {
    background: rgba(255, 0, 110, 0.1);
    color: var(--neon-pink);
}

.stock-status.premium {
    background: rgba(131, 56, 236, 0.1);
    color: var(--neon-purple);
}

.size-options {
    display: flex;
    gap: 0.5rem;
}

.size-btn {
    flex: 1;
    padding: 0.6rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.size-btn:hover,
.size-btn.active {
    background: var(--neon-cyan);
    color: var(--dark-bg);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

/* Drops Section */
.drops {
    padding: 100px 0;
    background: var(--darker-bg);
}

.drops-header {
    text-align: center;
    margin-bottom: 4rem;
}

.drops-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4.5rem;
    letter-spacing: 2px;
}

.drops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.drop-card {
    padding: 3rem 2rem;
    background: var(--card-bg);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.drop-card.featured {
    background: var(--accent-gradient);
    border-color: transparent;
    transform: scale(1.05);
}

.drop-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 60px rgba(0, 255, 249, 0.2);
}

.drop-date {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.drop-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.drop-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.drop-card.featured p {
    color: rgba(255, 255, 255, 0.8);
}

.btn-ghost {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 255, 249, 0.1);
}

.footer-newsletter {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-newsletter h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    background: var(--card-bg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    /* border-radius: 8px; */
    color: var(--text-primary);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    padding: 0.8rem 1.5rem;
    background: var(--card-bg);
    color: var(--text-primary);
    text-decoration: none;
    /* border-radius: 8px; */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(131, 56, 236, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.developer-credit {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.dev-name {
    color: var(--neon-cyan);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.dev-name:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 249, 0.1);
    border: 1px solid rgba(0, 255, 249, 0.3);
    /* border-radius: 8px; */
    color: var(--neon-cyan);
    font-weight: 500;
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }

    40% {
        opacity: 1;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {

    .hero-grid,
    .featured-grid,
    .footer-content {
        grid-template-columns: 1fr;
        margin-top: 45px;
    }

    .hero-bg-text {
        font-size: 10rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title,
    .featured-title,
    .drops-title {
        font-size: 3rem;
    }

    .hero-showcase {
        flex-wrap: wrap;
    }

    .drops-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .category-tabs {
        overflow-x: auto;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
    border: 2px solid transparent;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
    border-color: #fff;
}

.whatsapp-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Update for 'COP NOW' buttons to match the vibe */
.add-to-cart-overlay {
    background: var(--neon-cyan) !important;
    color: var(--dark-bg) !important;
    font-weight: 800 !important;
    letter-spacing: 1px;
}

.add-to-cart-overlay:hover {
    background: #fff !important;
    box-shadow: 0 0 20px var(--neon-cyan) !important;
}

/* Ensure mobile responsiveness for the float button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Nav Logo */
.nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Developer Credit */
.developer-credit {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.developer-credit a {
    color: var(--neon-cyan);
    text-decoration: none;
}

.developer-credit a:hover {
    text-decoration: underline;
}

/* Move LEFT hero content slightly to the right */
.hero-main {
    margin-left: 60px;
}

/* Large screens */
@media (min-width: 1400px) {
    .hero-main {
        margin-left: 90px;
    }
}

/* Tablet & Mobile - reset */
@media (max-width: 1024px) {
    .hero-main {
        margin-left: 0;
    }
}

/* ============================= */
/* TRUE MOBILE HERO FIX */
/* ============================= */


/* Allow full page scrolling */
html, body {
    width: 100%;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Hero must NOT lock the screen */
/* .hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    overflow: visible;
} */
@media (max-width: 768px) {

    /* HERO CONTAINER */
    .hero {
        padding: 2px 18px 30px;
    }

    /* LEFT CONTENT */
    .hero-main {
        margin: 0;
    }

    /* BADGE */
    .hero-badge {
        margin-bottom: 14px;
        transform: scale(0.95);
    }

    /* TITLE */
    .hero-title {
        font-size: 2.1rem;
        line-height: 1.1;
        margin-bottom: 12px;
    }

    .hero-title .title-line {
        margin-bottom: 2px;
    }

    /* DESCRIPTION */
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 22px;
        opacity: 0.8;
    }

    /* STATS */
    .hero-stats {
        display: flex;
        justify-content: space-between;
        margin-bottom: 32px;
    }

    .hero-stats .stat h3 {
        font-size: 1.15rem;
    }

    .hero-stats .stat p {
        font-size: 0.72rem;
    }

    /* BUTTONS */
    .cta-buttons {
        gap: 12px;
        margin-bottom: 38px; /* IMPORTANT */
    }

    .btn {
        padding: 15px 18px;
        font-size: 0.95rem;
        border-radius: 14px;
    }

    /* PUSH CARDS DOWN */
    .hero-showcase {
        margin-top: 10px;
        padding-top: 18px;
    }

    .showcase-card {
        height: 240px;
        border-radius: 16px;
    }
}


.product-image {
    position: relative;
    overflow: hidden;
}

/* All slides stacked */
.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1.2s ease;
    transform: scale(1.02);  /* slight smooth zoom feel */
}

/* Visible slide */
.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}
.collection-center{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px auto;
    text-align: center;
}
/* ================= MOBILE NAVBAR FIX ================= */

/* Disable custom cursor on mobile */
@media (max-width: 768px) {
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

/* Navbar base */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(13,13,13,0.98);
}

body {
    padding-top: 70px;
}

/* Nav inner */
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* Desktop nav */
.nav-links {
    display: flex;
    gap: 30px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0d0d0d;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 25px 0;
        transform: translateY(-120%);
        transition: 0.3s ease;
        z-index: 9999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    

    .nav-links li a {
        font-size: 18px;
    }
}
