@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;700;900&display=swap');

:root {
    --black: #000000;
    --red: #ce1126;
    --green: #006a4e;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-800: #1a1a1a;
    --accent: var(--red);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--red);
}

/* Header - Nike Style */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0,0,0,0.8);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    align-items: center;
}

.nav-links .phone-number {
    background: var(--red);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
}

.nav-links div {
    cursor: pointer;
    transition: color 0.3s;
}

.nav-links div:hover {
    color: var(--red);
}

/* Hero Section - Coca Cola / Nike bold style */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: radial-gradient(circle at 50% 50%, #1a0000 0%, #000 100%);
}

.hero-bg-text {
    position: absolute;
    font-family: 'Archivo Black', sans-serif;
    font-size: 25vw;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

.hero-content {
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3rem, 12vw, 10rem);
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.hero h1 .highlight {
    color: var(--red);
    display: block;
}

.hero p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #888;
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* Flag Stripe Accent */
.flag-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    display: flex;
}

.stripe { flex: 1; }
.stripe.black { background: var(--black); }
.stripe.red { background: var(--red); }
.stripe.green { background: var(--green); }

/* Product Grid - Minimalist Nike Style */
.section-title {
    padding: 10rem 4rem 2rem;
    font-family: 'Archivo Black', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
}

.products-container {
    padding: 0 4rem 10rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #111;
    transition: border-color 0.3s;
}

.product-card:hover {
    border-color: var(--red);
}

.image-wrapper {
    width: 100%;
    aspect-ratio: 1/1.2;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.image-wrapper img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .image-wrapper img {
    transform: scale(1.05) translateY(-10px);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product-details h3 {
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.product-details p {
    color: #666;
    font-size: 0.85rem;
}

.product-price {
    font-weight: 900;
    color: var(--red);
    background: rgba(206, 17, 38, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.product-price::after {
    content: '';
    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);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* Gamified Cursor Trail */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--red);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--green);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.2s ease;
}

/* New Content Section */
.brand-manifesto {
    padding: 10rem 4rem;
    text-align: center;
    background: #050505;
}

.manifesto-text {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 6vw, 5rem);
    text-transform: uppercase;
    line-height: 1.1;
    color: #222;
}

.manifesto-text span {
    color: var(--white);
    transition: color 0.5s;
}

.manifesto-text span:hover {
    color: var(--red);
    text-shadow: 0 0 20px var(--red);
}
.card-action {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--red);
    padding: 1rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: white;
    text-decoration: none;
    z-index: 5;
}

.product-card:hover .card-action {
    transform: translateY(0);
}

/* Footer */
footer {
    padding: 6rem 4rem;
    background: #050505;
    border-top: 1px solid #111;
}

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

.footer-locations {
    display: flex;
    gap: 2rem;
    color: #444;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
}

.footer-locations span {
    transition: color 0.3s;
}

.footer-locations span:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
    header { padding: 1.5rem 2rem; }
    .section-title, .products-container { padding-left: 2rem; padding-right: 2rem; }
}

@media (max-width: 768px) {
    .nav-links div:not(.phone-number) {
        display: none;
    }
    .hero h1 { font-size: 5rem; }
    .section-title { font-size: 2rem; padding-top: 5rem; }
}

@media (max-width: 600px) {
    .grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3.5rem; }
    .footer-content { flex-direction: column; gap: 2rem; text-align: center; }
    .nav-links .phone-number { font-size: 0.6rem; }
}
