/* ===================================
   ROOT
=================================== */

:root {

    --cream: #fff8e9;
    --black: #111111;
    --red: #ef233c;
    --pink: #ff4f9a;
    --orange: #ff7518;
    --purple: #7137c8;
    --sea: #19c6b2;
    --blue: #1769e0;
    --yellow: #ffd23f;

    --pixel:
        "Press Start 2P",
        monospace;

    --body:
        "Space Grotesk",
        sans-serif;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {

    background: var(--cream);
    color: var(--black);

    font-family: var(--body);

    overflow-x: hidden;
}


/* ===================================
   TOP BAR
=================================== */

.top-bar {

    background: var(--black);
    color: white;

    padding: 11px 20px;

    text-align: center;

    font-family: var(--pixel);
    font-size: 9px;

    letter-spacing: 1px;

    border-bottom: 4px solid var(--red);
}


/* ===================================
   NAVBAR
=================================== */

.navbar {

    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6%;

    border-bottom: 3px solid var(--black);

    background: var(--cream);

    position: sticky;
    top: 0;

    z-index: 100;
}


.logo {

    font-family: var(--pixel);

    font-size: 18px;
}


.logo span {
    color: var(--red);
}


.nav-links {

    display: flex;
    gap: 35px;
}


.nav-links a {

    color: var(--black);

    text-decoration: none;

    font-family: var(--pixel);

    font-size: 9px;
}


.nav-links a:hover {
    color: var(--red);
}


.nav-button {

    background: var(--red);
    color: white;

    text-decoration: none;

    padding: 14px 18px;

    border: 3px solid var(--black);

    box-shadow: 5px 5px 0 var(--black);

    font-family: var(--pixel);

    font-size: 9px;
}


.nav-button:hover {

    transform: translate(3px, 3px);

    box-shadow: 2px 2px 0 var(--black);
}


/* ===================================
   HERO
=================================== */

.hero {

    min-height: 680px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    padding: 80px 8%;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(255,79,154,.18),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(23,105,224,.15),
            transparent 25%
        );
}


.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .16;

    background-image:
        linear-gradient(#111 1px, transparent 1px),
        linear-gradient(90deg, #111 1px, transparent 1px);

    background-size: 35px 35px;

    pointer-events: none;
}


.hero-content {

    position: relative;

    z-index: 2;
}


.pixel-label {

    display: inline-block;

    background: var(--yellow);

    border: 3px solid var(--black);

    padding: 9px 13px;

    font-family: var(--pixel);

    font-size: 9px;

    margin-bottom: 22px;

    box-shadow: 5px 5px 0 var(--black);
}


.hero h1 {

    font-family: var(--pixel);

    font-size: clamp(42px, 7vw, 90px);

    line-height: .95;

    letter-spacing: -5px;

    margin-bottom: 25px;
}


.hero h1 span {

    color: var(--red);

    -webkit-text-stroke: 2px var(--black);

}


.hero h2 {

    font-family: var(--pixel);

    font-size: 13px;

    margin-bottom: 25px;
}


.hero p {

    max-width: 500px;

    font-size: 20px;

    line-height: 1.5;

    margin-bottom: 30px;
}


/* ===================================
   BUTTONS
=================================== */

.hero-buttons {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;
}


.pixel-button {

    display: inline-block;

    padding: 17px 23px;

    border: 3px solid var(--black);

    text-decoration: none;

    font-family: var(--pixel);

    font-size: 10px;

    cursor: pointer;

    box-shadow: 6px 6px 0 var(--black);

    transition: .15s;
}


.pixel-button:hover {

    transform: translate(4px, 4px);

    box-shadow: 2px 2px 0 var(--black);
}


.primary {

    background: var(--red);

    color: white;
}


.secondary {

    background: white;

    color: var(--black);
}


.hero-note {

    margin-top: 30px;

    font-family: var(--pixel);

    font-size: 9px;

    color: var(--red);
}


/* ===================================
   ARCADE CHARACTER
=================================== */

.hero-character {

    display: flex;

    justify-content: center;

    position: relative;
}


.arcade-screen {

    width: 390px;

    height: 430px;

    background: var(--black);

    border: 12px solid #222;

    border-radius: 25px;

    box-shadow:
        12px 12px 0 var(--red),
        20px 20px 0 var(--black);

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    align-items: center;

    position: relative;

    transform: rotate(3deg);
}


.arcade-screen::before {

    content: "";

    position: absolute;

    inset: 14px;

    border: 3px solid #333;

    pointer-events: none;
}


.screen-text {

    color: var(--yellow);

    font-family: var(--pixel);

    font-size: 12px;

    line-height: 1.7;

    text-align: center;

    z-index: 2;
}


.sock-character {

    width: 210px;

    height: 210px;

    border-radius: 50%;

    background: var(--red);

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 120px;

    border: 6px solid white;

    z-index: 2;
}


.score {

    color: white;

    font-family: var(--pixel);

    font-size: 9px;

    z-index: 2;
}


/* ===================================
   MARQUEE
=================================== */

.marquee {

    overflow: hidden;

    background: var(--red);

    color: white;

    border-top: 4px solid var(--black);

    border-bottom: 4px solid var(--black);

    padding: 16px 0;
}


.marquee-track {

    white-space: nowrap;

    font-family: var(--pixel);

    font-size: 12px;

    animation: marquee 20s linear infinite;
}


.marquee span {
    color: var(--yellow);
    margin: 0 25px;
}


@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* ===================================
   COLLECTION
=================================== */

.collection {

    padding: 110px 7%;
}


.section-heading {

    text-align: center;

    margin-bottom: 70px;
}


.section-heading h2 {

    font-family: var(--pixel);

    font-size: clamp(28px, 5vw, 55px);

    line-height: 1.3;

    margin-bottom: 18px;
}


.section-heading h2 span {

    color: var(--red);

}


.section-heading p {

    font-size: 18px;
}


/* ===================================
   PRODUCT GRID
=================================== */

.products {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 35px;

    max-width: 1300px;

    margin: auto;
}


.product-card {

    border: 4px solid var(--black);

    background: white;

    box-shadow: 10px 10px 0 var(--black);

    transition: .2s;

    position: relative;

    overflow: hidden;
}


.product-card:hover {

    transform:
        translate(-5px, -5px)
        rotate(-1deg);

    box-shadow: 15px 15px 0 var(--black);
}


.product-number {

    position: absolute;

    right: 15px;
    top: 15px;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: var(--yellow);

    border: 3px solid var(--black);

    display: flex;

    justify-content: center;
    align-items: center;

    font-family: var(--pixel);

    font-size: 9px;

    z-index: 3;
}


/* ===================================
   BOX MOCKUP
=================================== */

.product-image {

    height: 320px;

    padding: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}


.pink-card .product-image {
    background: #ffe0ee;
}


.rainbow-card .product-image {
    background: #dceeff;
}


.classic-card .product-image {
    background: #e7e2ff;
}


.box-art {

    width: 90%;

    height: 220px;

    position: relative;

    perspective: 800px;
}


.box-lid {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 135px;

    background: var(--cream);

    border: 4px solid var(--black);

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    font-family: var(--pixel);

    font-size: 17px;

    line-height: 1.7;

    z-index: 2;

    box-shadow: 8px 8px 0 var(--black);
}


.box-lid::after {

    content: "♛  🧦  ♛";

    position: absolute;

    bottom: 12px;

    font-size: 18px;

    color: var(--red);
}


.box-bottom {

    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 100px;

    background: var(--red);

    border: 4px solid var(--black);

    transform: translateY(-4px);

    box-shadow: 8px 8px 0 var(--black);
}


/* ===================================
   SOCKS
=================================== */

.mini-socks {

    position: absolute;

    bottom: 17px;

    left: 10%;

    width: 80%;

    display: flex;

    justify-content: space-around;

    z-index: 5;
}


.sock {

    width: 75px;
    height: 90px;

    border-radius:
        15px 15px 25px 25px;

    border: 4px solid var(--black);

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 28px;

    transform: rotate(
        calc(var(--r) * 1deg)
    );

    box-shadow: 4px 4px 0 var(--black);
}


.pink-sock {
    background: var(--pink);
    --r: -8;
}


.orange-sock {
    background: var(--orange);
    --r: 0;
}


.white-sock {
    background: white;
    color: var(--red);
    --r: 8;
}


.purple-sock {
    background: var(--purple);
    --r: -8;
}


.sea-sock {
    background: var(--sea);
    --r: 0;
}


.blue-sock {
    background: var(--blue);
    --r: 8;
}


.black-sock {
    background: #111;
    --r: -8;
}


.navy-sock {
    background: #102b52;
    --r: 8;
}


/* ===================================
   PRODUCT INFO
=================================== */

.product-info {

    padding: 25px;

    border-top: 4px solid var(--black);
}


.tag {

    display: inline-block;

    font-family: var(--pixel);

    font-size: 7px;

    background: var(--black);

    color: white;

    padding: 8px;

    margin-bottom: 15px;
}


.product-info h3 {

    font-family: var(--pixel);

    font-size: 17px;

    margin-bottom: 10px;
}


.product-info p {

    color: #555;

    margin-bottom: 22px;
}


.product-footer {

    display: flex;

    justify-content: space-between;

    border-top: 2px dashed var(--black);

    padding-top: 18px;

    font-family: var(--pixel);

    font-size: 9px;
}


/* ===================================
   STORY
=================================== */

.story {

    padding: 90px 7%;
}


.story-card {

    max-width: 1200px;

    margin: auto;

    background: var(--black);

    color: white;

    border: 5px solid var(--black);

    box-shadow: 14px 14px 0 var(--red);

    padding: 60px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;
}


.story-card .pixel-label {

    color: var(--black);

    background: var(--yellow);
}


.story-left h2 {

    font-family: var(--pixel);

    font-size: clamp(25px, 4vw, 48px);

    line-height: 1.4;
}


.story-left h2 span {

    color: var(--pink);
}


.story-right {

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.story-right p {

    font-size: 21px;

    line-height: 1.6;

    margin-bottom: 40px;
}


.stats {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}


.stats div {

    border: 2px solid white;

    padding: 20px;

    text-align: center;
}


.stats strong {

    display: block;

    font-family: var(--pixel);

    font-size: 25px;

    color: var(--yellow);

    margin-bottom: 10px;
}


.stats span {

    font-family: var(--pixel);

    font-size: 7px;
}


/* ===================================
   PREORDER
=================================== */

.preorder {

    padding: 100px 7%;

    background:
        linear-gradient(
            135deg,
            var(--pink),
            var(--purple),
            var(--blue)
        );
}


.preorder-box {

    max-width: 800px;

    margin: auto;

    background: var(--cream);

    border: 5px solid var(--black);

    box-shadow: 15px 15px 0 var(--black);

    padding: 60px;

    text-align: center;
}


.preorder-box h2 {

    font-family: var(--pixel);

    font-size: clamp(25px, 5vw, 50px);

    line-height: 1.5;

    margin-bottom: 20px;
}


.preorder-box h2 span {

    color: var(--red);
}


.preorder-box > p {

    font-size: 20px;

    margin-bottom: 25px;
}


.date-box {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 20px;

    margin: 30px auto;

    width: fit-content;

    border: 4px solid var(--black);

    padding: 20px 30px;

    background: var(--yellow);

    box-shadow: 7px 7px 0 var(--black);
}


.date-day {

    font-family: var(--pixel);

    font-size: 45px;
}


.date-box strong {

    display: block;

    font-family: var(--pixel);

    font-size: 13px;
}


.date-box small {

    display: block;

    margin-top: 8px;

    font-family: var(--pixel);

    font-size: 7px;
}


.preorder-form {

    display: flex;

    flex-direction: column;

    gap: 15px;

    max-width: 450px;

    margin: 35px auto 15px;
}


.preorder-form input {

    border: 3px solid var(--black);

    padding: 17px;

    font-family: var(--pixel);

    font-size: 9px;

    background: white;

    outline: none;
}


.preorder-form input:focus {

    box-shadow: 5px 5px 0 var(--red);
}


.preorder-form button {

    width: 100%;
}


.privacy {

    font-family: var(--pixel);

    font-size: 7px;

    color: #777;
}


/* ===================================
   FOOTER
=================================== */

footer {

    background: var(--black);

    color: white;

    text-align: center;

    padding: 55px 20px;
}


.footer-logo {

    font-family: var(--pixel);

    font-size: 20px;

    margin-bottom: 20px;
}


.footer-logo span {

    color: var(--red);
}


footer p {

    font-family: var(--pixel);

    font-size: 8px;

    color: var(--yellow);

    margin-bottom: 30px;
}


.footer-bottom {

    padding-top: 25px;

    border-top: 1px solid #444;

    font-size: 12px;

    color: #888;
}


/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 950px) {

    .nav-links {
        display: none;
    }


    .hero {

        grid-template-columns: 1fr;

        text-align: center;

        padding-top: 70px;
    }


    .hero p {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-buttons {
        justify-content: center;
    }


    .hero-character {
        margin-top: 70px;
    }


    .products {

        grid-template-columns:
            1fr;

        max-width: 550px;
    }


    .story-card {

        grid-template-columns:
            1fr;

        padding: 40px;

        gap: 40px;
    }

}


@media (max-width: 600px) {

    .top-bar {

        font-size: 7px;

        line-height: 1.7;
    }


    .navbar {

        height: 70px;

        padding: 0 5%;
    }


    .logo {

        font-size: 13px;
    }


    .nav-button {

        font-size: 7px;

        padding: 11px;
    }


    .hero {

        padding: 65px 5%;
    }


    .hero h1 {

        font-size: 42px;

        letter-spacing: -3px;
    }


    .hero h2 {

        font-size: 9px;
    }


    .hero p {

        font-size: 17px;
    }


    .arcade-screen {

        width: 290px;

        height: 340px;
    }


    .sock-character {

        width: 150px;
        height: 150px;

        font-size: 80px;
    }


    .collection,
    .story,
    .preorder {

        padding-left: 5%;
        padding-right: 5%;
    }


    .product-image {

        height: 280px;
    }


    .preorder-box {

        padding: 35px 20px;
    }


    .stats {

        grid-template-columns: 1fr;
    }

}
.brand-logo-img{display:block;width:150px;max-height:58px;object-fit:contain}.hero-packaging{position:relative;display:flex;align-items:center;justify-content:center;min-height:540px}.hero-package-img{width:min(620px,100%);max-height:520px;object-fit:contain;filter:drop-shadow(16px 18px 0 rgba(17,17,17,.14));transform:rotate(2deg);transition:.25s}.hero-package-img:hover{transform:scale(1.025)}.product-photo{width:100%;height:100%;object-fit:contain;display:block;transition:.25s}.product-card:hover .product-photo{transform:scale(1.035)}.collection-link{display:inline-block;margin-top:20px;background:var(--red);color:white;text-decoration:none;border:3px solid var(--black);padding:13px 16px;font-family:var(--pixel);font-size:8px;box-shadow:5px 5px 0 var(--black)}.product-hero{padding:80px 7% 70px;display:grid;grid-template-columns:1.05fr .95fr;gap:70px;align-items:center;background:radial-gradient(circle at 10% 20%,rgba(255,79,154,.16),transparent 28%),radial-gradient(circle at 90% 80%,rgba(23,105,224,.14),transparent 28%)}.product-hero-copy h1{font-family:var(--pixel);font-size:clamp(34px,5vw,70px);line-height:1.08;margin-bottom:18px}.product-hero-copy h1 span{color:var(--red)}.product-hero-copy .subtitle{font-family:var(--pixel);font-size:12px;line-height:1.8;margin-bottom:24px}.product-hero-copy>p{font-size:19px;line-height:1.65;max-width:620px;margin-bottom:28px}.detail-packaging{width:100%;max-height:520px;object-fit:contain;filter:drop-shadow(12px 15px 0 rgba(17,17,17,.15))}.detail-section{padding:95px 7%}.detail-section-heading{text-align:center;margin-bottom:55px}.detail-section-heading h2{font-family:var(--pixel);font-size:clamp(26px,4vw,48px);line-height:1.25;margin-bottom:15px}.detail-section-heading h2 span{color:var(--red)}.detail-section-heading p{font-size:18px}.photo-grid{max-width:1250px;margin:auto;display:grid;grid-template-columns:repeat(2,1fr);gap:28px}.photo-card{background:white;border:4px solid var(--black);box-shadow:9px 9px 0 var(--black);overflow:hidden;min-height:360px}.photo-card img{width:100%;height:100%;min-height:360px;display:block;object-fit:cover}.feature-grid{max-width:1100px;margin:auto;display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.feature-card{background:var(--cream);border:4px solid var(--black);padding:30px 25px;box-shadow:7px 7px 0 var(--red)}.feature-card strong{display:block;font-family:var(--pixel);font-size:10px;line-height:1.7;margin-bottom:14px}.feature-card p{font-size:15px;line-height:1.6;color:#444}.detail-preorder{padding:90px 7%;background:linear-gradient(135deg,var(--pink),var(--purple),var(--blue))}.detail-preorder-box{max-width:850px;margin:auto;background:var(--cream);border:5px solid var(--black);box-shadow:15px 15px 0 var(--black);padding:60px;text-align:center}.detail-preorder-box h2{font-family:var(--pixel);font-size:clamp(25px,4vw,48px);line-height:1.4;margin-bottom:18px}.detail-preorder-box h2 span{color:var(--red)}.detail-preorder-box p{font-size:19px;line-height:1.6;margin-bottom:28px}.back-link{display:inline-block;margin-top:20px;color:var(--black);font-family:var(--pixel);font-size:8px;text-decoration:none;border-bottom:2px solid var(--red);padding-bottom:5px}.footer-links{max-width:1100px;margin:0 auto 35px;display:flex;justify-content:center;flex-wrap:wrap;gap:12px 28px}.footer-links a{color:white;text-decoration:none;font-family:var(--pixel);font-size:8px}.footer-links a:hover{color:var(--yellow)}.footer-info{max-width:1100px;margin:0 auto 35px;display:grid;grid-template-columns:repeat(5,1fr);gap:15px;text-align:left}.footer-info div{border:2px solid #444;padding:18px;background:#181818}.footer-info strong{display:block;color:var(--yellow);font-family:var(--pixel);font-size:8px;line-height:1.6;margin-bottom:12px}.footer-info span{display:block;color:#bbb;font-size:12px;line-height:1.6}@media(max-width:950px){.product-hero{grid-template-columns:1fr;text-align:center}.product-hero-copy>p{margin-left:auto;margin-right:auto}.feature-grid{grid-template-columns:1fr;max-width:600px}.footer-info{grid-template-columns:repeat(2,1fr)}}@media(max-width:650px){.brand-logo-img{width:120px}.hero-packaging{min-height:350px}.product-hero{padding:60px 5%}.photo-grid{grid-template-columns:1fr}.photo-card,.photo-card img{min-height:300px}.detail-section,.detail-preorder{padding-left:5%;padding-right:5%}.detail-preorder-box{padding:35px 20px}.footer-info{grid-template-columns:1fr}}
