@import url('https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@400;500;600;700&display=swap');


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #050505;
    color: #eee4d0;
    font-family: 'Oswald', Arial, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.store-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    min-height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 3%;

    background:
        linear-gradient(
            180deg,
            #111 0%,
            #070707 100%
        );

    border-bottom: 1px solid #684918;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, .8);
}

.store-logo {
    color: #d09a29;

    font-family: Georgia, serif;

    font-size: clamp(1.5rem, 2.8vw, 2.3rem);
    font-weight: bold;

    text-shadow:
        0 0 12px rgba(255, 155, 0, .2);
}

.store-logo span {
    color: #e7dfd0;
}

.store-nav {
    height: 80px;

    display: flex;
    align-items: center;

    gap: clamp(22px, 3vw, 48px);
}

.store-nav a {
    position: relative;

    height: 100%;

    display: flex;
    align-items: center;

    color: #c5bbaa;

    font-size: .9rem;
    letter-spacing: 1.5px;

    transition: .3s ease;
}

.store-nav a:hover,
.store-nav a.active {
    color: #f0a51e;

    text-shadow:
        0 0 12px rgba(255, 85, 0, .65);
}

.store-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 4px;

    background: #ff6200;

    box-shadow:
        0 0 12px #ff6200,
        0 0 25px rgba(255, 60, 0, .6);
}

.store-actions {
    display: flex;
    align-items: center;

    gap: 18px;
}

.icon-button,
.cart-button {
    border: 0;
    background: transparent;

    color: #ddd0b8;

    cursor: pointer;
}

.icon-button {
    font-size: 1.9rem;
}

.cart-button {
    position: relative;

    font-size: 1.3rem;
}

.cart-button b {
    position: absolute;

    top: -11px;
    right: -11px;

    width: 19px;
    height: 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #d64614;

    color: white;

    font-size: .65rem;
}


/* =========================================================
   HERO
========================================================= */

.store-hero {
    position: relative;

    min-height: 590px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            ellipse at center 105%,
            rgba(255, 74, 0, .55),
            transparent 45%
        ),
        radial-gradient(
            ellipse at center,
            rgba(130, 70, 15, .15),
            transparent 55%
        ),
        #050505;

    border-bottom: 1px solid #81501c;
}

.hero-grid {
    position: absolute;
    inset: 0;

    opacity: .35;

    background:
        linear-gradient(
            90deg,
            transparent 49.8%,
            rgba(196, 145, 40, .06) 50%,
            transparent 50.2%
        ),
        linear-gradient(
            0deg,
            transparent 49.8%,
            rgba(196, 145, 40, .05) 50%,
            transparent 50.2%
        );

    background-size: 80px 80px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );
}

.hero-glow {
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    filter: blur(80px);

    opacity: .18;
}

.hero-glow-left {
    left: -180px;
    bottom: -180px;

    background: #ff4d00;
}

.hero-glow-right {
    right: -180px;
    bottom: -180px;

    background: #c98b20;
}

.hero-fire-glow {
    position: absolute;

    width: 800px;
    height: 240px;

    bottom: -130px;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(255, 155, 0, .75),
            rgba(255, 50, 0, .3) 35%,
            transparent 70%
        );

    filter: blur(35px);
}

.hero-center {
    position: relative;
    z-index: 5;

    text-align: center;
}

.hero-kicker {
    color: #f18c13;

    font-size: .75rem;
    letter-spacing: 4px;
}

.hero-center h1 {
    margin-top: 14px;

    font-family: Impact, 'Anton', sans-serif;

    font-size: clamp(5rem, 11vw, 9rem);

    line-height: .76;

    letter-spacing: 2px;

    color: #d7a332;

    text-shadow:
        4px 4px 0 #38270c,
        0 0 25px rgba(255, 110, 0, .35);
}

.hero-center h1 span {
    display: block;

    color: #e5dcc9;
}

.hero-center h1 em {
    display: block;

    margin-top: 17px;

    font-style: normal;

    font-size: .5em;

    letter-spacing: 13px;

    color: #b9ad96;
}

.hero-tagline {
    margin: 40px 0 25px;

    color: #f1a52c;

    font-size: 1rem;
    letter-spacing: 4px;
}

.hero-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 34px;

    border: 1px solid #c18c28;

    background:
        linear-gradient(
            180deg,
            #271b09,
            #0c0b08
        );

    color: #e6b448;

    font-size: .78rem;
    letter-spacing: 2px;

    transition: .3s ease;
}

.hero-button:hover {
    border-color: #ff5a00;

    color: white;

    box-shadow:
        0 0 25px rgba(255, 70, 0, .3);

    transform: translateY(-3px);
}


/* =========================================================
   HERO PANELS
========================================================= */

.hero-panel {
    position: absolute;
    z-index: 8;

    top: 80px;

    width: 190px;

    padding: 20px;

    border: 1px solid #77571e;

    background: rgba(5, 5, 5, .82);

    box-shadow:
        inset 0 0 25px rgba(0, 0, 0, .8);
}

.hero-panel-left {
    left: 3%;
}

.hero-panel-right {
    right: 3%;
}

.hero-panel > span {
    display: block;

    margin-bottom: 18px;

    color: #ef8a12;

    font-size: .7rem;
    letter-spacing: 2px;
}

.hero-panel div {
    margin-bottom: 13px;
}

.hero-panel small {
    display: block;

    color: #686257;

    font-size: .58rem;
    letter-spacing: 1px;
}

.hero-panel strong {
    display: block;

    margin-top: 3px;

    color: #d8a52f;

    font-size: .75rem;
    letter-spacing: 1px;
}

.hero-panel p {
    margin-top: 20px;

    color: #635b4d;

    font-size: .55rem;
}

.hero-panel a {
    display: block;

    padding: 8px 0;

    color: #aaa093;

    font-size: .68rem;
    letter-spacing: 1px;

    transition: .25s ease;
}

.hero-panel a:hover {
    padding-left: 6px;

    color: #e7a72c;
}


/* =========================================================
   EMBERS
========================================================= */

.ember {
    position: absolute;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #ff8a18;

    box-shadow:
        0 0 10px #ff4d00;

    animation: emberFloat 4s infinite ease-in-out;
}

.ember-one {
    left: 25%;
    bottom: 25%;

    animation-delay: .2s;
}

.ember-two {
    left: 38%;
    bottom: 12%;

    animation-delay: 1.1s;
}

.ember-three {
    right: 28%;
    bottom: 20%;

    animation-delay: 1.8s;
}

.ember-four {
    right: 38%;
    bottom: 30%;

    animation-delay: 2.4s;
}

.ember-five {
    left: 58%;
    bottom: 15%;

    animation-delay: 3s;
}

@keyframes emberFloat {

    0% {
        transform: translateY(0) scale(.7);
        opacity: .2;
    }

    50% {
        transform: translateY(-80px) scale(1.3);
        opacity: 1;
    }

    100% {
        transform: translateY(-150px) scale(.4);
        opacity: 0;
    }
}


/* =========================================================
   STORE INTRO
========================================================= */

.store-intro {
    max-width: 900px;

    margin: 85px auto 50px;

    padding: 0 25px;

    text-align: center;
}

.store-intro > span {
    color: #c78e24;

    font-size: .65rem;
    letter-spacing: 3px;
}

.store-intro h2 {
    margin: 15px 0;

    font-family: Impact, 'Anton', sans-serif;

    font-size: clamp(2.7rem, 6vw, 5rem);

    letter-spacing: 4px;

    color: #d9a537;
}

.store-intro p {
    color: #83796a;

    letter-spacing: 1px;
}


/* =========================================================
   BOND SECTION
========================================================= */

.bond-section {
    max-width: 1450px;

    margin: 0 auto;

    padding: 0 25px 90px;
}

.section-heading {
    display: flex;
    align-items: center;

    gap: 25px;

    margin-bottom: 40px;
}

.section-heading > div:nth-child(2) {
    text-align: center;
}

.section-heading span {
    color: #8e7038;

    font-size: .6rem;
    letter-spacing: 3px;
}

.section-heading h2 {
    margin-top: 4px;

    font-family: Impact, 'Anton', sans-serif;

    color: #d8a437;

    font-size: 2.1rem;

    letter-spacing: 4px;
}

.heading-line {
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #694c1b,
            transparent
        );
}


/* =========================================================
   BOND GRID
========================================================= */

.bond-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 16px;
}

.bond-card {
    position: relative;

    overflow: hidden;

    border: 1px solid #57431e;

    background:
        linear-gradient(
            145deg,
            #15120f,
            #080807
        );

    transition: .35s ease;
}

.bond-card:hover {
    transform: translateY(-9px);

    border-color: #d19a2b;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .8),
        0 0 25px rgba(255, 80, 0, .15);
}

.featured-bond {
    border-color: #b36b20;

    box-shadow:
        0 0 20px rgba(255, 90, 0, .07);
}

.premium-bond {
    border-color: #b59b5c;
}

.featured-label,
.premium-label {
    position: absolute;

    z-index: 4;

    top: 12px;
    left: 12px;

    padding: 5px 8px;

    background: rgba(30, 17, 5, .9);

    color: #f39b25;

    border: 1px solid #87561d;

    font-size: .52rem;
    letter-spacing: 1.5px;
}


/* =========================================================
   BOND IMAGE AREA
========================================================= */

.bond-image {
    position: relative;

    height: 285px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-bottom: 1px solid #59441d;

    background:
        radial-gradient(
            circle,
            rgba(255, 100, 0, .12),
            transparent 50%
        ),
        #0b0a09;
}

.bond-image::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            135deg,
            transparent 0,
            transparent 25px,
            rgba(215, 164, 53, .025) 26px,
            transparent 27px
        );
}

.bond-code {
    position: absolute;

    z-index: 3;

    top: 13px;
    left: 13px;

    color: #77684e;

    font-size: .55rem;
    letter-spacing: 1px;
}

.bond-image-label {
    position: absolute;

    z-index: 3;

    bottom: 13px;

    color: #655b4c;

    font-size: .5rem;
    letter-spacing: 2px;
}


/* =========================================================
   REAL BOND IMAGES
========================================================= */

.bond-icon {
    position: relative;
    z-index: 2;

    display: block;

    width: 190px;
    height: 190px;

    object-fit: contain;

    background: transparent;

    transition: .35s ease;
}

.bond-card:hover .bond-icon {
    transform: scale(1.06);

    filter:
        brightness(1.08)
        drop-shadow(0 0 12px rgba(255, 160, 0, 0.35));
}

.bond-card:nth-child(1) .bond-icon {
    filter:
        drop-shadow(0 0 10px rgba(0, 255, 100, 0.18));
}

.bond-card:nth-child(2) .bond-icon {
    filter:
        drop-shadow(0 0 10px rgba(0, 100, 255, 0.22));
}

.bond-card:nth-child(3) .bond-icon,
.bond-card:nth-child(4) .bond-icon {
    filter:
        drop-shadow(0 0 12px rgba(255, 50, 40, 0.2));
}

.bond-card:nth-child(5) .bond-icon {
    filter:
        drop-shadow(0 0 14px rgba(170, 80, 255, 0.25));
}


/* =========================================================
   BOND DETAILS
========================================================= */

.bond-details {
    padding: 20px;
}

.bond-type {
    color: #776a55;

    font-size: .57rem;
    letter-spacing: 2px;
}

.bond-details h3 {
    margin-top: 8px;

    color: #eee3cd;

    font-size: 1.2rem;
    letter-spacing: 1px;
}

.price-row {
    display: flex;
    align-items: baseline;

    gap: 12px;

    margin: 18px 0;
}

.price-row strong {
    color: #e0a52d;

    font-size: 1.4rem;
}

.price-row del {
    color: #696256;

    font-size: .8rem;
}

.bond-button {
    width: 100%;

    min-height: 43px;

    border: 1px solid #73541d;

    background:
        linear-gradient(
            180deg,
            #241a09,
            #0b0a08
        );

    color: #dca633;

    cursor: pointer;

    font-size: .65rem;
    letter-spacing: 1.5px;

    transition: .3s ease;
}

.bond-button:hover {
    border-color: #ff5a00;

    color: white;

    box-shadow:
        0 0 18px rgba(255, 75, 0, .3);
}


/* =========================================================
   FIRE STRIP
========================================================= */

.fire-strip {
    position: relative;

    max-width: 1350px;

    min-height: 125px;

    margin: 20px auto 90px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border: 1px solid #833817;

    background:
        radial-gradient(
            ellipse,
            rgba(255, 60, 0, .25),
            transparent 65%
        ),
        #0d0805;

    text-align: center;
}

.fire-strip-glow {
    position: absolute;

    width: 500px;
    height: 100px;

    bottom: -75px;

    background: #ff5000;

    filter: blur(50px);

    opacity: .25;
}

.fire-strip span {
    position: relative;

    color: #ff6419;

    font-size: .65rem;
    letter-spacing: 3px;
}

.fire-strip strong {
    position: relative;

    margin-top: 10px;

    color: #d7a13a;

    font-size: .85rem;
    letter-spacing: 2px;
}


/* =========================================================
   BATTLE PASS
========================================================= */

.battle-pass {
    position: relative;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto 80px;

    padding: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border: 1px solid #855f25;

    background:
        radial-gradient(
            ellipse at center,
            rgba(255, 75, 0, .12),
            transparent 55%
        ),
        #070606;
}

.battle-background {
    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            -45deg,
            transparent 0,
            transparent 40px,
            rgba(220, 169, 56, .025) 41px
        );
}

.battle-pass-image-wrap {
    position: relative;
    z-index: 2;

    width: 100%;

    display: flex;
    justify-content: center;

    padding: 0;
}

.battle-pass-image {
    display: block;

    width: 80%;
    max-width: 950px;

    height: auto;

    object-fit: contain;

    border: 1px solid rgba(190, 140, 45, .45);

    box-shadow:
        0 0 40px rgba(0, 0, 0, .8),
        0 0 35px rgba(255, 80, 0, .12);

    transition: .35s ease;
}

.battle-pass-image:hover {
    transform: scale(1.01);

    box-shadow:
        0 0 50px rgba(0, 0, 0, .9),
        0 0 45px rgba(255, 80, 0, .2);
}


/* =========================================================
   STORE PROMISES
========================================================= */

.store-promises {
    max-width: 1350px;

    margin: 0 auto 90px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border: 1px solid #493a20;

    background: #0b0a08;
}

.promise {
    min-height: 100px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 20px;

    border-right: 1px solid #493a20;
}

.promise:last-child {
    border-right: 0;
}

.promise > span {
    color: #d7a032;

    font-size: 1.6rem;
}

.promise h3 {
    color: #c9a967;

    font-size: .7rem;

    letter-spacing: 1px;
}

.promise p {
    margin-top: 5px;

    color: #635d50;

    font-size: .55rem;

    letter-spacing: 1px;
}


/* =========================================================
   FINAL FORGE
========================================================= */

.final-forge {
    position: relative;

    min-height: 460px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-top: 1px solid #704318;

    background:
        radial-gradient(
            ellipse at center bottom,
            rgba(255, 65, 0, .48),
            transparent 48%
        ),
        #080706;
}

.final-glow {
    position: absolute;

    width: 850px;
    height: 180px;

    bottom: -100px;

    background:
        radial-gradient(
            ellipse,
            rgba(255, 150, 0, .75),
            transparent 68%
        );

    filter: blur(30px);
}

.final-content {
    position: relative;
    z-index: 3;

    text-align: center;
}

.final-content > span {
    color: #886c37;

    font-size: .6rem;

    letter-spacing: 3px;
}

.final-content h2 {
    margin: 20px 0;

    font-family: Impact, 'Anton', sans-serif;

    font-size: clamp(3rem, 7vw, 6rem);

    line-height: .9;

    letter-spacing: 4px;

    color: #d8a236;

    text-shadow:
        0 0 25px rgba(255, 75, 0, .25);
}

.final-logo {
    margin: 25px 0;

    color: #c9962b;

    font-family: Georgia, serif;

    font-size: 2.5rem;

    font-weight: bold;
}

.final-logo span {
    color: #e4ddd0;
}

.final-content a {
    color: #dca535;

    font-size: .7rem;

    letter-spacing: 3px;

    transition: .3s ease;
}

.final-content a:hover {
    color: #ff6810;

    text-shadow:
        0 0 12px rgba(255, 80, 0, .5);
}


/* =========================================================
   FOOTER
========================================================= */

.store-footer {
    min-height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 4%;

    background: #040404;

    border-top: 1px solid #30291d;

    color: #5f584d;

    font-size: .6rem;

    letter-spacing: 1px;
}

.store-footer a {
    color: #9d792e;

    transition: .3s ease;
}

.store-footer a:hover {
    color: #e0a735;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1150px) {

    .hero-panel {
        display: none;
    }

    .bond-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .store-promises {
        grid-template-columns: repeat(2, 1fr);
    }

    .promise:nth-child(2) {
        border-right: 0;
    }

    .promise:nth-child(1),
    .promise:nth-child(2) {
        border-bottom: 1px solid #493a20;
    }

    .battle-pass {
        margin-left: 20px;
        margin-right: 20px;
    }

    .battle-pass-image {
        width: 88%;
        max-width: 1000px;
    }
}


/* =========================================================
   RESPONSIVE — SMALL TABLET
========================================================= */

@media (max-width: 800px) {

    .store-header {
        flex-wrap: wrap;

        padding: 12px 5%;
    }

    .store-nav {
        order: 3;

        width: 100%;

        height: 35px;

        overflow-x: auto;

        gap: 25px;
    }

    .store-nav a {
        white-space: nowrap;
    }

    .store-hero {
        min-height: 530px;
    }

    .bond-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bond-image {
        height: 270px;
    }

    .bond-icon {
        width: 175px;
        height: 175px;
    }

    .battle-pass {
        min-height: auto;

        margin-left: 20px;
        margin-right: 20px;

        padding: 15px;
    }

    .battle-pass-image-wrap {
        padding: 0;
    }

    .battle-pass-image {
        width: 100%;
        max-width: 100%;
    }
}


/* =========================================================
   RESPONSIVE — PHONE
========================================================= */

@media (max-width: 520px) {

    .store-logo {
        font-size: 1.5rem;
    }

    .store-actions {
        gap: 10px;
    }

    .hero-center h1 {
        font-size: 4.5rem;
    }

    .hero-center h1 em {
        letter-spacing: 7px;
    }

    .hero-tagline {
        font-size: .75rem;

        letter-spacing: 2px;
    }

    .store-intro {
        margin-top: 60px;
    }

    .section-heading {
        gap: 12px;
    }

    .section-heading h2 {
        font-size: 1.6rem;
    }

    .bond-grid {
        grid-template-columns: 1fr;
    }

    .bond-image {
        height: 300px;
    }

    .bond-icon {
        width: 205px;
        height: 205px;
    }

    .fire-strip {
        margin-left: 20px;
        margin-right: 20px;

        padding: 20px;
    }

    .fire-strip strong {
        font-size: .7rem;

        line-height: 1.5;
    }

    .battle-pass {
        margin-left: 10px;
        margin-right: 10px;

        padding: 8px;
    }

    .battle-pass-image-wrap {
        padding: 0;
    }

    .battle-pass-image {
        width: 100%;
        max-width: 100%;
    }

    .store-promises {
        grid-template-columns: 1fr;

        margin-left: 20px;
        margin-right: 20px;
    }

    .promise {
        border-right: 0;

        border-bottom: 1px solid #493a20;
    }

    .promise:last-child {
        border-bottom: 0;
    }

    .final-forge {
        min-height: 400px;
    }

    .final-content h2 {
        font-size: 3.2rem;
    }

    .final-logo {
        font-size: 2rem;
    }

    .store-footer {
        flex-direction: column;

        justify-content: center;

        gap: 12px;

        padding: 25px;

        text-align: center;
    }
}


/* =========================================================
   STORE PHP: LOGIN, CART, CATEGORIES
========================================================= */

.store-login {
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-login input {
    width: 170px;
    padding: 8px 10px;
    border: 1px solid #684918;
    background: #111;
    color: #eee4d0;
    font-family: inherit;
}

.store-login-btn {
    width: auto;
    min-height: 36px;
    padding: 0 14px;
}

.store-user {
    color: #dca633;
    font-size: .7rem;
    letter-spacing: 1.5px;
}

.store-change {
    color: #8a7b66;
    font-size: .65rem;
    letter-spacing: 1px;
}

.store-cats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 0 25px;
}

.store-cats a {
    padding: 10px 16px;
    border: 1px solid #684918;
    color: #c5bbaa;
    font-size: .7rem;
    letter-spacing: 2px;
}

.store-cats a.active,
.store-cats a:hover {
    border-color: #ff6200;
    color: #f0a51e;
}

.cart-drawer {
    position: fixed;
    top: 80px;
    right: 0;
    z-index: 1200;
    display: none;
    width: min(420px, 100%);
    max-height: calc(100vh - 80px);
    overflow: auto;
    padding: 24px;
    background: #0b0a08;
    border-left: 1px solid #684918;
}

.cart-drawer.open {
    display: block;
}

.cart-drawer h3 {
    margin-bottom: 12px;
    color: #d8a437;
    letter-spacing: 2px;
}

.cart-player,
.cart-empty,
.cart-total {
    margin: 12px 0;
    color: #c5bbaa;
}

.cart-list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #3b2a1e;
}

.cart-clear {
    display: inline-block;
    margin-top: 12px;
    color: #8a7b66;
    font-size: .7rem;
}

.store-error,
.store-empty {
    color: #ff8a5a;
    text-align: center;
}

.battle-pass-submit {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.store-footer-links {
    display: flex;
    gap: 18px;
}

@media (max-width: 1100px) {
    .store-nav {
        display: none;
    }

    .store-login input {
        width: 130px;
    }
}