:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #ccff00;
    /* Neon Lime */
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Custom Cursor */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 21000;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 20999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

body.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    background: rgba(204, 255, 0, 0.1);
    mix-blend-mode: difference;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.glitch-link {
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.glitch-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    color: var(--accent-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.glitch-link:hover::before {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 5vw;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 12vw;
    line-height: 0.85;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.active-color {
    color: transparent;
    -webkit-text-stroke: 2px var(--accent-color);
    position: relative;
}

.hero-date {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    margin-bottom: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.cta-btn {
    display: inline-block;
    padding: 20px 60px;
    background: var(--accent-color);
    color: #000;
    font-weight: 900;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.cta-btn .marquee {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    white-space: nowrap;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cta-btn:hover .marquee {
    transform: translateY(0);
}

/* Ticker */
.ticker-wrap {
    width: 100%;
    background: var(--accent-color);
    padding: 15px 0;
    overflow: hidden;
    color: #000;
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 0.1em;
}

.ticker {
    display: flex;
    animation: ticker 20s linear infinite;
    width: max-content;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker__item {
    padding-right: 50px;
}

/* Shop Grid (Broken) */
.shop-grid {
    padding: 100px 5vw;
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto auto;
    gap: 20px;
    position: relative;
}

.product-card {
    position: relative;
    cursor: none;
}

.product-image {
    width: 100%;
    background: #111;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(204, 255, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 900;
    font-size: 2rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.product-card:hover .overlay {
    opacity: 1;
    transform: scale(1);
}

.product-info {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
}

.item-1 {
    grid-column: 2 / 6;
    grid-row: 1;
}

.item-2 {
    grid-column: 8 / 12;
    grid-row: 2;
    margin-top: -100px;
}

.item-3 {
    grid-column: 3 / 7;
    grid-row: 3;
    margin-top: -50px;
}

.text-block {
    grid-column: 7 / 12;
    grid-row: 1;
    font-family: var(--font-heading);
    font-size: 8vw;
    line-height: 0.9;
    color: #222;
    align-self: end;
    text-align: right;
    z-index: -1;
}

/* Lookbook */
.lookbook {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #111;
}

.collage-container {
    position: relative;
    text-align: center;
}

.outline-text {
    font-family: var(--font-heading);
    font-size: 15vw;
    color: transparent;
    -webkit-text-stroke: 2px var(--accent-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 1;
}

.solid-text {
    font-family: var(--font-heading);
    font-size: 15vw;
    color: #fff;
    position: relative;
    z-index: 2;
    mix-blend-mode: difference;
}

/* Footer */
.footer {
    padding: 60px 5vw;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: #333;
}

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

.footer-links a {
    font-weight: 700;
    font-size: 1.2rem;
}

.copyright {
    color: #666;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-title {
        font-size: 15vw;
    }

    .shop-grid {
        display: block;
        padding: 50px 20px;
    }

    .product-card {
        margin-bottom: 60px;
    }

    .text-block {
        display: none;
    }

    .nav {
        padding: 20px;
    }

    .nav-menu {
        display: none;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    width: 90%;
    max-width: 1000px;
    background: #000;
    border: 1px solid #333;
    position: relative;
    box-shadow: 0 0 50px rgba(204, 255, 0, 0.1);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: none;
    z-index: 10;
    line-height: 1;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 600px;
}

.modal-image-container {
    height: 100%;
    background: #050505;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #333;
    overflow: hidden;
}

.modal-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.modal-details {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-details h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 0.9;
    margin-bottom: 20px;
    color: #fff;
}

.modal-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.modal-desc {
    color: #888;
    margin-bottom: 40px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.size-selector {
    margin-bottom: 40px;
}

.size-label {
    display: block;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.size-options {
    display: flex;
    gap: 15px;
}

.size-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #333;
    background: transparent;
    color: #fff;
    font-weight: 700;
    cursor: none;
    transition: all 0.3s;
}

.size-btn:hover,
.size-btn.active {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

.add-to-cart-btn {
    width: 100%;
    padding: 20px;
    background: #fff;
    color: #000;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    cursor: none;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn .btn-text {
    position: relative;
    z-index: 2;
}

.add-to-cart-btn .btn-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.2s;
    z-index: 1;
}

.add-to-cart-btn:hover .btn-glitch {
    transform: translateX(0);
}

.add-to-cart-btn:active {
    transform: scale(0.98);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-image-container {
        height: 300px;
        padding: 20px;
        border-right: none;
        border-bottom: 1px solid #333;
    }

    .modal-details {
        padding: 30px;
    }

    .modal-details h2 {
        font-size: 2.5rem;
    }

    .modal-close {
        top: 10px;
        right: 15px;
        color: #fff;
    }
}