/* =========================================
   COOLKIDDEPT. — RETRO Y2K / WINDOWS STYLE
   ========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #050505;
    color: #eeeeee;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}


/* =========================================
   BROWSER WINDOW
   ========================================= */

.browser-window {
    width: 96%;
    max-width: 1450px;
    margin: 18px auto;
    border: 2px solid #777;
    background: #111;
    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.08),
        0 0 45px rgba(120, 220, 255, 0.08);
}


/* =========================================
   TITLE BAR
   ========================================= */

.title-bar {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;

    color: #111;

    background:
        linear-gradient(
            to bottom,
            #ffffff 0%,
            #d8d8d8 35%,
            #969696 50%,
            #eeeeee 75%,
            #999999 100%
        );

    border-bottom: 1px solid #222;
}

.window-title {
    font-weight: bold;
    font-size: 12px;
}

.window-buttons {
    display: flex;
    gap: 3px;
}

.window-buttons span {
    width: 22px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #d5d5d5;
    border: 1px solid #555;

    font-weight: bold;
}


/* =========================================
   MENU BAR
   ========================================= */

.menu-bar {
    height: 25px;

    display: flex;
    align-items: center;

    gap: 24px;
    padding-left: 10px;

    background: #eeeeee;
    color: #111;

    border-bottom: 1px solid #888;
}

.menu-bar span {
    cursor: default;
}


/* =========================================
   INTERNET EXPLORER TOOLBAR
   ========================================= */

.browser-toolbar {
    min-height: 48px;

    display: flex;
    align-items: center;
    gap: 5px;

    padding: 5px;

    background:
        linear-gradient(
            to bottom,
            #f8f8f8,
            #cfcfcf
        );

    border-bottom: 1px solid #777;
}

.browser-toolbar button {
    min-height: 34px;

    padding: 3px 9px;

    background:
        linear-gradient(
            to bottom,
            #ffffff,
            #d1d1d1
        );

    border: 1px solid #777;

    color: #111;

    cursor: pointer;

    font-size: 11px;
}

.browser-toolbar button:hover {
    background:
        linear-gradient(
            to bottom,
            #ffffff,
            #bdefff
        );
}


/* =========================================
   ADDRESS BAR
   ========================================= */

.address-bar {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 5px;

    background: #d8d8d8;
    color: #111;

    border-bottom: 2px solid #333;
}

.address-input {
    flex: 1;

    height: 24px;

    display: flex;
    align-items: center;

    padding-left: 8px;

    background: #ffffff;

    border: 1px solid #777;

    color: #222;
}

.go-button {
    height: 24px;

    padding: 0 15px;

    border: 1px solid #555;

    background:
        linear-gradient(
            to bottom,
            #ffffff,
            #bcbcbc
        );

    font-weight: bold;

    cursor: pointer;
}


/* =========================================
   WEBSITE
   ========================================= */

.website {
    min-height: 1000px;

    background:
        radial-gradient(
            circle at 50% 10%,
            #242424 0%,
            #0c0c0c 35%,
            #020202 75%
        );

    overflow: hidden;
}


/* =========================================
   HEADER
   ========================================= */

.site-header {
    position: relative;

    min-height: 230px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-bottom: 1px solid #888;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(255,255,255,0.13),
            transparent 40%
        );

    overflow: hidden;
}

.site-header::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 3px,
            rgba(255,255,255,0.025) 4px
        );

    pointer-events: none;
}

.brand {
    text-align: center;

    position: relative;
    z-index: 2;
}

.brand h1 {
    margin: 0;

    font-family: Impact, Arial Black, sans-serif;

    font-size: clamp(48px, 8vw, 105px);

    letter-spacing: 5px;

    color: #e7e7e7;

    text-shadow:
        1px 1px 0 #777,
        2px 2px 0 #444,
        0 0 12px rgba(255,255,255,0.35),
        0 0 30px rgba(180,240,255,0.15);
}

.brand-line {
    margin-top: 5px;

    color: #c9f8ff;

    letter-spacing: 5px;

    font-size: 11px;

    text-shadow:
        0 0 6px rgba(150,240,255,0.7);
}

.header-star {
    position: absolute;

    color: #ffffff;

    font-size: 45px;

    text-shadow:
        0 0 10px white,
        0 0 20px #c8f7ff;
}

.left-star {
    left: 7%;
    top: 40px;
}

.logo-person {
    position: absolute;

    right: 5%;
    bottom: -5px;

    width: 145px;
    height: 145px;

    object-fit: cover;

    border-radius: 50%;

    border: 2px solid #d9d9d9;

    box-shadow:
        0 0 8px white,
        0 0 25px rgba(190,240,255,0.4);

    image-rendering: pixelated;
}


/* =========================================
   NAVIGATION
   ========================================= */

.navigation {
    min-height: 43px;

    display: flex;
    align-items: center;

    gap: 5px;

    padding: 5px;

    background:
        linear-gradient(
            to bottom,
            #dadada,
            #777,
            #202020
        );

    border-top: 1px solid white;
    border-bottom: 2px solid #000;
}

.navigation a {
    display: inline-block;

    padding: 8px 14px;

    color: #111;

    text-decoration: none;

    font-weight: bold;

    font-size: 11px;

    background:
        linear-gradient(
            to bottom,
            #ffffff,
            #c2c2c2
        );

    border: 1px solid #555;

    box-shadow:
        inset 1px 1px white,
        inset -1px -1px #777;
}

.navigation a:hover {
    background:
        linear-gradient(
            to bottom,
            #dfffff,
            #a9e9f7
        );
}

.welcome {
    margin-left: auto;

    padding-right: 10px;

    color: #f5b7d8;

    font-size: 10px;

    letter-spacing: 1px;
}


/* =========================================
   MAIN LAYOUT
   ========================================= */

.main-layout {
    display: grid;

    grid-template-columns:
        190px
        minmax(0, 1fr)
        190px;

    gap: 10px;

    padding: 10px;
}


/* =========================================
   RETRO BOX
   ========================================= */

.retro-box {
    border: 1px solid #888;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.08),
            rgba(0,0,0,0.8)
        );

    box-shadow:
        inset 0 0 15px rgba(255,255,255,0.04),
        0 0 10px rgba(255,255,255,0.03);

    margin-bottom: 10px;
}

.box-title {
    min-height: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 4px 7px;

    background:
        linear-gradient(
            to right,
            #eeeeee,
            #9d9d9d,
            #363636
        );

    color: #111;

    font-size: 10px;

    font-weight: bold;

    border-bottom: 1px solid #111;
}

.box-content {
    padding: 12px;
}


/* =========================================
   CATEGORY
   ========================================= */

.category-list {
    display: flex;
    flex-direction: column;

    padding: 7px;
}

.category-list a {
    padding: 8px 4px;

    color: #d9faff;

    text-decoration: none;

    border-bottom: 1px dotted #555;
}

.category-list a:hover {
    color: #ffb7dc;

    padding-left: 10px;
}


/* =========================================
   VISITOR COUNTER
   ========================================= */

.visitor-box {
    text-align: center;
}

.visitor-number {
    display: inline-block;

    padding: 5px 8px;

    margin-bottom: 8px;

    background: #000;

    border: 1px solid #777;

    color: #c9f8ff;

    font-family: monospace;

    letter-spacing: 3px;

    box-shadow:
        inset 0 0 10px rgba(150,240,255,0.15);
}

.visitor-star {
    font-size: 30px;

    color: white;

    text-shadow:
        0 0 8px white,
        0 0 15px #bdf6ff;
}

.visitor-box p {
    font-size: 9px;

    color: #aaa;

    line-height: 1.5;
}


/* =========================================
   HERO
   ========================================= */

.hero {
    min-height: 390px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-around;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 50%,
            rgba(255,255,255,0.13),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #050505,
            #181818,
            #050505
        );
}

.hero::after {
    content: "";

    position: absolute;

    width: 80%;
    height: 1px;

    bottom: 35px;
    left: 10%;

    background: #777;

    box-shadow:
        0 0 8px #c9f8ff;
}

.hero-content {
    position: relative;
    z-index: 2;

    text-align: center;
}

.new-drop {
    color: #ffb9dc;

    letter-spacing: 4px;

    font-size: 11px;

    margin-bottom: 15px;

    text-shadow:
        0 0 8px rgba(255,180,215,0.5);
}

.hero h2 {
    margin: 0;

    font-family: Impact, Arial Black, sans-serif;

    font-size: clamp(40px, 6vw, 75px);

    letter-spacing: 3px;

    color: #eeeeee;

    text-shadow:
        2px 2px 0 #555,
        0 0 15px rgba(255,255,255,0.25);
}

.hero h3 {
    margin: 0 0 25px;

    font-size: 18px;

    letter-spacing: 8px;

    color: #bdefff;
}


/* =========================================
   SHOP BUTTON
   ========================================= */

.shop-button {
    display: inline-block;

    padding: 10px 25px;

    color: #111;

    background:
        linear-gradient(
            to bottom,
            #ffffff,
            #c5c5c5,
            #888888
        );

    border: 2px solid #ddd;

    box-shadow:
        0 0 10px rgba(255,255,255,0.25),
        inset 0 1px white;

    text-decoration: none;

    font-weight: bold;

    letter-spacing: 2px;
}

.shop-button:hover {
    background:
        linear-gradient(
            to bottom,
            #ffffff,
            #d4faff,
            #8bdff0
        );

    box-shadow:
        0 0 20px rgba(160,240,255,0.5);
}


/* =========================================
   CD
   ========================================= */

.cd {
    width: 230px;
    height: 230px;

    flex-shrink: 0;

    border-radius: 50%;

    position: relative;

    background:
        conic-gradient(
            #ffffff,
            #555,
            #eeeeee,
            #222,
            #ffffff,
            #888,
            #eeeeee,
            #333,
            #ffffff
        );

    border: 2px solid #ddd;

    box-shadow:
        0 0 15px rgba(255,255,255,0.45),
        0 0 35px rgba(170,240,255,0.2);

    transform: rotate(-20deg);
}

.cd::before {
    content: "";

    position: absolute;

    inset: 18px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.5);

    background:
        repeating-radial-gradient(
            circle,
            transparent 0px,
            transparent 4px,
            rgba(255,255,255,0.09) 5px
        );
}

.cd-center {
    position: absolute;

    width: 55px;
    height: 55px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #111 0%,
            #222 35%,
            #aaa 37%,
            #111 42%
        );

    border: 2px solid #ddd;
}


/* =========================================
   LATEST DROP
   ========================================= */

.latest {
    margin-top: 10px;

    border: 1px solid #555;

    background: #080808;
}

.section-title {
    padding: 10px;

    text-align: center;

    font-weight: bold;

    letter-spacing: 4px;

    color: #eeeeee;

    background:
        linear-gradient(
            to right,
            #111,
            #666,
            #111
        );

    border-bottom: 1px solid #777;
}


/* =========================================
   PRODUCTS
   ========================================= */

.products {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 7px;

    padding: 8px;

    min-width: 0;
}

.product-card {
    min-width: 0;
    overflow: hidden;

    text-align: center;

    padding: 8px;

    border: 1px solid #555;

    background:
        linear-gradient(
            145deg,
            #191919,
            #050505
        );

    transition: 0.2s;

    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-3px);

    border-color: #bcefff;

    box-shadow:
        0 0 15px rgba(160,240,255,0.15);
}


/* =========================================
   PRODUCT CARD IMAGE
   ========================================= */

.product-image {
    width: 100%;
    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 8px;

    background:
        radial-gradient(
            circle,
            #444,
            #090909
        );

    border: 1px solid #444;

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    max-width: 100%;
    max-height: 100%;
}

.product-card h3 {
    margin: 8px 0 5px;

    font-size: 12px;

    color: #eee;
}

.product-card p {
    margin: 5px 0 2px;

    color: #ffb9db;

    font-size: 14px;

    font-weight: bold;
}

.product-card small {
    color: #aaa;

    font-size: 8px;
}


/* =========================================
   QUOTE
   ========================================= */

.quote {
    text-align: center;

    color: #f1f1f1;

    line-height: 1.8;

    font-size: 12px;
}

.quote:first-letter {
    color: #ffb7da;
}


/* =========================================
   NEWSLETTER
   ========================================= */

.newsletter {
    text-align: center;
}

.newsletter p {
    font-size: 9px;

    line-height: 1.6;

    color: #bbb;
}

.newsletter input {
    width: 100%;

    padding: 7px;

    margin: 5px 0;

    background: #050505;

    color: white;

    border: 1px solid #777;

    font-size: 9px;
}

.newsletter button {
    width: 100%;

    padding: 7px;

    background:
        linear-gradient(
            to bottom,
            #eee,
            #888
        );

    border: 1px solid #aaa;

    font-size: 9px;

    font-weight: bold;

    cursor: pointer;
}


/* =========================================
   MUSIC PLAYER
   ========================================= */

.music-player {
    border-color: #888;
}

.music-title {
    text-align: center;

    color: #bff6ff;

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.song-name {
    text-align: center;

    color: #ffb9db;

    font-size: 11px;

    font-weight: bold;

    margin-bottom: 10px;
}

.music-player audio {
    width: 100%;

    height: 32px;

    filter: grayscale(1) contrast(1.2);
}


/* =========================================
   INTERNET EXPLORER BOX
   ========================================= */

.ie-box {
    text-align: center;
}

.ie-logo {
    width: 55px;
    height: 55px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #dfffff,
            #5c9aa8,
            #111
        );

    color: white;

    font-family: Georgia, serif;

    font-size: 38px;

    font-style: italic;

    text-shadow:
        0 0 5px white;
}

.ie-box p {
    font-size: 9px;

    line-height: 1.5;
}


/* =========================================
   ABOUT
   ========================================= */

.about-section {
    margin: 0 10px;

    padding: 18px;

    text-align: center;

    color: #c9f8ff;

    letter-spacing: 3px;

    border-top: 1px solid #555;
    border-bottom: 1px solid #555;
}


/* =========================================
   SHOPPING CART
   ========================================= */

.cart-section {
    margin: 15px 10px;
}

.cart-item {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding: 8px 0;

    border-bottom: 1px dotted #555;
}

.cart-item p {
    margin: 0;

    color: #eee;
}

.cart-item button,
#checkout-button {
    padding: 6px 10px;

    color: #111;

    background:
        linear-gradient(
            to bottom,
            #eee,
            #888
        );

    border: 1px solid #aaa;

    font-size: 9px;

    font-weight: bold;

    cursor: pointer;
}

.cart-item button:hover,
#checkout-button:hover {
    background:
        linear-gradient(
            to bottom,
            #e7ffff,
            #9ee6f3
        );
}

.cart-total {
    margin-top: 12px;

    padding-top: 10px;

    border-top: 1px solid #777;

    color: #ffb8da;

    font-weight: bold;
}

#checkout-button {
    margin-top: 12px;

    width: 100%;
}


/* =========================================
   CINEMATIC BRAND INTRO
   ========================================= */

#cinematic-intro {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100vh;

    background: #000;

    z-index: 99999;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    pointer-events: auto;
}

#cinematic-intro::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 250px;

    background:
        radial-gradient(
            ellipse,
            rgba(255,255,255,0.07),
            transparent 70%
        );

    filter: blur(35px);

    animation:
        cinematicGlow 3s ease-in-out infinite;
}

.intro-text {
    position: relative;

    z-index: 2;

    text-align: center;

    color: #eee;

    opacity: 0;

    transform: scale(0.96);

    animation:
        brandReveal 2s ease 0.5s forwards,
        brandBlink 3s ease-in-out 1.5s infinite;
}

.intro-text span {
    display: block;

    margin-bottom: 12px;

    font-size: 10px;

    letter-spacing: 8px;

    color: #aaa;

    opacity: 0;

    animation:
        smallTextReveal 1.5s ease 0.3s forwards;
}

.intro-text h1 {
    margin: 0;

    font-family: Impact, Arial Black, sans-serif;

    font-size: clamp(45px, 8vw, 100px);

    letter-spacing: 8px;

    font-weight: 900;

    color: #eee;

    text-shadow:
        0 0 5px rgba(255,255,255,0.15),
        0 0 20px rgba(255,255,255,0.08),
        0 0 50px rgba(255,255,255,0.04);
}

.intro-text::after {
    content: "";

    display: block;

    width: 0;

    height: 1px;

    margin: 18px auto 0;

    background: rgba(255,255,255,0.35);

    animation:
        lineReveal 1.5s ease 1.5s forwards;
}


/* =========================================
   ENTER SITE BUTTON
   ========================================= */

#enter-site {
    display: block;

    margin: 30px auto 0;

    padding: 10px 24px;

    background:
        linear-gradient(
            to bottom,
            #eeeeee,
            #999999
        );

    color: #111;

    border: 1px solid #777;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 3px;

    cursor: pointer;

    box-shadow:
        0 0 8px rgba(255,255,255,0.15),
        inset 1px 1px white,
        inset -1px -1px #555;

    transition: 0.2s;
}

#enter-site:hover {
    background:
        linear-gradient(
            to bottom,
            #ffffff,
            #c9f8ff
        );

    box-shadow:
        0 0 18px rgba(180,240,255,0.4);
}

#enter-site:active {
    transform: translateY(1px);

    box-shadow:
        inset 1px 1px #555;
}


/* =========================================
   PRODUCT DETAIL POPUP
   ========================================= */

.product-modal {
    position: fixed;

    inset: 0;

    z-index: 100000;

    display: none;

    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,0.85);

    padding: 20px;
}

.product-modal.active {
    display: flex;
}


/* POPUP WINDOW */

.product-modal-content {
    position: relative;

    width: min(850px, 95vw);

    max-height: 90vh;

    overflow-y: auto;

    background:
        linear-gradient(
            145deg,
            #191919,
            #050505
        );

    border: 2px solid #aaa;

    box-shadow:
        0 0 35px rgba(255,255,255,0.2),
        0 0 70px rgba(180,240,255,0.12);

    padding: 25px;
}


/* CLOSE BUTTON */

#close-product {
    position: absolute;

    top: 8px;
    right: 8px;

    z-index: 20;

    width: 26px;
    height: 24px;

    border: 1px solid #555;

    background: #ddd;

    color: #111;

    font-size: 17px;

    font-weight: bold;

    cursor: pointer;
}

#close-product:hover {
    background: #ffb7d9;
}


/* =========================================
   POPUP PRODUCT DETAIL
   ========================================= */

.product-detail {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 25px;

    padding: 5px;
}


/* =========================================
   POPUP IMAGE
   ========================================= */

/*
   IMPORTANT:
   This keeps the product image INSIDE a controlled
   box instead of allowing it to become huge.
*/

.modal-product-image {
    width: 100%;

    height: 420px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle,
            #333,
            #050505
        );

    border: 1px solid #555;

    overflow: hidden;

    padding: 15px;
}

.modal-product-image img {
    display: block;

    width: auto;

    height: auto;

    max-width: 100%;

    max-height: 100%;

    object-fit: contain;

    object-position: center;

    margin: auto;
}


/* =========================================
   POPUP THUMBNAILS
   ========================================= */

.product-thumbnails {
    display: flex;

    gap: 8px;

    margin-top: 10px;

    flex-wrap: wrap;

    max-width: 100%;

    overflow-x: auto;
}

.product-thumbnails img {
    flex: 0 0 65px;

    width: 65px;
    height: 65px;

    object-fit: contain;

    background: #080808;

    border: 1px solid #666;

    cursor: pointer;
}

.product-thumbnails img:hover {
    border-color: #c9f8ff;

    box-shadow:
        0 0 10px rgba(190,240,255,0.35);
}


/* =========================================
   POPUP PRODUCT INFO
   ========================================= */

.modal-product-info {
    padding: 10px;

    min-width: 0;
}

.modal-product-info h2 {
    margin: 5px 0 12px;

    font-family:
        Impact,
        Arial Black,
        sans-serif;

    font-size: 35px;

    letter-spacing: 2px;

    color: #eee;

    word-break: break-word;
}

.modal-product-info > p {
    margin: 0;

    color: #ffb9db;

    font-size: 24px;

    font-weight: bold;
}

.modal-product-info > small {
    display: block;

    margin-top: 4px;

    color: #aaa;

    font-size: 9px;
}


/* =========================================
   SIZE SELECTION
   ========================================= */

.product-option-title {
    margin-top: 30px;

    margin-bottom: 12px;

    color: #eee;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 2px;
}

.size-options {
    display: flex;

    gap: 7px;

    flex-wrap: wrap;
}

.size-button {
    width: 45px;
    height: 38px;

    color: #111;

    background:
        linear-gradient(
            to bottom,
            #eee,
            #888
        );

    border: 1px solid #555;

    font-weight: bold;

    cursor: pointer;
}

.size-button:hover,
.size-button.selected {
    background:
        linear-gradient(
            to bottom,
            #e8ffff,
            #9ee6f3
        );

    box-shadow:
        0 0 12px rgba(170,240,255,0.4);
}

.selected-size {
    margin-top: 12px;

    color: #bff6ff;

    font-size: 10px;

    letter-spacing: 1px;
}


/* =========================================
   POPUP ADD TO CART
   ========================================= */

#modal-add-cart {
    width: 100%;

    margin-top: 30px;

    padding: 13px;

    color: #111;

    background:
        linear-gradient(
            to bottom,
            #ffffff,
            #aaa
        );

    border: 2px solid #ddd;

    font-weight: bold;

    letter-spacing: 2px;

    cursor: pointer;
}

#modal-add-cart:hover {
    background:
        linear-gradient(
            to bottom,
            #eaffff,
            #9ee6f3
        );
}


/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes brandReveal {

    0% {
        opacity: 0;

        transform:
            scale(0.96)
            translateY(12px);

        filter: blur(8px);
    }

    60% {
        opacity: 0.85;

        filter: blur(1px);
    }

    100% {
        opacity: 1;

        transform:
            scale(1)
            translateY(0);

        filter: blur(0);
    }
}

@keyframes smallTextReveal {

    0% {
        opacity: 0;

        transform: translateY(8px);
    }

    100% {
        opacity: 0.65;

        transform: translateY(0);
    }
}

@keyframes brandBlink {

    0% {
        opacity: 1;
    }

    45% {
        opacity: 1;
    }

    48% {
        opacity: 0.65;
    }

    50% {
        opacity: 0.95;
    }

    53% {
        opacity: 0.55;
    }

    56% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes cinematicGlow {

    0%, 100% {
        opacity: 0.35;

        transform: scale(0.85);
    }

    50% {
        opacity: 0.8;

        transform: scale(1.15);
    }
}

@keyframes lineReveal {

    0% {
        width: 0;

        opacity: 0;
    }

    100% {
        width: 180px;

        opacity: 1;
    }
}

@keyframes introFade {

    0% {
        opacity: 1;

        visibility: visible;
    }

    100% {
        opacity: 0;

        visibility: hidden;
    }
}


/* =========================================
   RESPONSIVE — TABLET
   ========================================= */

@media (max-width: 950px) {

    .main-layout {
        grid-template-columns: 1fr;
    }

    .left-column,
    .right-column {
        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 10px;
    }

    .logo-person {
        width: 100px;
        height: 100px;

        right: 2%;
    }

    .products {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .cd {
        width: 180px;
        height: 180px;
    }
}


/* =========================================
   RESPONSIVE — MOBILE
   ========================================= */

@media (max-width: 700px) {

    .browser-window {
        width: 100%;
    }

    .product-detail {
        grid-template-columns: 1fr;

        gap: 15px;

        padding: 0;
    }

    .modal-product-image {
        height: 300px;
    }

    .modal-product-info h2 {
        font-size: 28px;
    }

    .product-modal {
        padding: 10px;
    }

    .product-modal-content {
        width: 95vw;

        max-height: 92vh;

        padding: 35px 15px 15px;
    }
}


@media (max-width: 600px) {

    .browser-window {
        width: 100%;

        margin: 0;

        border: none;
    }

    .browser-toolbar {
        overflow-x: auto;
    }

    .menu-bar {
        overflow-x: auto;
    }

    .navigation {
        flex-wrap: wrap;
    }

    .welcome {
        width: 100%;

        text-align: center;

        margin: 5px 0;
    }

    .site-header {
        min-height: 190px;
    }

    .brand h1 {
        font-size: 42px;

        letter-spacing: 2px;
    }

    .brand-line {
        font-size: 8px;

        letter-spacing: 2px;
    }

    .logo-person {
        width: 75px;
        height: 75px;

        opacity: 0.85;
    }

    .hero {
        flex-direction: column;

        padding: 35px 10px;
    }

    .cd {
        width: 150px;
        height: 150px;

        margin-top: 25px;
    }

    .products {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .product-image {
        height: 170px;
    }

    .left-column,
    .right-column {
        display: block;
    }

    footer {
        flex-direction: column;

        text-align: center;
    }
}


/* =========================================
   VERY SMALL PHONES
   ========================================= */

@media (max-width: 400px) {

    .products {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 220px;
    }

    .hero h2 {
        font-size: 38px;
    }

    .hero h3 {
        font-size: 14px;

        letter-spacing: 5px;
    }

    .cd {
        width: 135px;
        height: 135px;
    }

    .modal-product-image {
        height: 250px;
    }
}.order-products {
    margin-top: 15px;
}

.order-product {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px;
    margin-bottom: 10px;
    background: #111;
    border: 1px solid #444;
}

.product-image {
    width: 90px;
    height: 90px;
    background: #222;
    border: 1px solid #555;
    overflow: hidden;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-info strong {
    font-size: 17px;
}

.product-info span {
    color: #aaa;
}