* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --ink: #171117;
    --cream: #fff5df;

    --pink: #ff4c9c;
    --pink-hot: #ff1986;

    --coral: #ff664f;
    --orange: #ff9c45;

    --yellow: #ffd55a;

    --cyan: #5ce7ed;
    --blue: #31c9da;

    --purple: #7627bc;

    --border: 3px solid var(--ink);
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(255, 245, 180, .75),
            transparent 18%
        ),
        linear-gradient(
            160deg,
            #5ce7ed 0%,
            #f5aabd 42%,
            #ff856a 68%,
            #f4c06f 100%
        );

    color: var(--ink);

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}

body::after {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    opacity: .035;

    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, .3) 0,
            rgba(0, 0, 0, .3) 1px,
            transparent 1px,
            transparent 4px
        );
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.topbar {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 8px 20px;

    background: var(--ink);
    color: white;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;

    text-align: center;
}

.auth-header {
    position: relative;
    z-index: 10;

    padding: 28px 6vw;
}

.logo {
    display: inline-block;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    color: white;

    font-size: 42px;
    line-height: .75;

    letter-spacing: -1px;

    transform: rotate(-2deg);

    text-shadow:
        4px 4px 0 var(--pink-hot),
        7px 7px 0 var(--ink);
}

.logo small {
    display: block;

    margin-top: 9px;
    padding-left: 28px;

    color: var(--yellow);

    font-family:
        "Arial Narrow",
        Arial,
        sans-serif;

    font-size: 12px;

    letter-spacing: 5px;

    text-shadow:
        2px 2px 0 var(--ink);
}

.auth-main {
    position: relative;
    z-index: 2;

    padding:
        25px 6vw
        80px;
}

.auth-shell {
    width: min(1180px, 100%);

    margin: auto;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(360px, 480px);

    gap: 70px;

    align-items: center;
}

.auth-decoration h1 {
    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: clamp(72px, 10vw, 145px);
    line-height: .76;

    color: #fff8e9;

    letter-spacing: -5px;

    -webkit-text-stroke:
        3px var(--ink);

    text-shadow:
        8px 8px 0 var(--pink-hot),
        13px 13px 0 var(--ink);

    transform: rotate(-1deg);
}

.auth-decoration h1 span {
    display: block;

    color: var(--pink);

    text-shadow:
        8px 8px 0 var(--yellow),
        13px 13px 0 var(--ink);
}

.auth-decoration p {
    max-width: 560px;

    margin-top: 35px;

    padding: 17px 20px;

    background: rgba(255, 245, 223, .94);

    border: var(--border);

    box-shadow:
        7px 7px 0 var(--ink);

    font-weight: 700;

    line-height: 1.5;
}

.auth-tag,
.card-eyebrow,
.warning-label {
    display: inline-block;

    padding: 7px 12px;

    background: var(--yellow);

    border: 2px solid var(--ink);

    box-shadow:
        4px 4px 0 var(--ink);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;

    transform: rotate(-2deg);
}

.auth-tag {
    margin-bottom: 25px;
}

.auth-card,
.recovery-card {
    background: var(--cream);

    border: var(--border);

    box-shadow:
        12px 12px 0 var(--ink);

    padding: 35px;
}

.auth-card h2,
.recovery-card h1 {
    margin-top: 18px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 48px;
    line-height: 1;

    text-transform: uppercase;
}

.card-intro,
.recovery-intro {
    margin-top: 15px;

    color: #514651;

    font-size: 14px;

    line-height: 1.6;
}

.auth-form {
    margin-top: 28px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    font-weight: 900;

    text-transform: uppercase;

    font-size: 13px;

    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 14px 15px;

    background: white;

    border: 2px solid var(--ink);

    border-radius: 0;

    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    box-shadow:
        4px 4px 0 var(--pink);
}

.form-group textarea {
    resize: vertical;

    min-height: 110px;
}

.form-group small {
    display: block;

    margin-top: 7px;

    color: #625462;

    font-size: 12px;

    line-height: 1.45;
}

.vice-button {
    width: 100%;

    min-height: 55px;

    cursor: pointer;

    background: var(--pink-hot);
    color: white;

    border: 3px solid var(--ink);

    box-shadow:
        6px 6px 0 var(--ink);

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.vice-button:hover,
.vice-button:focus-visible {
    background: var(--cyan);
    color: var(--ink);

    transform:
        translate(-2px, -2px);

    box-shadow:
        8px 8px 0 var(--ink);
}

.privacy-note,
.recovery-warning {
    margin-top: 28px;

    padding: 17px;

    background: var(--cyan);

    border: 2px solid var(--ink);
}

.privacy-note p,
.recovery-warning p {
    margin-top: 6px;

    font-size: 13px;

    line-height: 1.55;
}

.alert {
    margin-top: 22px;

    padding: 16px;

    border: 2px solid var(--ink);
}

.alert-error {
    background: #ffc4c4;
}

.alert ul {
    margin:
        8px 0
        0 20px;

    font-size: 13px;

    line-height: 1.6;
}

.recovery-shell {
    width: min(900px, 100%);

    margin: auto;
}

.recovery-card {
    padding: 40px;
}

.warning-label {
    background: var(--pink-hot);
    color: white;
}

.phrase-grid {
    margin-top: 32px;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;
}

.phrase-word {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 14px;

    background: white;

    border: 2px solid var(--ink);

    box-shadow:
        3px 3px 0 var(--ink);
}

.phrase-word span {
    min-width: 24px;

    color: var(--pink-hot);

    font-size: 11px;

    font-weight: 900;
}

.phrase-word strong {
    font-family:
        "Courier New",
        monospace;

    font-size: 15px;
}

@media (max-width: 900px) {
    .auth-shell {
        grid-template-columns: 1fr;
    }

    .auth-decoration {
        text-align: center;
    }

    .auth-decoration p {
        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }
}

@media (max-width: 600px) {
    .auth-header,
    .auth-main {
        padding-left: 20px;
        padding-right: 20px;
    }

    .auth-decoration h1 {
        font-size: 65px;

        -webkit-text-stroke:
            2px var(--ink);

        text-shadow:
            5px 5px 0 var(--pink-hot),
            8px 8px 0 var(--ink);
    }

    .auth-card,
    .recovery-card {
        padding: 25px 20px;
    }

    .auth-card h2,
    .recovery-card h1 {
        font-size: 38px;
    }

    .phrase-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}





/* =========================================================
   PRIVATE MARKET HOMEPAGE
========================================================= */

.market-page {
    background: #f5ddc8;
}

.market-header {
    position: absolute;
    top: 42px;
    left: 0;
    right: 0;

    z-index: 40;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 28px 5vw;
}

.market-nav {
    display: flex;
    align-items: center;

    gap: 10px;
}

.market-nav form {
    margin: 0;
}

.nav-link,
.user-chip {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 15px;

    border: 2px solid var(--ink);

    background: rgba(255, 245, 223, .96);

    box-shadow:
        4px 4px 0 var(--ink);

    color: var(--ink);

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.nav-link {
    cursor: pointer;
}

.nav-link:hover,
.nav-link:focus-visible {
    transform:
        translate(-2px, -2px);

    box-shadow:
        6px 6px 0 var(--ink);
}

.user-chip {
    background: var(--cyan);
}

.nav-logout {
    background: var(--pink-hot);
    color: white;
}


/* HERO */

.market-hero {
    position: relative;

    min-height: 750px;

    display: flex;
    align-items: center;

    padding:
        155px 7vw
        90px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 25%,
            rgba(255, 255, 255, .8) 0 3%,
            rgba(255, 220, 105, .5) 10%,
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #57cede 0%,
            #80dce1 22%,
            #f5aab9 52%,
            #ff856a 70%,
            #f8c270 100%
        );
}

.hero-sun {
    position: absolute;

    width: 430px;
    height: 430px;

    right: 8%;
    top: 20%;

    border-radius: 50%;

    background:
        repeating-linear-gradient(
            180deg,
            transparent 0,
            transparent 34px,
            rgba(255, 121, 104, .28) 35px,
            rgba(255, 121, 104, .28) 43px
        ),
        linear-gradient(
            180deg,
            #fff9bd,
            #ffd966 50%,
            #ff9654
        );

    box-shadow:
        0 0 90px rgba(255, 236, 147, .55);
}

.hero-city {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 220px;
}

.hero-building {
    position: absolute;

    bottom: 0;

    background: #42254a;
}

.hero-building::after {
    content: "";

    position: absolute;
    inset: 15px;

    background:
        repeating-linear-gradient(
            90deg,
            transparent 0 18px,
            rgba(255, 183, 106, .5) 19px 24px
        );
}

.hb1 {
    left: 0;

    width: 14%;
    height: 100px;
}

.hb2 {
    left: 12%;

    width: 10%;
    height: 165px;
}

.hb3 {
    left: 21%;

    width: 15%;
    height: 125px;
}

.hb4 {
    right: 14%;

    width: 14%;
    height: 150px;
}

.hb5 {
    right: -2%;

    width: 17%;
    height: 185px;
}


/* PALMS */

.hero-palm {
    position: absolute;

    bottom: -35px;

    width: 22px;
    height: 285px;

    z-index: 3;

    background: var(--ink);

    border-radius:
        60% 20% 10% 80%;

    transform-origin:
        bottom center;
}

.hero-palm::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 150px;

    left: 50%;
    top: -18px;

    transform:
        translateX(-50%);

    background: var(--ink);

    clip-path: polygon(
        50% 50%,
        0 0,
        41% 43%,
        12% 70%,
        45% 55%,
        30% 100%,
        50% 61%,
        70% 100%,
        55% 55%,
        91% 72%,
        59% 44%,
        100% 5%
    );
}

.hero-palm-one {
    right: 5%;

    transform:
        rotate(8deg)
        scale(1.1);
}

.hero-palm-two {
    right: 25%;

    bottom: -55px;

    transform:
        rotate(-7deg)
        scale(.68);
}


/* HERO CONTENT */

.market-hero-content {
    position: relative;

    z-index: 10;

    max-width: 850px;
}

.hero-location {
    display: inline-block;

    margin-bottom: 22px;

    padding: 8px 15px;

    background: var(--yellow);

    border: var(--border);

    box-shadow:
        5px 5px 0 var(--ink);

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 2px;

    transform:
        rotate(-2deg);
}

.market-hero h1 {
    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(90px, 11vw, 175px);

    line-height: .75;

    letter-spacing: -6px;

    color: #fff8e9;

    -webkit-text-stroke:
        3px var(--ink);

    text-shadow:
        8px 8px 0 var(--pink-hot),
        13px 13px 0 var(--ink);

    transform:
        rotate(-1deg);
}

.market-hero h1 span {
    display: block;

    color: var(--pink);

    text-shadow:
        8px 8px 0 var(--yellow),
        13px 13px 0 var(--ink);
}

.hero-copy {
    max-width: 590px;

    margin-top: 38px;

    padding: 18px 20px;

    background:
        rgba(255, 245, 223, .94);

    border: var(--border);

    box-shadow:
        7px 7px 0 var(--ink);

    font-size: 17px;
    font-weight: 700;

    line-height: 1.5;
}

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 26px;
}

.hero-button {
    width: auto;

    min-width: 175px;

    padding:
        0 22px;

    text-decoration: none;
}

.hero-button-alt {
    background: var(--cyan);
    color: var(--ink);
}

.hero-sticker {
    position: absolute;

    z-index: 15;

    display: grid;
    place-items: center;

    border: 3px solid var(--ink);

    box-shadow:
        5px 5px 0 var(--ink);

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    text-align: center;
}

.hero-sticker-one {
    right: 10%;
    top: 28%;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background: var(--yellow);

    transform:
        rotate(10deg);
}

.hero-sticker-two {
    right: 31%;
    bottom: 15%;

    padding: 14px 19px;

    background: var(--cyan);

    font-size: 22px;

    transform:
        rotate(-8deg);
}


/* MARQUEE */

.market-marquee {
    overflow: hidden;

    padding: 15px 0;

    border-top:
        4px solid var(--ink);

    border-bottom:
        4px solid var(--ink);

    background: var(--ink);
    color: var(--yellow);

    white-space: nowrap;
}

.market-marquee-track {
    width: max-content;

    display: flex;
    align-items: center;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 25px;

    letter-spacing: 3px;

    text-transform: uppercase;

    animation:
        vice-marquee 24s linear infinite;

    will-change: transform;
}

.market-marquee-track span {
    flex: 0 0 auto;

    margin-right: 45px;
}

.market-marquee-track b {
    color: var(--pink);
}

@keyframes vice-marquee {
    from {
        transform:
            translateX(0);
    }

    to {
        transform:
            translateX(-50%);
    }
}


/* GENERAL SECTIONS */

.home-section {
    padding:
        95px 6vw
        110px;

    background:
        linear-gradient(
            180deg,
            #f7e4c7,
            #efc7b2
        );
}

.section-heading {
    max-width: 1450px;

    margin:
        0 auto
        45px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}

.section-heading > p {
    max-width: 480px;

    font-weight: 700;

    line-height: 1.55;
}

.section-eyebrow {
    display: inline-block;

    padding: 7px 11px;

    border: 2px solid var(--ink);

    background: var(--cyan);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;

    transform:
        rotate(-2deg);
}

.section-heading h2,
.privacy-panel h2 {
    margin-top: 10px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(55px, 7vw, 95px);

    line-height: .92;

    text-transform: uppercase;
}


/* CATEGORIES */

.category-grid {
    max-width: 1450px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}

.category-card {
    min-height: 260px;

    padding: 28px;

    border: 3px solid var(--ink);

    box-shadow:
        9px 9px 0 var(--ink);
}

.category-card h3 {
    margin-top: 45px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 38px;

    text-transform: uppercase;
}

.category-card p {
    margin-top: 10px;

    max-width: 300px;

    font-weight: 700;

    line-height: 1.5;
}

.category-number {
    font-size: 14px;
    font-weight: 900;
}

.category-pink {
    background: var(--pink);
}

.category-blue {
    background: var(--cyan);
}

.category-yellow {
    background: var(--yellow);
}


/* PRODUCTS */

.products-section {
    background: #f5ddc8;
}

.home-products {
    max-width: 1450px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}

.home-product {
    border: 3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        9px 9px 0 var(--ink);
}

.home-product-art {
    position: relative;

    min-height: 270px;

    display: grid;
    place-items: center;

    border-bottom:
        3px solid var(--ink);
}

.product-art-pink {
    background:
        linear-gradient(
            135deg,
            #ff497f,
            #ff9765
        );
}

.product-art-blue {
    background: var(--cyan);
}

.product-art-yellow {
    background: var(--yellow);
}

.product-object {
    width: 135px;
    height: 135px;

    display: grid;
    place-items: center;

    border: 4px solid var(--ink);

    background: var(--cream);

    box-shadow:
        9px 9px 0 rgba(23, 17, 23, .85);

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 42px;

    transform:
        rotate(-6deg);
}

.product-badge {
    position: absolute;

    top: 14px;
    right: 14px;

    padding: 7px 11px;

    border: 2px solid var(--ink);

    background: var(--pink-hot);
    color: white;

    box-shadow:
        3px 3px 0 var(--ink);

    font-size: 12px;
    font-weight: 900;
}

.product-badge-blue {
    background: var(--cyan);
    color: var(--ink);
}

.home-product-content {
    padding: 22px;
}

.home-product-content small {
    color: var(--pink-hot);

    font-weight: 900;

    letter-spacing: 2px;
}

.home-product-content h3 {
    margin-top: 6px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 34px;

    text-transform: uppercase;
}

.home-product-content p {
    min-height: 65px;

    margin-top: 10px;

    color: #514651;

    line-height: 1.5;
}

.home-product-bottom {
    margin-top: 18px;

    padding-top: 17px;

    border-top:
        2px solid var(--ink);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.product-action {
    padding: 8px 11px;

    border: 2px solid var(--ink);

    background: var(--pink);

    color: white;

    font-weight: 900;
}


/* HOW IT WORKS */

.how-section {
    padding:
        90px 6vw
        100px;

    border-top:
        4px solid var(--ink);

    border-bottom:
        4px solid var(--ink);

    background: var(--pink);
}

.how-inner {
    max-width: 1450px;

    margin: auto;
}

.section-heading-light {
    margin-left: 0;
    margin-right: 0;
}

.how-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));
}

.how-item {
    min-height: 230px;

    padding: 25px 30px;

    border-right:
        3px solid var(--ink);
}

.how-item:last-child {
    border-right: 0;
}

.how-item > span {
    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 65px;

    color: var(--yellow);

    -webkit-text-stroke:
        2px var(--ink);

    text-shadow:
        4px 4px 0 var(--ink);
}

.how-item h3 {
    margin-top: 15px;

    font-size: 23px;

    text-transform: uppercase;
}

.how-item p {
    margin-top: 8px;

    font-weight: 700;

    line-height: 1.5;
}


/* PRIVACY */

.privacy-section {
    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    gap: 50px;

    padding:
        95px 6vw;

    background: var(--ink);
    color: white;
}

.privacy-panel {
    max-width: 750px;
}

.privacy-panel h2 {
    color: var(--pink);
}

.privacy-panel p {
    max-width: 650px;

    margin-top: 25px;

    color:
        rgba(255, 255, 255, .76);

    font-size: 16px;

    line-height: 1.65;
}

.privacy-stats {
    display: grid;

    gap: 15px;
}

.privacy-stats div {
    padding: 22px;

    border:
        2px solid var(--cream);

    background: #251b25;
}

.privacy-stats strong {
    display: block;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 50px;

    color: var(--cyan);
}

.privacy-stats span {
    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;
}


/* FAQ */

.faq-section {
    background: #f7e4c7;
}

.faq-list {
    max-width: 1050px;

    margin: auto;
}

.faq-list details {
    margin-bottom: 14px;

    border: 3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        6px 6px 0 var(--ink);
}

.faq-list summary {
    cursor: pointer;

    padding: 20px;

    font-weight: 900;

    text-transform: uppercase;

    list-style-position: inside;
}

.faq-list details[open] summary {
    border-bottom:
        2px solid var(--ink);

    background: var(--yellow);
}

.faq-list details p {
    padding: 20px;

    line-height: 1.6;
}


/* FOOTER */

.market-footer {
    padding:
        75px 6vw
        35px;

    background: var(--ink);

    color: white;
}

.market-footer-logo {
    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(60px, 10vw, 160px);

    line-height: .8;

    color: var(--pink);

    letter-spacing: -5px;

    text-shadow:
        6px 6px 0 var(--cyan);
}

.market-footer-bottom {
    margin-top: 65px;

    padding-top: 22px;

    border-top:
        1px solid rgba(255, 255, 255, .2);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color:
        rgba(255, 255, 255, .55);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1px;
}


/* RESPONSIVE */

@media (max-width: 1050px) {

    .market-nav .nav-link:not(.nav-logout) {
        display: none;
    }

    .hero-sticker {
        display: none;
    }

    .category-grid,
    .home-products {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .how-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .how-item:nth-child(2) {
        border-right: 0;
    }

    .privacy-section {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 700px) {

    .market-header {
        padding:
            23px 20px;
    }

    .market-nav {
        gap: 7px;
    }

    .user-chip {
        display: none;
    }

    .market-hero {
        min-height: 690px;

        padding:
            145px 25px
            75px;
    }

    .market-hero h1 {
        font-size: 72px;

        letter-spacing: -3px;

        -webkit-text-stroke:
            2px var(--ink);

        text-shadow:
            5px 5px 0 var(--pink-hot),
            8px 8px 0 var(--ink);
    }

    .hero-sun {
        width: 310px;
        height: 310px;

        right: -80px;
    }

    .hero-palm-one {
        right: -30px;

        opacity: .7;
    }

    .hero-palm-two {
        display: none;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .category-grid,
    .home-products,
    .how-grid {
        grid-template-columns: 1fr;
    }

    .how-item {
        border-right: 0;

        border-bottom:
            3px solid var(--ink);
    }

    .how-item:last-child {
        border-bottom: 0;
    }

    .home-section,
    .how-section,
    .privacy-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .market-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .market-footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }
}






/* =========================================================
   ADMIN
========================================================= */

.admin-main {
    min-height: 100vh;

    padding:
        155px 6vw
        90px;

    background:
        linear-gradient(
            180deg,
            #5ce7ed 0%,
            #f5aab9 35%,
            #f7e4c7 70%
        );
}

.admin-heading {
    max-width: 1450px;

    margin:
        0 auto
        45px;
}

.admin-heading h1 {
    margin-top: 10px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(65px, 8vw, 120px);

    line-height: .9;

    text-transform: uppercase;

    color: var(--cream);

    -webkit-text-stroke:
        3px var(--ink);

    text-shadow:
        7px 7px 0 var(--pink-hot),
        11px 11px 0 var(--ink);
}

.admin-heading p {
    margin-top: 25px;

    font-weight: 800;
}

.admin-stats {
    max-width: 1450px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.admin-stat {
    min-height: 180px;

    padding: 25px;

    border:
        3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        8px 8px 0 var(--ink);
}

.admin-stat span {
    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;
}

.admin-stat strong {
    display: block;

    margin-top: 25px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 60px;

    color: var(--pink-hot);
}

.admin-actions {
    max-width: 1450px;

    margin:
        35px auto
        0;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.admin-action-card {
    padding: 28px;

    border:
        3px solid var(--ink);

    background: var(--yellow);

    box-shadow:
        8px 8px 0 var(--ink);
}

.admin-action-card h2 {
    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 32px;

    text-transform: uppercase;
}

.admin-action-card p {
    margin-top: 10px;

    line-height: 1.5;

    font-weight: 700;
}

@media (max-width: 900px) {
    .admin-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .admin-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 550px) {
    .admin-main {
        padding-left: 20px;
        padding-right: 20px;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }
}














/* =========================================================
   ADMIN CRUD
========================================================= */

.admin-toolbar {
    max-width: 1450px;

    margin:
        0 auto
        30px;

    display: flex;

    justify-content: flex-end;
}

.admin-button {
    width: auto;

    padding:
        0 22px;

    text-decoration: none;
}

.admin-message {
    max-width: 1450px;

    margin:
        0 auto
        25px;

    padding: 16px 18px;

    border:
        2px solid var(--ink);

    background: var(--cyan);

    box-shadow:
        4px 4px 0 var(--ink);

    font-weight: 800;
}

.admin-table-wrap {
    max-width: 1450px;

    margin: auto;

    overflow-x: auto;

    border:
        3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        9px 9px 0 var(--ink);
}

.admin-table {
    width: 100%;

    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 16px;

    border-bottom:
        2px solid var(--ink);

    text-align: left;

    vertical-align: middle;
}

.admin-table th {
    background: var(--yellow);

    font-size: 12px;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.admin-table tbody tr:last-child td {
    border-bottom: 0;
}

.admin-table code {
    font-family:
        "Courier New",
        monospace;

    font-size: 12px;
}

.admin-status {
    display: inline-block;

    padding: 6px 9px;

    border:
        2px solid var(--ink);

    font-size: 11px;

    font-weight: 900;
}

.admin-status.active {
    background: var(--cyan);
}

.admin-status.inactive {
    background: #ddd;
}

.admin-actions-cell {
    display: flex;

    align-items: center;

    gap: 8px;

    flex-wrap: wrap;
}

.admin-actions-cell form {
    margin: 0;
}

.admin-small-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 36px;

    padding:
        0 11px;

    cursor: pointer;

    border:
        2px solid var(--ink);

    background: var(--cyan);

    color: var(--ink);

    box-shadow:
        3px 3px 0 var(--ink);

    font-size: 11px;

    font-weight: 900;

    text-decoration: none;

    text-transform: uppercase;
}

.admin-small-button.danger {
    background: var(--pink-hot);

    color: white;
}

.admin-form-card {
    max-width: 760px;

    margin: auto;

    padding: 32px;

    border:
        3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        10px 10px 0 var(--ink);
}

.admin-checkbox {
    display: flex;

    align-items: center;

    gap: 10px;

    margin:
        15px 0
        28px;

    padding: 14px;

    border:
        2px solid var(--ink);

    background: var(--yellow);

    font-weight: 900;
}

.admin-checkbox input {
    width: 18px;
    height: 18px;
}


























/* =========================================================
   PRODUCT ADMIN FORMS
========================================================= */

.admin-form-wide {
    max-width: 1050px;
}

.admin-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        0 22px;
}

.admin-options-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;

    margin-top: 10px;
}

.form-group select {
    width: 100%;

    min-height: 49px;

    padding:
        12px 14px;

    border:
        2px solid var(--ink);

    border-radius: 0;

    background: white;

    color: var(--ink);

    font: inherit;

    outline: none;
}

.form-group select:focus {
    box-shadow:
        4px 4px 0 var(--pink);
}

.admin-muted {
    margin-top: 5px;

    color: #685c68;

    font-size: 11px;
}

@media (max-width: 800px) {

    .admin-form-grid,
    .admin-options-grid {
        grid-template-columns: 1fr;
    }
}















/* =========================================================
   PRODUCT DETAIL
========================================================= */

.product-page {
    min-height: 100vh;

    padding:
        165px 6vw
        100px;

    background:
        linear-gradient(
            180deg,
            #5ce7ed 0%,
            #f5aab9 30%,
            #f7e4c7 70%
        );
}

.product-detail {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(320px, .9fr)
        minmax(0, 1.1fr);

    border:
        3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        12px 12px 0 var(--ink);
}

.product-detail-art {
    position: relative;

    min-height: 600px;

    display: grid;
    place-items: center;

    overflow: hidden;

    border-right:
        3px solid var(--ink);

    background:
        radial-gradient(
            circle at 30% 25%,
            rgba(255, 255, 255, .7),
            transparent 18%
        ),
        linear-gradient(
            135deg,
            var(--pink),
            var(--coral)
        );
}

.product-detail-art::before {
    content: "VICE";

    position: absolute;

    left: -20px;
    bottom: -25px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 150px;

    color:
        rgba(255, 255, 255, .2);

    transform:
        rotate(-7deg);
}

.product-detail-object {
    position: relative;

    z-index: 2;

    width: 190px;
    height: 190px;

    display: grid;
    place-items: center;

    border:
        4px solid var(--ink);

    background: var(--cream);

    box-shadow:
        12px 12px 0 var(--ink);

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 65px;

    transform:
        rotate(-6deg);
}

.product-detail-content {
    padding: 45px;
}

.product-detail-content h1 {
    margin-top: 18px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(52px, 6vw, 90px);

    line-height: .92;

    text-transform: uppercase;
}

.product-detail-lead {
    margin-top: 20px;

    color: #514651;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.6;
}

.product-detail-price {
    margin-top: 28px;

    padding:
        16px 20px;

    display: inline-block;

    border:
        3px solid var(--ink);

    background: var(--yellow);

    box-shadow:
        5px 5px 0 var(--ink);

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 37px;
}

.product-detail-meta {
    margin-top: 35px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}

.product-detail-meta div {
    padding: 15px;

    border:
        2px solid var(--ink);

    background: white;
}

.product-detail-meta span {
    display: block;

    margin-bottom: 5px;

    color: #675b67;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.product-description {
    margin-top: 35px;

    padding-top: 25px;

    border-top:
        3px solid var(--ink);
}

.product-description h2 {
    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 30px;

    text-transform: uppercase;
}

.product-description p {
    margin-top: 12px;

    line-height: 1.7;
}

.product-purchase-box {
    margin-top: 35px;

    padding: 20px;

    border:
        3px solid var(--ink);

    background: var(--cyan);

    box-shadow:
        5px 5px 0 var(--ink);
}

.product-purchase-box strong {
    font-size: 14px;

    letter-spacing: 2px;
}

.product-purchase-box p {
    margin-top: 7px;

    font-size: 13px;

    line-height: 1.5;
}

.product-purchase-box.unavailable {
    background: #ddd;
}

.product-action {
    text-decoration: none;
}

@media (max-width: 850px) {

    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-detail-art {
        min-height: 380px;

        border-right: 0;

        border-bottom:
            3px solid var(--ink);
    }

    .product-detail-content {
        padding: 30px 22px;
    }
}

@media (max-width: 520px) {

    .product-page {
        padding-left: 20px;
        padding-right: 20px;
    }

    .product-detail-meta {
        grid-template-columns: 1fr;
    }
}




/* =========================================================
   CART
========================================================= */

.cart-page {
    min-height: 100vh;
    padding: 165px 6vw 100px;

    background:
        linear-gradient(
            180deg,
            #5ce7ed 0%,
            #f5aab9 30%,
            #f7e4c7 70%
        );
}

.cart-message {
    max-width: 1450px;
    margin: 0 auto 25px;
}

.cart-layout {
    max-width: 1450px;
    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        400px;

    gap: 30px;

    align-items: start;
}

.cart-items {
    display: grid;
    gap: 22px;
}

.cart-item {
    display: grid;

    grid-template-columns:
        210px
        minmax(0, 1fr);

    border: 3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        8px 8px 0 var(--ink);
}

.cart-item-art {
    min-height: 220px;

    display: grid;
    place-items: center;

    border-right: 3px solid var(--ink);

    background:
        linear-gradient(
            135deg,
            var(--pink),
            var(--coral)
        );
}

.cart-item-content {
    padding: 25px;
}

.cart-item-content small {
    color: var(--pink-hot);

    font-weight: 900;
    letter-spacing: 2px;
}

.cart-item-content h2 {
    margin-top: 5px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 35px;

    text-transform: uppercase;
}

.cart-unit-price {
    margin-top: 8px;
}

.cart-line-total {
    display: block;

    margin-top: 7px;

    font-size: 20px;
}

.cart-quantity-form {
    display: flex;

    align-items: flex-end;

    gap: 10px;

    flex-wrap: wrap;

    margin: 22px 0 12px;
}

.cart-quantity-form label {
    width: 100%;

    font-size: 11px;
    font-weight: 900;

    text-transform: uppercase;
}

.cart-quantity-form input {
    width: 90px;
    min-height: 38px;

    padding: 7px 9px;

    border: 2px solid var(--ink);
}

.cart-summary {
    padding: 28px;

    border: 3px solid var(--ink);

    background: var(--yellow);

    box-shadow:
        9px 9px 0 var(--ink);
}

.cart-summary h2 {
    margin: 15px 0 25px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 46px;

    text-transform: uppercase;
}

.cart-promotion-box {
    margin-bottom: 20px;

    padding: 16px;

    border: 2px solid var(--ink);

    background: var(--cream);
}

.cart-promotion-box h3 {
    margin-bottom: 13px;

    font-size: 14px;

    text-transform: uppercase;
}

.promotion-form {
    display: grid;
    gap: 8px;
}

.promotion-form label {
    font-size: 11px;

    font-weight: 900;

    text-transform: uppercase;
}

.promotion-form input {
    width: 100%;

    min-height: 42px;

    padding: 9px 11px;

    border: 2px solid var(--ink);

    background: white;
}

.applied-promotion {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 15px;

    margin-bottom: 10px;
}

.applied-promotion span {
    display: block;

    margin-top: 4px;

    font-family:
        "Courier New",
        monospace;

    font-size: 12px;
}

.promotion-warning {
    margin-top: 10px;

    font-size: 12px;

    font-weight: 800;
}

.cart-summary-row,
.cart-summary-total {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 15px 0;

    border-bottom: 2px solid var(--ink);
}

.cart-summary-total {
    margin-top: 5px;

    border-bottom: 0;

    font-size: 20px;
}

.cart-checkout-disabled {
    margin-top: 20px;

    padding: 17px;

    border: 3px solid var(--ink);

    background: #ddd;

    text-align: center;

    font-weight: 900;
}

.cart-checkout-disabled small {
    display: block;

    margin-top: 5px;

    font-weight: 600;
}

.cart-empty {
    max-width: 760px;

    margin: auto;

    padding: 40px;

    border: 3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        10px 10px 0 var(--ink);

    text-align: center;
}

.cart-empty h2 {
    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 44px;

    text-transform: uppercase;
}

.cart-empty p {
    margin-top: 10px;
}

.cart-shop-button {
    width: auto;

    margin-top: 25px;

    padding: 0 20px;

    text-decoration: none;
}

.cart-add-form {
    margin-top: 18px;
}

@media (max-width: 950px) {

    .cart-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {

    .cart-page {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cart-item {
        grid-template-columns: 1fr;
    }

    .cart-item-art {
        min-height: 180px;

        border-right: 0;

        border-bottom: 3px solid var(--ink);
    }
}



/* =========================================================
   ADMIN PROMOTIONS
========================================================= */

.promotion-admin-actions {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}

.promotion-action-link {
    display: block;

    color: var(--ink);

    text-decoration: none;
}

.promotion-action-link:hover {
    transform: translate(-2px, -2px);

    box-shadow:
        11px 11px 0 var(--ink);
}

.promotion-generated-card {
    max-width: 850px;

    margin: auto;

    padding: 35px;

    border:
        3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        11px 11px 0 var(--ink);
}

.promotion-security-warning {
    margin-bottom: 25px;

    padding: 18px;

    border:
        3px solid var(--ink);

    background: var(--yellow);
}

.promotion-security-warning strong {
    display: block;

    margin-bottom: 7px;

    font-size: 12px;

    letter-spacing: 2px;
}

.promotion-security-warning p {
    line-height: 1.6;

    font-weight: 700;
}

.promotion-generated-meta {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 13px 0;

    border-bottom:
        2px solid var(--ink);
}

.promotion-generated-meta span {
    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1px;
}

.promotion-code-box {
    margin-top: 30px;

    padding: 25px;

    border:
        3px solid var(--ink);

    background: var(--cyan);

    box-shadow:
        6px 6px 0 var(--ink);
}

.promotion-code-box span {
    display: block;

    margin-bottom: 10px;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;
}

.promotion-code-box code {
    display: block;

    overflow-wrap: anywhere;

    font-family:
        "Courier New",
        monospace;

    font-size:
        clamp(17px, 3vw, 25px);

    font-weight: 900;

    line-height: 1.5;
}

.promotion-one-time-note {
    margin-top: 25px;

    padding: 14px;

    border-left:
        5px solid var(--pink-hot);

    background: white;

    font-size: 13px;

    font-weight: 700;

    line-height: 1.6;
}

.promotion-back-button {
    width: auto;

    margin-top: 25px;

    padding:
        0 25px;

    text-decoration: none;
}

.gift-card-balance-panel {
    margin-bottom: 30px;

    padding: 20px;

    border:
        3px solid var(--ink);

    background: var(--cyan);

    box-shadow:
        5px 5px 0 var(--ink);
}

.gift-card-balance-panel span {
    display: block;

    margin-bottom: 7px;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;
}

.gift-card-balance-panel strong {
    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 35px;
}

@media (max-width: 750px) {

    .promotion-admin-actions {
        grid-template-columns: 1fr;
    }

    .promotion-generated-card {
        padding: 24px 18px;
    }
}
/* =========================================================
   ADMIN PGP SETTINGS
========================================================= */

.pgp-admin-message {
    max-width: 1450px;
    margin: 0 auto 25px;
}

.pgp-admin-grid {
    max-width: 1450px;
    margin: auto;

    display: grid;
    grid-template-columns:
        minmax(300px, .8fr)
        minmax(0, 1.2fr);

    gap: 28px;
    align-items: start;
}

.pgp-current-card {
    padding: 30px;

    border: 3px solid var(--ink);

    background: var(--yellow);

    box-shadow:
        9px 9px 0 var(--ink);
}

.pgp-current-card h2,
.pgp-form-title {
    margin: 15px 0 25px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 38px;

    text-transform: uppercase;
}

.pgp-current-card > p {
    line-height: 1.6;
    font-weight: 700;
}

.pgp-key-field {
    margin-top: 15px;
    padding: 15px;

    border: 2px solid var(--ink);

    background: var(--cream);
}

.pgp-key-field span {
    display: block;

    margin-bottom: 7px;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.pgp-key-field code {
    display: block;

    overflow-wrap: anywhere;

    font-family:
        "Courier New",
        monospace;

    font-size: 12px;
    font-weight: 700;
}

.pgp-key-status {
    margin-top: 22px;
    padding: 14px;

    border: 3px solid var(--ink);

    background: var(--cyan);

    text-align: center;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;
}

.pgp-key-status-danger {
    background: var(--pink-hot);
    color: white;
}

.pgp-key-form-card {
    max-width: none;
    margin: 0;
}

.pgp-key-form-card textarea {
    min-height: 370px;

    resize: vertical;

    font-family:
        "Courier New",
        monospace;

    font-size: 12px;
    line-height: 1.5;
}

.pgp-history-section {
    max-width: 1450px;

    margin:
        60px auto
        0;
}

.pgp-fingerprint {
    display: block;

    max-width: 340px;

    overflow-wrap: anywhere;
}

@media (max-width: 900px) {

    .pgp-admin-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   CHECKOUT + ORDER
========================================================= */

.checkout-page {
    min-height: 100vh;

    padding:
        165px 6vw
        100px;

    background:
        linear-gradient(
            180deg,
            #5ce7ed 0%,
            #f5aab9 30%,
            #f7e4c7 70%
        );
}

.checkout-message {
    max-width: 1450px;

    margin:
        0 auto
        25px;
}

.checkout-layout {
    max-width: 1450px;

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        420px;

    gap: 30px;

    align-items: start;
}

.checkout-address-card,
.order-confirmation-card {
    padding: 30px;

    border:
        3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        9px 9px 0 var(--ink);
}

.checkout-address-card h2,
.order-confirmation-card h1 {
    margin:
        15px 0
        25px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(38px, 6vw, 60px);

    text-transform: uppercase;
}

.checkout-address-card textarea {
    min-height: 260px;

    resize: vertical;
}

.checkout-item-row,
.order-line {
    display: flex;

    justify-content:
        space-between;

    gap: 20px;

    padding: 12px 0;

    border-bottom:
        1px solid var(--ink);
}

.cart-checkout-button {
    margin-top: 20px;

    text-decoration: none;
}

.order-confirmation-card {
    max-width: 900px;

    margin: auto;
}

.order-status-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

    margin: 25px 0;
}

.order-status-grid > div {
    padding: 17px;

    border:
        2px solid var(--ink);

    background: var(--yellow);
}

.order-status-grid span {
    display: block;

    margin-bottom: 5px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;
}

.order-lines {
    margin:
        30px 0;
}

@media (max-width: 900px) {

    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .order-status-grid {
        grid-template-columns: 1fr;
    }
}




/* =========================================================
   ADMIN BITCOIN SETTINGS
========================================================= */

.bitcoin-admin-message {
    max-width: 1450px;

    margin:
        0 auto
        25px;
}

.bitcoin-admin-grid {
    max-width: 1450px;

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(300px, .8fr)
        minmax(0, 1.2fr);

    gap: 28px;

    align-items: start;
}

.bitcoin-current-card {
    padding: 30px;

    border:
        3px solid var(--ink);

    background: var(--yellow);

    box-shadow:
        9px 9px 0 var(--ink);
}

.bitcoin-current-card h2,
.bitcoin-form-title {
    margin:
        15px 0
        25px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 38px;

    text-transform: uppercase;
}

.bitcoin-current-card > p {
    line-height: 1.6;

    font-weight: 700;
}

.bitcoin-config-field {
    margin-top: 15px;

    padding: 15px;

    border:
        2px solid var(--ink);

    background: var(--cream);
}

.bitcoin-config-field span {
    display: block;

    margin-bottom: 7px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.bitcoin-config-field code {
    display: block;

    overflow-wrap: anywhere;

    font-family:
        "Courier New",
        monospace;

    font-size: 12px;

    font-weight: 700;
}

.bitcoin-status {
    margin-top: 22px;

    padding: 14px;

    border:
        3px solid var(--ink);

    text-align: center;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;
}

.bitcoin-status-ready {
    background: var(--cyan);
}

.bitcoin-status-warning {
    background: var(--yellow);
}

.bitcoin-status-danger {
    background: var(--pink-hot);

    color: white;
}

.bitcoin-status-note {
    margin-top: 15px;

    font-size: 13px;

    line-height: 1.6;
}

.bitcoin-config-form {
    max-width: none;

    margin: 0;
}

.bitcoin-config-form textarea {
    min-height: 230px;

    resize: vertical;

    font-family:
        "Courier New",
        monospace;

    font-size: 12px;

    line-height: 1.5;
}

.bitcoin-history-section {
    max-width: 1450px;

    margin:
        60px auto
        0;
}

@media (max-width: 900px) {

    .bitcoin-admin-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   ORDER BITCOIN
========================================================= */

.order-bitcoin {
    margin-top: 34px;
    padding: 24px;

    border: 3px solid var(--ink);

    background: var(--yellow);

    box-shadow:
        8px 8px 0 var(--ink);
}

.order-bitcoin__heading {
    margin-bottom: 22px;
}

.order-bitcoin__heading h2 {
    margin:
        8px 0
        0;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            34px,
            7vw,
            54px
        );

    line-height: 0.95;

    text-transform: uppercase;
}

.order-bitcoin__message {
    margin-bottom: 18px;
    padding: 13px 15px;

    border: 2px solid var(--ink);

    background: var(--cream);

    font-weight: 800;
}

.order-bitcoin__message--error {
    background: var(--pink);
}

.order-bitcoin__status {
    display: flex;
    flex-direction: column;
    gap: 5px;

    margin-bottom: 18px;
    padding: 15px;

    border: 3px solid var(--ink);

    background: var(--cream);
}

.order-bitcoin__status span {
    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.order-bitcoin__status strong {
    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 25px;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.order-bitcoin__status p {
    margin:
        5px 0
        0;
}

.order-bitcoin__status--detected {
    background: var(--cyan);
}

.order-bitcoin__status--confirmed {
    background: var(--lime);
}

.order-bitcoin__status--expired {
    background: var(--pink);
}

.order-bitcoin__grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap: 13px;
}

.order-bitcoin__field {
    min-width: 0;

    padding: 15px;

    border: 2px solid var(--ink);

    background: var(--cream);
}

.order-bitcoin__field--address {
    grid-column:
        1
        /
        -1;
}

.order-bitcoin__field span {
    display: block;

    margin-bottom: 8px;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.order-bitcoin__field strong {
    display: block;

    font-size: 16px;
}

.order-bitcoin__field small {
    display: block;

    margin-top: 5px;

    font-size: 12px;
    font-weight: 800;
}

.order-bitcoin__field code {
    display: block;

    max-width: 100%;

    overflow-wrap: anywhere;
    word-break: break-word;

    font-family:
        "Courier New",
        Courier,
        monospace;

    font-size: 13px;
    font-weight: 800;
}

.order-bitcoin__form {
    margin-top: 20px;
}

.order-bitcoin__notice {
    margin-top: 20px;
    padding: 15px;

    border: 3px solid var(--ink);

    background: var(--cream);
}

.order-bitcoin__notice strong {
    display: block;

    margin-bottom: 7px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 22px;

    text-transform: uppercase;
}

.order-bitcoin__notice p {
    margin:
        6px 0
        0;
}

.order-bitcoin__notice--success {
    background: var(--lime);
}

.order-bitcoin__notice--danger {
    background: var(--pink);
}

@media (max-width: 700px) {

    .order-bitcoin {
        padding: 18px;
    }

    .order-bitcoin__grid {
        grid-template-columns:
            1fr;
    }

    .order-bitcoin__field--address {
        grid-column: auto;
    }

}
/* =========================================================
   ADMIN SHIPPING METHODS
========================================================= */

.shipping-admin-page {
    position: relative;
    z-index: 1;

    width: min(
        1180px,
        calc(100% - 40px)
    );

    margin:
        0
        auto;

    padding:
        48px
        0
        80px;
}

.shipping-admin-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;

    padding: 28px;

    border: 3px solid #121014;

    background: #f8dfc8;

    box-shadow:
        8px
        8px
        0 #121014;
}

.shipping-admin-hero__copy {
    min-width: 0;
}

.shipping-admin-hero h1 {
    margin:
        8px
        0
        8px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            38px,
            6vw,
            64px
        );

    line-height: 0.95;

    text-transform: uppercase;
}

.shipping-admin-hero p {
    max-width: 650px;

    margin: 0;

    font-weight: 700;
}

.shipping-admin-hero__action {
    flex:
        0
        0
        auto;
}

.shipping-admin-hero__action .vice-button {
    position: relative;
    z-index: 5;

    display: inline-block;
}

.shipping-admin-message {
    margin-bottom: 26px;

    padding: 16px 18px;

    border: 3px solid #121014;

    background: #70e7ee;

    box-shadow:
        5px
        5px
        0 #121014;

    font-weight: 900;
}

.shipping-admin-empty {
    position: relative;

    padding: 32px;

    border: 3px solid #121014;

    background: #fff7e9;

    box-shadow:
        8px
        8px
        0 #121014;
}

.shipping-admin-empty h2 {
    margin:
        10px
        0
        8px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            30px,
            5vw,
            46px
        );

    text-transform: uppercase;
}

.shipping-admin-empty p {
    max-width: 680px;

    margin:
        0
        0
        24px;

    font-weight: 700;
}

.shipping-admin-empty .vice-button {
    position: relative;
    z-index: 5;

    display: inline-block;
}

.shipping-admin-table-card {
    border: 3px solid #121014;

    background: #fff7e9;

    box-shadow:
        8px
        8px
        0 #121014;
}

.shipping-admin-table-scroll {
    width: 100%;

    overflow-x: auto;
}

.shipping-admin-table {
    width: 100%;

    border-collapse: collapse;

    table-layout: auto;
}

.shipping-admin-table th,
.shipping-admin-table td {
    padding: 16px;

    border-bottom:
        2px
        solid
        #121014;

    text-align: left;

    vertical-align: middle;
}

.shipping-admin-table th {
    background: #70e7ee;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.shipping-admin-table tbody tr:last-child td {
    border-bottom: 0;
}

.shipping-admin-table td strong {
    display: block;
}

.shipping-admin-table td small {
    display: block;

    max-width: 420px;

    margin-top: 5px;

    line-height: 1.35;
}

.shipping-admin-badge {
    display: inline-block;

    padding:
        6px
        10px;

    border: 2px solid #121014;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.shipping-admin-badge--active {
    background: #70e7ee;
}

.shipping-admin-badge--inactive {
    background: #ff6f91;
}

.shipping-admin-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;
}

.shipping-admin-actions form {
    margin: 0;
}

.shipping-admin-button-small {
    position: relative;
    z-index: 2;

    padding:
        9px
        12px;

    font-size: 11px;

    cursor: pointer;
}

@media (max-width: 760px) {

    .shipping-admin-page {
        width: min(
            100% - 24px,
            1180px
        );

        padding-top: 28px;
    }

    .shipping-admin-hero {
        align-items: stretch;
        flex-direction: column;

        padding: 20px;
    }

    .shipping-admin-hero__action {
        width: 100%;
    }

    .shipping-admin-hero__action .vice-button {
        width: 100%;

        text-align: center;
    }

    .shipping-admin-empty {
        padding: 22px;
    }

}
.shipping-admin-page {
    isolation: isolate;
}

.shipping-admin-page .vice-button {
    position: relative;
    z-index: 10;
}

/* =========================================================
   ADMIN ORDERS - FILTERS / LIST UI
========================================================= */

/*
 * Pannello filtri.
 * Mantiene lo stile Vice ma evita che occupi troppo spazio.
 */
.admin-main > .admin-action-card {
    max-width: 1450px;
    margin:
        0 auto
        28px;
}


/*
 * Layout dei campi filtro.
 */
.admin-action-card form[method="GET"] .product-detail-meta {
    margin-top: 24px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;
}


/*
 * Rimuove l'aspetto da "card generica" ereditato
 * dai metadati prodotto e crea campi filtro coerenti.
 */
.admin-action-card form[method="GET"] .product-detail-meta > div {
    min-width: 0;

    padding: 0;

    border: 0;

    background: transparent;
}


/*
 * Label filtri.
 */
.admin-action-card form[method="GET"] label {
    display: block;

    margin-bottom: 8px;

    color: var(--ink);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


/*
 * Select admin.
 *
 * Il background-image crea la freccia senza immagini esterne
 * e senza JavaScript.
 */
.admin-action-card form[method="GET"] select {
    width: 100%;
    min-height: 48px;

    padding:
        10px
        44px
        10px
        14px;

    appearance: none;
    -webkit-appearance: none;

    border:
        2px solid var(--ink);

    border-radius: 0;

    outline: none;

    background-color: var(--cream);

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            var(--ink) 50%
        ),
        linear-gradient(
            135deg,
            var(--ink) 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 18px) 20px,
        calc(100% - 12px) 20px;

    background-size:
        6px 6px,
        6px 6px;

    background-repeat: no-repeat;

    color: var(--ink);

    font: inherit;
    font-weight: 800;

    cursor: pointer;
}


/*
 * Stato hover/focus accessibile.
 */
.admin-action-card form[method="GET"] select:hover {
    background-color: white;
}

.admin-action-card form[method="GET"] select:focus-visible {
    box-shadow:
        4px 4px 0 var(--pink-hot);
}


/*
 * Option.
 *
 * Alcuni browser limitano la personalizzazione delle option,
 * ma font e colori vengono comunque applicati dove supportato.
 */
.admin-action-card form[method="GET"] option {
    background: var(--cream);
    color: var(--ink);

    font-weight: 700;
}


/*
 * Checkbox "solo messaggi non letti".
 */
.admin-action-card form[method="GET"] input[type="checkbox"] {
    width: 20px;
    height: 20px;

    margin: 0;

    accent-color: var(--pink-hot);

    cursor: pointer;
}


/*
 * Il contenitore checkbox diventa una fascia compatta.
 */
.admin-action-card form[method="GET"]
.product-detail-meta > div:has(input[type="checkbox"]) {
    grid-column:
        1
        /
        -1;

    padding: 13px 15px;

    border:
        2px solid var(--ink);

    background: var(--cream);
}

.admin-action-card form[method="GET"]
.product-detail-meta > div:has(input[type="checkbox"]) label {
    display: flex;
    align-items: center;

    gap: 10px;

    margin: 0;

    cursor: pointer;
}


/*
 * Barra azioni dei filtri.
 */
.admin-action-card form[method="GET"] > .cart-summary-row {
    margin-top: 18px;
    padding:
        18px
        0
        0;

    align-items: center;
    justify-content: flex-start;

    gap: 14px;

    border-top:
        2px solid var(--ink);

    border-bottom: 0;
}


/*
 * Impedisce al bottone principale di occupare tutta
 * la larghezza disponibile.
 */
.admin-action-card form[method="GET"] > .cart-summary-row .vice-button {
    width: auto;
    min-width: 210px;

    padding:
        0
        25px;
}


/*
 * Pulsante reset proporzionato.
 */
.admin-action-card form[method="GET"] > .cart-summary-row
.admin-small-button {
    min-height: 55px;

    padding:
        0
        18px;
}


/*
 * Il riepilogo Risultati / Pagina deve essere compatto:
 * due card, non una griglia da quattro colonne vuota.
 */
.admin-main > .admin-action-card + .admin-stats {
    grid-template-columns:
        repeat(2, minmax(180px, 250px));

    justify-content: flex-start;

    margin-bottom: 34px;
}

.admin-main > .admin-action-card + .admin-stats .admin-stat {
    min-height: 125px;

    padding: 20px;
}

.admin-main > .admin-action-card + .admin-stats
.admin-stat strong {
    margin-top: 14px;

    font-size: 46px;
}


/*
 * Migliora anche i controlli generali dell'area admin.
 */
.admin-main select,
.admin-main input,
.admin-main textarea,
.admin-main button {
    font-family:
        Arial,
        Helvetica,
        sans-serif;
}


/*
 * Responsive.
 */
@media (max-width: 800px) {

    .admin-action-card form[method="GET"] .product-detail-meta {
        grid-template-columns: 1fr;
    }

    .admin-action-card form[method="GET"]
    .product-detail-meta > div:has(input[type="checkbox"]) {
        grid-column: auto;
    }

    .admin-main > .admin-action-card + .admin-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 550px) {

    .admin-action-card form[method="GET"] > .cart-summary-row {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-action-card form[method="GET"] > .cart-summary-row
    .vice-button,
    .admin-action-card form[method="GET"] > .cart-summary-row
    .admin-small-button {
        width: 100%;
    }

    .admin-main > .admin-action-card + .admin-stats {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   ERROR 429 • RATE LIMIT
   Vice Market
   ========================================================= */

.rate-limit-page {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255, 74, 151, 0.14),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(47, 231, 229, 0.14),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #ffe3cb 0%,
            #fff0dc 42%,
            #ffd8c7 100%
        );
    color: #fff7ec;
}

.rate-limit-main {
    position: relative;
    display: grid;
    min-height: calc(100vh - 170px);
    place-items: center;
    padding: 48px 18px 72px;
    isolation: isolate;
}

.rate-limit-main::before,
.rate-limit-main::after {
    position: fixed;
    z-index: -3;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    content: "";
    filter: blur(95px);
    pointer-events: none;
}

.rate-limit-main::before {
    top: 8%;
    left: -180px;
    background: rgba(255, 49, 135, 0.32);
    animation:
        rate-limit-float-left
        9s
        ease-in-out
        infinite
        alternate;
}

.rate-limit-main::after {
    right: -190px;
    bottom: 4%;
    background: rgba(45, 232, 230, 0.3);
    animation:
        rate-limit-float-right
        11s
        ease-in-out
        infinite
        alternate;
}


/* ---------------------------------------------------------
   Main card
   --------------------------------------------------------- */

.rate-limit-card {
    position: relative;
    width: min(100%, 780px);
    overflow: hidden;
    padding: clamp(32px, 6vw, 62px);
    border: 4px solid #0d0a16;
    border-radius: 32px;
    background:
        linear-gradient(
            155deg,
            #21162f 0%,
            #171023 45%,
            #0e0b18 100%
        );
    box-shadow:
        12px 12px 0 #0d0a16,
        0 25px 80px rgba(24, 8, 35, 0.26),
        0 0 40px rgba(255, 49, 135, 0.12),
        0 0 70px rgba(45, 232, 230, 0.08);
    text-align: center;
}

.rate-limit-card::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        repeating-linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.018) 0,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px,
            transparent 5px
        );
    content: "";
    pointer-events: none;
}

.rate-limit-card::after {
    position: absolute;
    top: -45%;
    left: -20%;
    z-index: 0;
    width: 140%;
    height: 65%;
    background:
        linear-gradient(
            115deg,
            transparent 25%,
            rgba(255, 255, 255, 0.045) 50%,
            transparent 75%
        );
    content: "";
    transform: rotate(-8deg);
    animation:
        rate-limit-scan
        7s
        ease-in-out
        infinite;
    pointer-events: none;
}

.rate-limit-card > * {
    position: relative;
    z-index: 2;
}

.rate-limit-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    z-index: 1;
    width: 440px;
    height: 280px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(255, 49, 135, 0.25),
            transparent 68%
        );
    filter: blur(45px);
    transform: translateX(-50%);
    animation:
        rate-limit-glow
        2.8s
        ease-in-out
        infinite
        alternate;
    pointer-events: none;
}


/* ---------------------------------------------------------
   Eyebrow
   --------------------------------------------------------- */

.rate-limit-card .section-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    padding: 10px 18px;
    border: 3px solid #0d0a16;
    background: #43e7e2;
    box-shadow:
        5px 5px 0 #0d0a16,
        0 0 22px rgba(67, 231, 226, 0.24);
    color: #10101a;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transform: rotate(-1.5deg);
}


/* ---------------------------------------------------------
   Loader
   --------------------------------------------------------- */

.rate-limit-loader {
    display: grid;
    place-items: center;
    margin: 4px 0 26px;
}

.rate-limit-loader-ring {
    position: relative;
    display: grid;
    width: 150px;
    height: 150px;
    place-content: center;
    border: 2px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(255, 49, 135, 0.12) 0%,
            rgba(23, 16, 35, 0.45) 55%,
            rgba(12, 9, 19, 0.9) 72%
        );
    box-shadow:
        inset 0 0 34px rgba(255, 49, 135, 0.12),
        0 0 38px rgba(45, 232, 230, 0.12);
}

.rate-limit-loader-ring::before,
.rate-limit-loader-ring::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.rate-limit-loader-ring::before {
    inset: -9px;
    border: 6px solid transparent;
    border-top-color: #ff3187;
    border-right-color: #39e8e6;
    border-bottom-color: rgba(57, 232, 230, 0.18);
    animation:
        rate-limit-spin
        1.2s
        linear
        infinite;
    filter:
        drop-shadow(
            0 0 8px
            rgba(255, 49, 135, 0.55)
        );
}

.rate-limit-loader-ring::after {
    inset: 10px;
    border: 3px solid transparent;
    border-right-color: #ffd74f;
    border-bottom-color: #ffd74f;
    animation:
        rate-limit-spin-reverse
        2.2s
        linear
        infinite;
}

.rate-limit-loader-ring span {
    display: block;
    color: #fff7ec;
    font-size: 2.8rem;
    font-weight: 950;
    line-height: 0.95;
    text-shadow:
        0 0 16px rgba(255, 49, 135, 0.42);
}

.rate-limit-loader-ring small {
    display: block;
    margin-top: 9px;
    color: #43e7e2;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.24em;
}


/* ---------------------------------------------------------
   Heading
   --------------------------------------------------------- */

.rate-limit-card h1 {
    max-width: 660px;
    margin: 18px auto 18px;
    color: #fff7ec;
    font-size: clamp(3rem, 8vw, 5.7rem);
    font-weight: 950;
    line-height: 0.84;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    text-shadow:
        4px 4px 0 #ff3187,
        8px 8px 0 rgba(57, 232, 230, 0.16),
        0 0 30px rgba(255, 49, 135, 0.2);
}

.rate-limit-lead {
    max-width: 590px;
    margin: 0 auto 32px;
    color: #e9dff0;
    font-size: clamp(1rem, 2.5vw, 1.16rem);
    font-weight: 650;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   Security warning
   --------------------------------------------------------- */

.rate-limit-card .promotion-security-warning {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    padding: 24px 26px;
    border: 3px solid #0d0a16;
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            #ffd74f,
            #ffbd51
        );
    box-shadow:
        7px 7px 0 #0d0a16,
        0 0 24px rgba(255, 215, 79, 0.16);
    color: #15101b;
    transform: rotate(-0.4deg);
}

.rate-limit-card
.promotion-security-warning
strong {
    display: block;
    margin-bottom: 12px;
    color: #15101b;
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.rate-limit-card
.promotion-security-warning
p {
    margin: 8px 0 0;
    color: #15101b;
    font-size: 1rem;
    font-weight: 720;
    line-height: 1.55;
}

.rate-limit-card
.promotion-security-warning
p strong {
    display: inline;
    margin: 0;
    color: #15101b;
    font-size: inherit;
    letter-spacing: normal;
}


/* ---------------------------------------------------------
   Countdown progress
   --------------------------------------------------------- */

.rate-limit-progress {
    position: relative;
    height: 18px;
    margin: 42px 0 24px;
    overflow: hidden;
    border: 3px solid #0d0a16;
    border-radius: 999px;
    background: #292236;
    box-shadow:
        inset 0 0 0 1px
        rgba(255, 255, 255, 0.04),
        0 0 24px rgba(57, 232, 230, 0.08);
}

.rate-limit-progress::after {
    position: absolute;
    inset: 3px;
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.24),
            transparent
        );
    content: "";
    transform: translateX(-100%);
    animation:
        rate-limit-progress-shine
        2.4s
        linear
        infinite;
    pointer-events: none;
}

.rate-limit-progress-bar {
    width: 100%;
    height: 100%;
    transform-origin: left center;
    background:
        linear-gradient(
            90deg,
            #ff3187 0%,
            #ff685f 26%,
            #ffd74f 52%,
            #42df9e 75%,
            #39e8e6 100%
        );
    box-shadow:
        0 0 20px rgba(255, 49, 135, 0.48),
        0 0 30px rgba(57, 232, 230, 0.2);
    animation:
        rate-limit-countdown
        60s
        linear
        forwards;
}


/* ---------------------------------------------------------
   Status
   --------------------------------------------------------- */

.rate-limit-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin: 2px auto 22px;
    padding: 10px 16px;
    border: 1px solid rgba(67, 231, 226, 0.16);
    border-radius: 999px;
    background: rgba(67, 231, 226, 0.05);
    color: #8ffaf6;
    font-size: 0.77rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.rate-limit-status-dot {
    width: 11px;
    height: 11px;
    flex: 0 0 11px;
    border: 2px solid #0d0a16;
    border-radius: 50%;
    background: #39e8e6;
    box-shadow:
        0 0 0 4px rgba(57, 232, 230, 0.1),
        0 0 16px rgba(57, 232, 230, 0.9);
    animation:
        rate-limit-pulse
        1.25s
        ease-in-out
        infinite;
}

.rate-limit-note {
    max-width: 540px;
    margin: 0 auto 32px;
    color: #cfc2d8;
    font-size: 0.92rem;
    font-weight: 550;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   Retry button
   --------------------------------------------------------- */

.rate-limit-retry {
    display: inline-flex;
    width: min(100%, 410px);
    min-height: 58px;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    border: 3px solid #0d0a16;
    background:
        linear-gradient(
            90deg,
            #ff1780,
            #ff3c96
        );
    box-shadow:
        7px 7px 0 #0d0a16,
        0 0 26px rgba(255, 23, 128, 0.22);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease;
}

.rate-limit-retry:hover,
.rate-limit-retry:focus-visible {
    background:
        linear-gradient(
            90deg,
            #39e8e6,
            #77fff5
        );
    color: #111019;
    transform: translate(-2px, -2px);
    box-shadow:
        9px 9px 0 #0d0a16,
        0 0 28px rgba(57, 232, 230, 0.28);
}

.rate-limit-retry:active {
    transform: translate(4px, 4px);
    box-shadow:
        3px 3px 0 #0d0a16;
}


/* ---------------------------------------------------------
   Animations
   --------------------------------------------------------- */

@keyframes rate-limit-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rate-limit-spin-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes rate-limit-countdown {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

@keyframes rate-limit-progress-shine {
    from {
        transform: translateX(-120%);
    }

    to {
        transform: translateX(120%);
    }
}

@keyframes rate-limit-pulse {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(0.82);
    }

    50% {
        opacity: 1;
        transform: scale(1.18);
    }
}

@keyframes rate-limit-glow {
    from {
        opacity: 0.38;
        transform:
            translateX(-50%)
            scale(0.92);
    }

    to {
        opacity: 0.78;
        transform:
            translateX(-50%)
            scale(1.08);
    }
}

@keyframes rate-limit-float-left {
    from {
        transform:
            translate3d(0, 0, 0)
            scale(0.92);
    }

    to {
        transform:
            translate3d(100px, 70px, 0)
            scale(1.08);
    }
}

@keyframes rate-limit-float-right {
    from {
        transform:
            translate3d(0, 0, 0)
            scale(0.94);
    }

    to {
        transform:
            translate3d(-90px, -65px, 0)
            scale(1.1);
    }
}

@keyframes rate-limit-scan {
    0%,
    20% {
        transform:
            translateY(-30%)
            rotate(-8deg);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    75%,
    100% {
        transform:
            translateY(190%)
            rotate(-8deg);
        opacity: 0;
    }
}


/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

@media (max-width: 640px) {
    .rate-limit-main {
        padding: 28px 12px 52px;
    }

    .rate-limit-card {
        padding: 30px 20px 38px;
        border-radius: 24px;
        box-shadow:
            7px 7px 0 #0d0a16,
            0 22px 60px rgba(24, 8, 35, 0.24);
    }

    .rate-limit-loader-ring {
        width: 122px;
        height: 122px;
    }

    .rate-limit-loader-ring span {
        font-size: 2.25rem;
    }

    .rate-limit-card h1 {
        font-size: clamp(
            2.7rem,
            15vw,
            4.2rem
        );
    }

    .rate-limit-card
    .promotion-security-warning {
        padding: 21px 18px;
    }

    .rate-limit-progress {
        margin-top: 34px;
    }

    .rate-limit-status {
        font-size: 0.68rem;
        letter-spacing: 0.09em;
    }
}


/* ---------------------------------------------------------
   Accessibility
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    .rate-limit-main::before,
    .rate-limit-main::after,
    .rate-limit-card::after,
    .rate-limit-glow,
    .rate-limit-loader-ring::before,
    .rate-limit-loader-ring::after,
    .rate-limit-status-dot,
    .rate-limit-progress::after {
        animation: none;
    }

    .rate-limit-progress-bar {
        animation: none;
        transform: scaleX(1);
    }

    .rate-limit-retry {
        transition: none;
    }
}

/* =========================================================
   VICE MARKET - SHOP NOTIFICATIONS
========================================================= */

.notifications-main {
    min-height: 68vh;
    padding: 64px 24px 90px;
    background:
        radial-gradient(
            circle at 8% 10%,
            rgba(255, 47, 146, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 18%,
            rgba(56, 232, 234, 0.16),
            transparent 26%
        ),
        #f6e3cf;
}

.notifications-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.notifications-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;

    padding: 34px;

    background:
        linear-gradient(
            135deg,
            #171017 0%,
            #24132b 100%
        );

    border: 3px solid #111;
    box-shadow:
        10px 10px 0 #111,
        14px 14px 0 #38e8ea;

    color: #fff7ec;
}

.notifications-heading > div:first-child {
    min-width: 0;
}

.notifications-heading .section-eyebrow {
    display: inline-block;

    margin-bottom: 16px;
    padding: 8px 12px;

    border: 2px solid #111;
    background: #38e8ea;

    color: #111;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;

    box-shadow: 4px 4px 0 #ff2f92;
}

.notifications-heading h1 {
    margin: 0;

    color: #fff7ec;

    font-size: clamp(42px, 8vw, 86px);
    line-height: 0.9;
    font-weight: 1000;
    letter-spacing: -0.06em;
    text-transform: uppercase;

    text-shadow:
        4px 4px 0 #ff2f92,
        7px 7px 0 #38e8ea;
}

.notifications-heading p {
    max-width: 650px;

    margin: 24px 0 0;

    color: #f2dfea;

    font-size: 16px;
    line-height: 1.65;
}

.notifications-summary {
    flex: 0 0 auto;

    min-width: 150px;

    padding: 18px 20px;

    border: 3px solid #111;
    background: #ffe56b;

    color: #111;

    text-align: center;

    box-shadow: 6px 6px 0 #ff2f92;

    transform: rotate(1.5deg);
}

.notifications-summary-label {
    display: block;

    margin-bottom: 4px;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.notifications-summary strong {
    display: block;

    font-size: 46px;
    line-height: 1;
    font-weight: 1000;
}

.notifications-actions {
    display: flex;
    justify-content: flex-end;

    margin: 34px 0 24px;
}

.notifications-actions form {
    margin: 0;
}

.notifications-read-all {
    border: 3px solid #111;

    background:
        linear-gradient(
            135deg,
            #ff2f92,
            #ff4f76
        );

    color: #fff;

    font-weight: 900;
    letter-spacing: 0.05em;

    box-shadow: 6px 6px 0 #111;
}

.notifications-read-all:hover,
.notifications-read-all:focus-visible {
    background: #38e8ea;
    color: #111;
}

.notifications-list {
    display: grid;
    gap: 24px;

    margin-top: 32px;
}

.notification-card {
    position: relative;

    overflow: hidden;

    padding: 26px 28px;

    border: 3px solid #111;

    transition:
        transform 160ms ease,
        box-shadow 160ms ease;
}

.notification-card::before {
    content: "";

    position: absolute;
    inset: 0 auto 0 0;

    width: 8px;
}

.notification-card-unread {
    background:
        linear-gradient(
            135deg,
            #fffaf3 0%,
            #ffe7f2 100%
        );

    box-shadow:
        8px 8px 0 #111,
        12px 12px 0 #ff2f92;
}

.notification-card-unread::before {
    background:
        linear-gradient(
            to bottom,
            #ff2f92,
            #38e8ea
        );
}

.notification-card-read {
    background: #eee0d4;

    box-shadow: 7px 7px 0 #111;

    opacity: 0.84;
}

.notification-card-read::before {
    background: #9b8797;
}

.notification-card:hover {
    transform: translateY(-2px);
}

.notification-card-unread:hover {
    box-shadow:
        10px 10px 0 #111,
        14px 14px 0 #38e8ea;
}

.notification-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    padding-left: 6px;
}

.notification-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.notification-type,
.notification-state {
    display: inline-flex;
    align-items: center;

    min-height: 30px;
    padding: 5px 10px;

    border: 2px solid #111;

    color: #111;

    font-size: 11px;
    font-weight: 1000;
    letter-spacing: 0.1em;
    line-height: 1;
}

.notification-type {
    background: #38e8ea;
}

.notification-state-new {
    background: #ff2f92;
    color: #fff;
}

.notification-state-read {
    background: #d7c8d1;
}

.notification-time {
    flex: 0 0 auto;

    color: #4f3f4c;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.notification-card-content {
    padding: 22px 6px 0;
}

.notification-card-content h2 {
    margin: 0;

    color: #171017;

    font-size: clamp(24px, 4vw, 36px);
    line-height: 1;
    font-weight: 1000;
    letter-spacing: -0.03em;
}

.notification-card-content p {
    max-width: 760px;

    margin: 14px 0 0;

    color: #493845;

    font-size: 15px;
    line-height: 1.65;
}

.notification-card-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;

    padding: 24px 6px 4px;
}

.notification-card-actions form {
    margin: 0;
}

.notification-order-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 10px 16px;

    border: 3px solid #111;

    background: #ffe56b;
    color: #111;

    font-weight: 1000;
    text-decoration: none;

    box-shadow: 4px 4px 0 #111;
}

.notification-order-link:hover,
.notification-order-link:focus-visible {
    background: #38e8ea;
    color: #111;
}

.notification-read-button {
    appearance: none;

    min-height: 44px;
    padding: 10px 16px;

    border: 3px solid #111;

    background: #171017;
    color: #fff7ec;

    font: inherit;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: 0.05em;

    cursor: pointer;

    box-shadow: 4px 4px 0 #ff2f92;
}

.notification-read-button:hover,
.notification-read-button:focus-visible {
    background: #ff2f92;
    color: #fff;
}

.notification-nav-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 24px;
    height: 24px;

    margin-left: 6px;
    padding: 0 6px;

    border: 2px solid #111;
    border-radius: 999px;

    background: #ff2f92;
    color: #fff;

    font-size: 10px;
    font-weight: 1000;
    line-height: 1;

    vertical-align: middle;
}

.notifications-empty {
    padding: 58px 32px;

    border: 3px solid #111;

    background:
        linear-gradient(
            135deg,
            #fff7ec,
            #f4dbe7
        );

    text-align: center;

    box-shadow:
        9px 9px 0 #111,
        13px 13px 0 #38e8ea;
}

.notifications-empty .section-eyebrow {
    display: inline-block;

    padding: 7px 12px;

    border: 2px solid #111;

    background: #38e8ea;
    color: #111;

    font-size: 11px;
    font-weight: 1000;
    letter-spacing: 0.15em;

    box-shadow: 4px 4px 0 #ff2f92;
}

.notifications-empty h2 {
    margin: 24px 0 0;

    color: #171017;

    font-size: clamp(32px, 6vw, 60px);
    line-height: 1;
    font-weight: 1000;
    letter-spacing: -0.05em;
}

.notifications-empty p {
    margin: 16px auto 28px;

    max-width: 540px;

    color: #493845;

    line-height: 1.6;
}

.notifications-empty .vice-button {
    display: inline-flex;

    border: 3px solid #111;

    background: #ff2f92;
    color: #fff;

    box-shadow: 5px 5px 0 #111;
}

.notifications-pagination {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;

    margin-top: 42px;
    padding-top: 26px;

    border-top: 3px solid #111;
}

.notifications-pagination > div:last-child {
    text-align: right;
}

.notifications-page-link,
.notifications-page-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 8px 14px;

    border: 2px solid #111;

    font-size: 11px;
    font-weight: 1000;
    letter-spacing: 0.07em;
}

.notifications-page-link {
    background: #fff7ec;
    color: #111;

    text-decoration: none;

    box-shadow: 4px 4px 0 #111;
}

a.notifications-page-link:hover,
a.notifications-page-link:focus-visible {
    background: #38e8ea;
}

.notifications-page-current {
    background: #ffe56b;
    color: #111;
}

.notifications-page-disabled {
    opacity: 0.45;
    cursor: default;
}


/* =========================================================
   NOTIFICATIONS - TABLET
========================================================= */

@media (max-width: 850px) {

    .notifications-main {
        padding:
            44px
            18px
            70px;
    }

    .notifications-heading {
        align-items: stretch;
        flex-direction: column;

        padding: 28px 24px;
    }

    .notifications-summary {
        width: 140px;
        min-width: 0;
    }

    .notification-card-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .notification-time {
        width: 100%;
    }

    .notifications-pagination {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .notifications-pagination > div:last-child {
        text-align: center;
    }

}


/* =========================================================
   NOTIFICATIONS - MOBILE
========================================================= */

@media (max-width: 560px) {

    .notifications-main {
        padding:
            32px
            12px
            58px;
    }

    .notifications-heading {
        padding: 24px 18px;

        box-shadow:
            6px 6px 0 #111,
            9px 9px 0 #38e8ea;
    }

    .notifications-heading h1 {
        font-size: 48px;
    }

    .notifications-actions {
        justify-content: stretch;
    }

    .notifications-actions form,
    .notifications-read-all {
        width: 100%;
    }

    .notification-card {
        padding: 22px 16px;
    }

    .notification-card-unread {
        box-shadow:
            6px 6px 0 #111,
            9px 9px 0 #ff2f92;
    }

    .notification-card-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .notification-card-actions form,
    .notification-order-link,
    .notification-read-button {
        width: 100%;
    }

    .notification-order-link,
    .notification-read-button {
        justify-content: center;
        text-align: center;
    }

    .notifications-empty {
        padding: 42px 18px;

        box-shadow:
            6px 6px 0 #111,
            9px 9px 0 #38e8ea;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .notification-card,
    .notification-read-button,
    .notification-order-link,
    .notifications-read-all {
        transition: none;
    }

}


/* =========================================================
   FAQ — SAFE TEXT WRAPPING
========================================================= */

.faq-list,
.faq-list details {
    min-width: 0;
    max-width: 100%;
}

.faq-list summary,
.faq-list details p {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.faq-list details p {
    box-sizing: border-box;
}

/* =========================================================
   USER ORDERS — COMPACT HISTORY
========================================================= */

.orders-page {
    min-height: 100vh;

    padding:
        165px 6vw
        100px;

    background:
        linear-gradient(
            180deg,
            #5ce7ed 0%,
            #f5aab9 30%,
            #f7e4c7 70%
        );
}

.orders-shell {
    width: min(1450px, 100%);

    margin: 0 auto;
}


/* ---------------------------------------------------------
   Heading
--------------------------------------------------------- */

.orders-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 35px;

    margin-bottom: 34px;
}

.orders-heading > div:first-child {
    min-width: 0;
}

.orders-heading h1 {
    margin-top: 10px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            54px,
            7vw,
            92px
        );

    line-height: .9;

    color: var(--cream);

    text-transform: uppercase;

    -webkit-text-stroke:
        3px var(--ink);

    text-shadow:
        6px 6px 0 var(--pink-hot),
        10px 10px 0 var(--ink);
}

.orders-heading p {
    max-width: 650px;

    margin-top: 22px;

    font-size: 15px;
    font-weight: 800;

    line-height: 1.55;
}

.orders-heading-summary {
    flex:
        0
        0
        auto;

    min-width: 175px;

    padding: 18px 20px;

    border:
        3px solid var(--ink);

    background: var(--yellow);

    box-shadow:
        6px 6px 0 var(--ink);

    text-align: center;

    transform:
        rotate(1deg);
}

.orders-heading-summary span {
    display: block;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.8px;
}

.orders-heading-summary strong {
    display: block;

    margin-top: 5px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 46px;
    line-height: 1;
}

.orders-heading-summary small {
    display: block;

    margin-top: 7px;

    color: #554955;

    font-size: 11px;
    font-weight: 800;
}


/* ---------------------------------------------------------
   Messages
--------------------------------------------------------- */

.orders-message {
    max-width: none;

    margin-bottom: 28px;
}


/* ---------------------------------------------------------
   List container
--------------------------------------------------------- */

.orders-list {
    overflow: hidden;

    border:
        3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        9px 9px 0 var(--ink);
}


/* ---------------------------------------------------------
   Desktop table heading
--------------------------------------------------------- */

.orders-list-head {
    display: grid;

    grid-template-columns:
        minmax(220px, 1.7fr)
        minmax(115px, .75fr)
        minmax(80px, .55fr)
        minmax(150px, 1.05fr)
        minmax(150px, 1.05fr)
        minmax(135px, .9fr)
        82px;

    gap: 16px;

    align-items: center;

    padding:
        13px
        18px;

    border-bottom:
        3px solid var(--ink);

    background: var(--ink);
    color: var(--cream);
}

.orders-list-head span {
    min-width: 0;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* ---------------------------------------------------------
   Order row
--------------------------------------------------------- */

.orders-row {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(220px, 1.7fr)
        minmax(115px, .75fr)
        minmax(80px, .55fr)
        minmax(150px, 1.05fr)
        minmax(150px, 1.05fr)
        minmax(135px, .9fr)
        82px;

    gap: 16px;

    align-items: center;

    min-height: 96px;

    padding:
        15px
        18px;

    border-bottom:
        2px solid var(--ink);

    background:
        rgba(
            255,
            245,
            223,
            .96
        );
}

.orders-row:last-child {
    border-bottom: 0;
}

.orders-row:nth-child(even) {
    background: #fffaf0;
}

.orders-row:hover {
    background: #fff2c9;
}

.orders-row--attention {
    padding-left: 24px;
}

.orders-row--attention::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;

    width: 7px;

    background:
        linear-gradient(
            180deg,
            var(--pink-hot),
            var(--cyan)
        );
}


/* ---------------------------------------------------------
   Reference
--------------------------------------------------------- */

.orders-reference {
    min-width: 0;
}

.orders-reference small {
    display: block;

    margin-bottom: 4px;

    color: var(--pink-hot);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.6px;
}

.orders-reference > strong {
    display: block;

    max-width: 100%;

    overflow-wrap: anywhere;

    font-family:
        "Courier New",
        Courier,
        monospace;

    font-size: 12px;
    font-weight: 900;

    line-height: 1.35;
}


/* ---------------------------------------------------------
   Unread message marker
--------------------------------------------------------- */

.orders-unread {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    margin-top: 7px;

    padding:
        4px
        7px;

    border:
        2px solid var(--ink);

    background: var(--pink-hot);
    color: white;

    box-shadow:
        2px 2px 0 var(--ink);

    font-size: 10px;
    font-weight: 900;

    line-height: 1;

    text-transform: uppercase;
}

.orders-unread span {
    font-size: 9px;

    letter-spacing: .6px;
}


/* ---------------------------------------------------------
   Date / item count / total
--------------------------------------------------------- */

.orders-date,
.orders-items-count,
.orders-total {
    min-width: 0;
}

.orders-date strong,
.orders-items-count strong,
.orders-total strong {
    display: block;

    font-size: 13px;
    font-weight: 900;
}

.orders-date small,
.orders-items-count small,
.orders-total small {
    display: block;

    margin-top: 4px;

    color: #6a5d68;

    font-size: 10px;
    font-weight: 800;

    line-height: 1.35;
}

.orders-items-count strong {
    font-size: 20px;
}

.orders-total strong {
    font-size: 14px;
}

.orders-total small {
    color: var(--pink-hot);
}


/* ---------------------------------------------------------
   Status badges
--------------------------------------------------------- */

.orders-status,
.orders-payment {
    display: inline-flex;
    align-items: center;

    min-height: 34px;

    max-width: 100%;

    padding:
        6px
        9px;

    border:
        2px solid var(--ink);

    font-size: 10px;
    font-weight: 900;

    line-height: 1.2;

    text-transform: uppercase;

    overflow-wrap: anywhere;
}


/* Order status */

.orders-status--waiting {
    background: var(--yellow);
}

.orders-status--processing {
    background: var(--pink);
}

.orders-status--shipped {
    background: var(--cyan);
}

.orders-status--completed {
    background: #8ee7ad;
}

.orders-status--cancelled {
    background: var(--coral);
}

.orders-status--neutral {
    background: #ded5dc;
}


/* Payment status */

.orders-payment--waiting {
    background: var(--yellow);
}

.orders-payment--detected {
    background: var(--cyan);
}

.orders-payment--confirmed {
    background: #8ee7ad;
}

.orders-payment--not-required {
    background: #efe6de;
}

.orders-payment--expired {
    background: var(--coral);
}

.orders-payment--refunded {
    background: var(--purple);
    color: white;
}

.orders-payment--neutral {
    background: #ded5dc;
}


/* ---------------------------------------------------------
   Open button
--------------------------------------------------------- */

.orders-action {
    display: flex;

    justify-content: flex-end;
}

.orders-open-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    min-height: 39px;

    padding:
        0
        10px;

    border:
        2px solid var(--ink);

    background: var(--pink-hot);
    color: white;

    box-shadow:
        3px 3px 0 var(--ink);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .6px;

    text-transform: uppercase;
}

.orders-open-button:hover,
.orders-open-button:focus-visible {
    background: var(--cyan);
    color: var(--ink);

    transform:
        translate(-1px, -1px);

    box-shadow:
        4px 4px 0 var(--ink);
}


/* ---------------------------------------------------------
   Mobile-only labels
--------------------------------------------------------- */

.orders-mobile-label {
    display: none;
}


/* ---------------------------------------------------------
   Footer / pagination
--------------------------------------------------------- */

.orders-list-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 28px;

    padding:
        20px
        22px;

    border:
        3px solid var(--ink);

    background: rgba(
        255,
        245,
        223,
        .96
    );

    box-shadow:
        6px 6px 0 var(--ink);
}

.orders-list-footer > p {
    font-size: 12px;
    font-weight: 800;

    line-height: 1.5;
}

.orders-pagination {
    display: grid;

    grid-template-columns:
        auto
        auto
        auto;

    align-items: center;

    gap: 12px;
}

.orders-page-button,
.orders-page-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;

    padding:
        0
        12px;

    border:
        2px solid var(--ink);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .6px;

    text-transform: uppercase;
}

.orders-page-button {
    background: var(--cream);

    box-shadow:
        3px 3px 0 var(--ink);
}

a.orders-page-button:hover,
a.orders-page-button:focus-visible {
    background: var(--cyan);
}

.orders-page-current {
    min-width: 52px;

    background: var(--yellow);
}

.orders-page-button--disabled {
    opacity: .38;

    box-shadow: none;
}


/* ---------------------------------------------------------
   Empty state
--------------------------------------------------------- */

.orders-empty {
    max-width: 760px;

    margin:
        50px auto
        0;

    padding:
        42px;

    border:
        3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        10px 10px 0 var(--ink);

    text-align: center;
}

.orders-empty h2 {
    margin-top: 20px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            42px,
            7vw,
            65px
        );

    text-transform: uppercase;
}

.orders-empty p {
    max-width: 520px;

    margin:
        15px auto
        0;

    font-weight: 700;

    line-height: 1.6;
}

.orders-shop-button {
    display: inline-flex;

    width: auto;

    margin-top: 28px;

    padding:
        0
        24px;
}


/* =========================================================
   USER ORDERS — TABLET
========================================================= */

@media (max-width: 1100px) {

    .orders-list-head {
        display: none;
    }

    .orders-list {
        display: grid;

        gap: 16px;

        overflow: visible;

        border: 0;

        background: transparent;

        box-shadow: none;
    }

    .orders-row,
    .orders-row:nth-child(even) {
        grid-template-columns:
            minmax(0, 1.5fr)
            minmax(130px, .8fr)
            minmax(130px, .8fr);

        gap:
            18px
            24px;

        padding: 22px;

        border:
            3px solid var(--ink);

        background: var(--cream);

        box-shadow:
            6px 6px 0 var(--ink);
    }

    .orders-row--attention {
        padding-left: 28px;
    }

    .orders-mobile-label {
        display: block;

        margin-bottom: 6px;

        color: #6d5e6b;

        font-size: 9px;
        font-weight: 900;

        letter-spacing: 1.2px;

        text-transform: uppercase;
    }

    .orders-action {
        align-items: flex-end;
        justify-content: flex-start;
    }

    .orders-open-button {
        width: 100%;
    }

}


/* =========================================================
   USER ORDERS — SMALL TABLET
========================================================= */

@media (max-width: 780px) {

    .orders-page {
        padding:
            150px
            20px
            80px;
    }

    .orders-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .orders-heading-summary {
        min-width: 150px;
    }

    .orders-row,
    .orders-row:nth-child(even) {
        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );
    }

    .orders-reference {
        grid-column:
            1
            /
            -1;
    }

    .orders-total {
        grid-column:
            1
            /
            2;
    }

    .orders-action {
        grid-column:
            2
            /
            3;
    }

    .orders-list-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .orders-pagination {
        width: 100%;

        grid-template-columns:
            1fr
            auto
            1fr;
    }

    .orders-pagination > div:last-child {
        text-align: right;
    }

}


/* =========================================================
   USER ORDERS — MOBILE
========================================================= */

@media (max-width: 520px) {

    .orders-page {
        padding-left: 12px;
        padding-right: 12px;
    }

    .orders-heading h1 {
        font-size: 52px;

        -webkit-text-stroke:
            2px var(--ink);

        text-shadow:
            4px 4px 0 var(--pink-hot),
            7px 7px 0 var(--ink);
    }

    .orders-heading-summary {
        width: 100%;

        transform: none;
    }

    .orders-row,
    .orders-row:nth-child(even) {
        grid-template-columns: 1fr;

        gap: 16px;

        padding:
            20px
            17px;
    }

    .orders-reference,
    .orders-total,
    .orders-action {
        grid-column: auto;
    }

    .orders-status,
    .orders-payment {
        width: 100%;

        justify-content: center;

        text-align: center;
    }

    .orders-open-button {
        min-height: 46px;
    }

    .orders-list-footer {
        padding: 18px;
    }

    .orders-pagination {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .orders-pagination > div,
    .orders-pagination > div:last-child {
        width: 100%;

        text-align: stretch;
    }

    .orders-page-button,
    .orders-page-current {
        width: 100%;
    }

    .orders-empty {
        padding:
            34px
            20px;
    }

}


/* =========================================================
   USER ORDERS — ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .orders-open-button,
    .orders-page-button {
        transition: none;
    }

}
/* =========================================================
   USER ORDER DETAIL
========================================================= */

.order-detail-page {
    min-height: 100vh;

    padding:
        165px 6vw
        100px;

    background:
        linear-gradient(
            180deg,
            #5ce7ed 0%,
            #f5aab9 30%,
            #f7e4c7 70%
        );
}

.order-detail-shell {
    width: min(1320px, 100%);

    margin: 0 auto;
}


/* ---------------------------------------------------------
   Back / messages
--------------------------------------------------------- */

.order-detail-back {
    display: inline-flex;
    align-items: center;

    min-height: 40px;

    margin-bottom: 26px;

    padding:
        0
        14px;

    border:
        2px solid var(--ink);

    background: var(--cream);

    box-shadow:
        4px 4px 0 var(--ink);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: .6px;

    text-transform: uppercase;
}

.order-detail-back:hover,
.order-detail-back:focus-visible {
    background: var(--cyan);

    transform:
        translate(-1px, -1px);

    box-shadow:
        5px 5px 0 var(--ink);
}

.order-detail-message {
    max-width: none;

    margin-bottom: 26px;
}


/* ---------------------------------------------------------
   Hero
--------------------------------------------------------- */

.order-detail-hero {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(330px, .6fr);

    gap: 32px;

    align-items: stretch;

    padding: 34px;

    border:
        3px solid var(--ink);

    background:
        linear-gradient(
            135deg,
            #181118,
            #2a172c
        );

    color: var(--cream);

    box-shadow:
        10px 10px 0 var(--ink),
        14px 14px 0 var(--cyan);
}

.order-detail-hero-copy {
    min-width: 0;
}

.order-detail-hero h1 {
    margin-top: 16px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            56px,
            8vw,
            105px
        );

    line-height: .86;

    color: var(--cream);

    letter-spacing: -2px;

    text-transform: uppercase;

    text-shadow:
        5px 5px 0 var(--pink-hot),
        8px 8px 0 var(--cyan);
}

.order-detail-reference {
    margin-top: 30px;

    padding:
        15px
        17px;

    border:
        2px solid var(--cream);

    background:
        rgba(
            255,
            255,
            255,
            .05
        );
}

.order-detail-reference span {
    display: block;

    margin-bottom: 7px;

    color: var(--cyan);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.8px;
}

.order-detail-reference code {
    display: block;

    max-width: 100%;

    overflow-wrap: anywhere;

    color: var(--cream);

    font-family:
        "Courier New",
        Courier,
        monospace;

    font-size:
        clamp(
            13px,
            2vw,
            17px
        );

    font-weight: 900;
}

.order-detail-hero-meta {
    display: grid;

    grid-template-columns: 1fr;

    border:
        3px solid var(--ink);

    background: var(--yellow);

    color: var(--ink);

    box-shadow:
        6px 6px 0 var(--pink-hot);
}

.order-detail-hero-meta > div {
    padding:
        17px
        20px;

    border-bottom:
        2px solid var(--ink);
}

.order-detail-hero-meta > div:last-child {
    border-bottom: 0;
}

.order-detail-hero-meta span {
    display: block;

    margin-bottom: 5px;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.order-detail-hero-meta strong {
    display: block;

    font-size: 18px;
    font-weight: 900;

    overflow-wrap: anywhere;
}

.order-detail-hero-meta small {
    display: block;

    margin-top: 4px;

    color: #554955;

    font-size: 11px;
    font-weight: 800;
}


/* ---------------------------------------------------------
   Status bar
--------------------------------------------------------- */

.order-detail-status-bar {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(
                0,
                1fr
            )
        );

    gap: 16px;

    margin-top: 30px;
}

.order-detail-status-bar > div {
    min-width: 0;

    padding: 20px;

    border:
        3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        5px 5px 0 var(--ink);
}

.order-detail-status-label {
    display: block;

    margin-bottom: 10px;

    color: #685c68;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.order-detail-status,
.order-detail-payment {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;

    max-width: 100%;

    padding:
        7px
        11px;

    border:
        2px solid var(--ink);

    font-size: 11px;
    font-weight: 900;

    line-height: 1.2;

    text-align: center;

    text-transform: uppercase;
}


/* Order status */

.order-detail-status--waiting {
    background: var(--yellow);
}

.order-detail-status--processing {
    background: var(--pink);
}

.order-detail-status--shipped {
    background: var(--cyan);
}

.order-detail-status--completed {
    background: #8ee7ad;
}

.order-detail-status--cancelled {
    background: var(--coral);
}

.order-detail-status--neutral {
    background: #ded5dc;
}


/* Payment status */

.order-detail-payment--waiting {
    background: var(--yellow);
}

.order-detail-payment--detected {
    background: var(--cyan);
}

.order-detail-payment--confirmed {
    background: #8ee7ad;
}

.order-detail-payment--not-required {
    background: #ebe3dd;
}

.order-detail-payment--expired {
    background: var(--coral);
}

.order-detail-payment--refunded {
    background: var(--purple);
    color: white;
}

.order-detail-payment--neutral {
    background: #ded5dc;
}

.order-detail-due {
    background: var(--yellow) !important;
}

.order-detail-due > strong {
    display: block;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            25px,
            3vw,
            34px
        );

    line-height: 1;
}


/* ---------------------------------------------------------
   Items + summary
--------------------------------------------------------- */

.order-detail-main-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(320px, .65fr);

    gap: 28px;

    align-items: start;

    margin-top: 38px;
}

.order-detail-card {
    min-width: 0;

    padding: 28px;

    border:
        3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        8px 8px 0 var(--ink);
}

.order-detail-card h2,
.order-detail-shipping h2,
.order-support-heading h2 {
    margin-top: 11px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            36px,
            5vw,
            52px
        );

    line-height: .95;

    text-transform: uppercase;
}

.order-detail-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 24px;
}

.order-detail-section-heading > strong {
    display: grid;
    place-items: center;

    min-width: 54px;
    height: 54px;

    border:
        3px solid var(--ink);

    background: var(--cyan);

    box-shadow:
        4px 4px 0 var(--ink);

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 27px;
}

.order-detail-items {
    border-top:
        3px solid var(--ink);
}

.order-detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding:
        17px
        3px;

    border-bottom:
        2px solid var(--ink);
}

.order-detail-item:last-child {
    border-bottom: 0;
}

.order-detail-item > div {
    min-width: 0;
}

.order-detail-item > div > strong {
    display: block;

    font-size: 15px;
    font-weight: 900;

    overflow-wrap: anywhere;
}

.order-detail-item span {
    display: block;

    margin-top: 5px;

    color: #675b67;

    font-size: 11px;
    font-weight: 800;
}

.order-detail-item > strong {
    flex:
        0
        0
        auto;

    font-size: 14px;
}


/* ---------------------------------------------------------
   Summary
--------------------------------------------------------- */

.order-detail-summary {
    position: sticky;

    top: 24px;

    background: var(--yellow);
}

.order-detail-summary h2 {
    margin:
        12px
        0
        22px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 44px;

    text-transform: uppercase;
}

.order-detail-summary-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    padding:
        13px
        0;

    border-bottom:
        2px solid var(--ink);
}

.order-detail-summary-row span {
    font-size: 12px;
    font-weight: 800;
}

.order-detail-summary-row strong {
    flex:
        0
        0
        auto;

    font-size: 13px;

    text-align: right;
}

.order-detail-negative {
    color: #a30b53;
}

.order-detail-summary-total {
    margin-top: 18px;

    padding: 18px;

    border:
        3px solid var(--ink);

    background: var(--pink-hot);
    color: white;

    box-shadow:
        5px 5px 0 var(--ink);
}

.order-detail-summary-total span {
    display: block;

    margin-bottom: 7px;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.7px;
}

.order-detail-summary-total strong {
    display: block;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            30px,
            4vw,
            42px
        );

    line-height: 1;
}


/* ---------------------------------------------------------
   Shipping
--------------------------------------------------------- */

.order-detail-shipping {
    display: grid;

    grid-template-columns:
        minmax(220px, .7fr)
        minmax(0, 1.3fr);

    gap: 30px;

    align-items: center;

    margin-top: 38px;

    padding: 28px;

    border:
        3px solid var(--ink);

    background: var(--cyan);

    box-shadow:
        8px 8px 0 var(--ink);
}

.order-detail-shipping-meta {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap: 12px;
}

.order-detail-shipping-meta > div {
    min-width: 0;

    padding: 16px;

    border:
        2px solid var(--ink);

    background: var(--cream);
}

.order-detail-shipping-meta span {
    display: block;

    margin-bottom: 5px;

    color: #675b67;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}

.order-detail-shipping-meta strong {
    display: block;

    font-size: 13px;

    overflow-wrap: anywhere;
}


/* ---------------------------------------------------------
   Bitcoin section
--------------------------------------------------------- */

.order-detail-payment-section {
    margin-top: 38px;
}

/*
 * Il partial Bitcoin possiede già il proprio design.
 * Qui correggiamo soltanto il rapporto con la nuova pagina.
 */
.order-detail-payment-section .order-bitcoin {
    margin-top: 0;

    box-shadow:
        8px 8px 0 var(--ink);
}


/* =========================================================
   ORDER SUPPORT
========================================================= */

.order-support {
    margin-top: 55px;

    padding: 32px;

    border:
        3px solid var(--ink);

    background:
        linear-gradient(
            145deg,
            #181118,
            #28152b
        );

    color: var(--cream);

    box-shadow:
        10px 10px 0 var(--ink),
        14px 14px 0 var(--pink-hot);
}

.order-support-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    padding-bottom: 28px;

    border-bottom:
        2px solid
        rgba(
            255,
            245,
            223,
            .25
        );
}

.order-support-heading > div:first-child {
    min-width: 0;
}

.order-support-heading h2 {
    color: var(--cream);

    font-size:
        clamp(
            46px,
            6vw,
            72px
        );

    text-shadow:
        4px 4px 0 var(--pink-hot);
}

.order-support-heading p {
    max-width: 620px;

    margin-top: 13px;

    color:
        rgba(
            255,
            245,
            223,
            .72
        );

    font-size: 14px;
    font-weight: 700;

    line-height: 1.6;
}

.order-support-unread {
    flex:
        0
        0
        auto;

    min-width: 125px;

    padding:
        14px
        17px;

    border:
        3px solid var(--ink);

    background: var(--yellow);
    color: var(--ink);

    box-shadow:
        5px 5px 0 var(--pink-hot);

    text-align: center;
}

.order-support-unread span {
    display: block;

    margin-bottom: 4px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.2px;
}

.order-support-unread strong {
    display: block;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 36px;
    line-height: 1;
}


/* ---------------------------------------------------------
   Unread control
--------------------------------------------------------- */

.order-support-read-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-top: 27px;

    padding: 18px;

    border:
        3px solid var(--ink);

    background: var(--yellow);
    color: var(--ink);

    box-shadow:
        5px 5px 0 var(--cyan);
}

.order-support-read-box strong {
    font-size: 14px;
}

.order-support-read-box p {
    margin-top: 5px;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.5;
}

.order-support-read-box form {
    flex:
        0
        0
        auto;

    margin: 0;
}

.order-support-read-button {
    min-height: 42px;

    padding:
        0
        14px;

    cursor: pointer;

    border:
        2px solid var(--ink);

    background: var(--pink-hot);
    color: white;

    box-shadow:
        3px 3px 0 var(--ink);

    font-size: 10px;
    font-weight: 900;

    text-transform: uppercase;
}

.order-support-read-button:hover,
.order-support-read-button:focus-visible {
    background: var(--cyan);
    color: var(--ink);
}


/* ---------------------------------------------------------
   Conversation
--------------------------------------------------------- */

.order-support-conversation {
    display: grid;

    gap: 15px;

    margin-top: 30px;
}

.order-support-message {
    width: min(78%, 820px);

    padding:
        17px
        18px;

    border:
        2px solid var(--ink);

    color: var(--ink);

    box-shadow:
        4px 4px 0 var(--ink);
}

.order-support-message--customer {
    justify-self: end;

    background: var(--cyan);
}

.order-support-message--admin {
    justify-self: start;

    background: var(--cream);
}

.order-support-message-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    padding-bottom: 9px;

    border-bottom:
        1px solid
        rgba(
            23,
            17,
            23,
            .35
        );
}

.order-support-message-meta strong {
    font-size: 11px;

    letter-spacing: .8px;

    text-transform: uppercase;
}

.order-support-message-meta span {
    flex:
        0
        0
        auto;

    color: #615360;

    font-size: 10px;
    font-weight: 800;
}

.order-support-message-body {
    padding-top: 12px;

    overflow-wrap: anywhere;
    word-break: break-word;

    font-size: 14px;

    line-height: 1.65;

    white-space: normal;
}

.order-support-empty {
    padding: 30px;

    border:
        2px solid var(--cream);

    background:
        rgba(
            255,
            255,
            255,
            .06
        );

    text-align: center;
}

.order-support-empty strong {
    color: var(--cyan);

    font-size: 12px;

    letter-spacing: 1.5px;
}

.order-support-empty p {
    margin-top: 8px;

    color:
        rgba(
            255,
            245,
            223,
            .7
        );

    font-size: 13px;
}


/* ---------------------------------------------------------
   Support pagination
--------------------------------------------------------- */

.order-support-pagination {
    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 16px;

    margin-top: 28px;

    padding-top: 22px;

    border-top:
        2px solid
        rgba(
            255,
            245,
            223,
            .2
        );
}

.order-support-pagination > div:last-child {
    text-align: right;
}

.order-support-pagination .orders-page-button {
    background: var(--cream);
    color: var(--ink);
}

.order-support-pagination .orders-page-current {
    color: var(--ink);
}


/* ---------------------------------------------------------
   Composer
--------------------------------------------------------- */

.order-support-compose {
    margin-top: 35px;

    padding: 24px;

    border:
        3px solid var(--ink);

    background: var(--yellow);
    color: var(--ink);

    box-shadow:
        7px 7px 0 var(--cyan);
}

.order-support-compose-heading {
    margin-bottom: 20px;
}

.order-support-compose-heading span {
    display: block;

    margin-bottom: 5px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.7px;
}

.order-support-compose-heading strong {
    display: block;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            28px,
            4vw,
            40px
        );

    line-height: 1;

    text-transform: uppercase;
}

.order-support-compose .form-group {
    margin-bottom: 18px;
}

.order-support-compose textarea {
    min-height: 145px;

    background: var(--cream);
}

.order-support-compose .vice-button {
    width: auto;

    min-width: 230px;

    padding:
        0
        24px;
}


/* =========================================================
   USER ORDER DETAIL — TABLET
========================================================= */

@media (max-width: 980px) {

    .order-detail-hero {
        grid-template-columns: 1fr;
    }

    .order-detail-hero-meta {
        grid-template-columns:
            repeat(
                3,
                minmax(
                    0,
                    1fr
                )
            );
    }

    .order-detail-hero-meta > div {
        border-right:
            2px solid var(--ink);

        border-bottom: 0;
    }

    .order-detail-hero-meta > div:last-child {
        border-right: 0;
    }

    .order-detail-main-grid {
        grid-template-columns: 1fr;
    }

    .order-detail-summary {
        position: static;
    }

    .order-detail-shipping {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   USER ORDER DETAIL — SMALL TABLET
========================================================= */

@media (max-width: 760px) {

    .order-detail-page {
        padding:
            150px
            20px
            80px;
    }

    .order-detail-hero {
        padding:
            27px
            22px;
    }

    .order-detail-hero-meta {
        grid-template-columns: 1fr;
    }

    .order-detail-hero-meta > div {
        border-right: 0;

        border-bottom:
            2px solid var(--ink);
    }

    .order-detail-hero-meta > div:last-child {
        border-bottom: 0;
    }

    .order-detail-status-bar {
        grid-template-columns: 1fr;
    }

    .order-detail-shipping-meta {
        grid-template-columns: 1fr;
    }

    .order-support {
        padding:
            27px
            22px;
    }

    .order-support-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .order-support-read-box {
        align-items: stretch;
        flex-direction: column;
    }

    .order-support-read-box form,
    .order-support-read-button {
        width: 100%;
    }

    .order-support-message {
        width: 90%;
    }

}


/* =========================================================
   USER ORDER DETAIL — MOBILE
========================================================= */

@media (max-width: 520px) {

    .order-detail-page {
        padding-left: 12px;
        padding-right: 12px;
    }

    .order-detail-hero {
        padding:
            24px
            17px;

        box-shadow:
            6px 6px 0 var(--ink),
            9px 9px 0 var(--cyan);
    }

    .order-detail-hero h1 {
        font-size: 55px;
    }

    .order-detail-card,
    .order-detail-shipping {
        padding:
            22px
            17px;
    }

    .order-detail-section-heading {
        align-items: flex-start;
    }

    .order-detail-item {
        align-items: flex-start;
        flex-direction: column;

        gap: 8px;
    }

    .order-detail-summary-row {
        gap: 12px;
    }

    .order-detail-summary-row strong {
        max-width: 45%;
    }

    .order-support {
        padding:
            24px
            15px;

        box-shadow:
            6px 6px 0 var(--ink),
            9px 9px 0 var(--pink-hot);
    }

    .order-support-message {
        width: 100%;
    }

    .order-support-message-meta {
        align-items: flex-start;
        flex-direction: column;

        gap: 5px;
    }

    .order-support-pagination {
        grid-template-columns: 1fr;
    }

    .order-support-pagination > div,
    .order-support-pagination > div:last-child {
        width: 100%;

        text-align: center;
    }

    .order-support-pagination .orders-page-button,
    .order-support-pagination .orders-page-current {
        width: 100%;
    }

    .order-support-compose {
        padding:
            22px
            16px;
    }

    .order-support-compose .vice-button {
        width: 100%;

        min-width: 0;
    }

}


/* =========================================================
   USER ORDER DETAIL — ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .order-detail-back,
    .order-support-read-button {
        transition: none;
    }

}



/* =========================================================
   SECURE CHECKOUT
========================================================= */

.secure-checkout-page {
    min-height: 100vh;

    padding:
        165px 6vw
        105px;

    background:
        linear-gradient(
            180deg,
            #5ce7ed 0%,
            #f5aab9 30%,
            #f7e4c7 70%
        );
}

.secure-checkout-shell {
    width: min(1380px, 100%);

    margin: 0 auto;
}


/* ---------------------------------------------------------
   Accessibility helpers
--------------------------------------------------------- */

.secure-checkout-page .sr-only {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}


/* ---------------------------------------------------------
   Back button
--------------------------------------------------------- */

.secure-checkout-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;

    margin-bottom: 28px;

    padding:
        0
        14px;

    border:
        2px solid var(--ink);

    background: var(--cream);

    box-shadow:
        4px 4px 0 var(--ink);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: .7px;

    text-transform: uppercase;
}

.secure-checkout-back:hover,
.secure-checkout-back:focus-visible {
    background: var(--cyan);

    transform:
        translate(-1px, -1px);

    box-shadow:
        5px 5px 0 var(--ink);
}


/* ---------------------------------------------------------
   Page heading
--------------------------------------------------------- */

.secure-checkout-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        255px;

    gap: 40px;

    align-items: end;

    margin-bottom: 30px;
}

.secure-checkout-heading > div:first-child {
    min-width: 0;
}

.secure-checkout-heading h1 {
    margin-top: 12px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            64px,
            8vw,
            112px
        );

    line-height: .86;

    color: var(--cream);

    letter-spacing: -3px;

    text-transform: uppercase;

    -webkit-text-stroke:
        3px var(--ink);

    text-shadow:
        7px 7px 0 var(--pink-hot),
        11px 11px 0 var(--ink);
}

.secure-checkout-heading > div:first-child > p {
    max-width: 760px;

    margin-top: 25px;

    font-size: 15px;
    font-weight: 800;

    line-height: 1.6;
}


/* ---------------------------------------------------------
   Security badge
--------------------------------------------------------- */

.secure-checkout-security {
    padding: 20px;

    border:
        3px solid var(--ink);

    background:
        linear-gradient(
            135deg,
            var(--yellow),
            #ffec9b
        );

    box-shadow:
        7px 7px 0 var(--ink);

    transform:
        rotate(1deg);
}

.secure-checkout-security span {
    display: block;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.8px;
}

.secure-checkout-security strong {
    display: block;

    margin-top: 5px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 42px;

    line-height: 1;

    color: var(--pink-hot);

    text-transform: uppercase;
}

.secure-checkout-security small {
    display: block;

    margin-top: 8px;

    color: #554955;

    font-size: 11px;
    font-weight: 800;

    line-height: 1.4;
}


/* ---------------------------------------------------------
   Checkout steps
--------------------------------------------------------- */

.secure-checkout-steps {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(
                0,
                1fr
            )
        );

    margin-bottom: 30px;

    border:
        3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        7px 7px 0 var(--ink);
}

.secure-checkout-steps > div {
    display: flex;
    align-items: center;

    gap: 12px;

    min-width: 0;

    padding:
        15px
        18px;

    border-right:
        2px solid var(--ink);
}

.secure-checkout-steps > div:last-child {
    border-right: 0;
}

.secure-checkout-steps span {
    display: grid;
    place-items: center;

    flex:
        0
        0
        34px;

    width: 34px;
    height: 34px;

    border:
        2px solid var(--ink);

    background: var(--cyan);

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 19px;
}

.secure-checkout-steps strong {
    min-width: 0;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* ---------------------------------------------------------
   Validation message
--------------------------------------------------------- */

.secure-checkout-message {
    max-width: none;

    margin:
        0
        0
        30px;

    padding: 20px;

    border:
        3px solid var(--ink);

    box-shadow:
        6px 6px 0 var(--ink);
}

.secure-checkout-message > strong {
    display: block;

    margin-bottom: 10px;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.secure-checkout-message p {
    margin-top: 6px;

    font-size: 13px;

    line-height: 1.5;
}


/* ---------------------------------------------------------
   Main layout
--------------------------------------------------------- */

.secure-checkout-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(340px, .55fr);

    gap: 30px;

    align-items: start;
}


/* ---------------------------------------------------------
   Form card
--------------------------------------------------------- */

.secure-checkout-form-card {
    min-width: 0;

    border:
        3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        9px 9px 0 var(--ink);
}

.secure-checkout-form {
    margin: 0;
}


/* ---------------------------------------------------------
   Form sections
--------------------------------------------------------- */

.secure-checkout-section {
    padding: 30px;

    border-bottom:
        3px solid var(--ink);
}

.secure-checkout-section-heading {
    display: flex;
    align-items: flex-start;

    gap: 18px;

    margin-bottom: 26px;
}

.secure-checkout-number {
    display: grid;
    place-items: center;

    flex:
        0
        0
        58px;

    width: 58px;
    height: 58px;

    border:
        3px solid var(--ink);

    background: var(--pink-hot);
    color: white;

    box-shadow:
        4px 4px 0 var(--ink);

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 28px;

    transform:
        rotate(-2deg);
}

.secure-checkout-section-heading > div {
    min-width: 0;
}

.secure-checkout-section-heading > div > span {
    display: block;

    margin-bottom: 5px;

    color: var(--pink-hot);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.8px;
}

.secure-checkout-section-heading h2 {
    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            36px,
            5vw,
            52px
        );

    line-height: .95;

    text-transform: uppercase;
}

.secure-checkout-section-heading p {
    max-width: 650px;

    margin-top: 9px;

    color: #5d505b;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.55;
}


/* ---------------------------------------------------------
   Shipping fieldset
--------------------------------------------------------- */

.secure-shipping-methods {
    display: grid;

    gap: 13px;

    min-width: 0;

    border: 0;
}


/* ---------------------------------------------------------
   Shipping option
--------------------------------------------------------- */

.secure-shipping-option {
    position: relative;

    display: grid;

    grid-template-columns:
        30px
        minmax(0, 1fr);

    gap: 14px;

    align-items: center;

    min-width: 0;

    padding: 17px;

    border:
        3px solid var(--ink);

    background: white;

    box-shadow:
        4px 4px 0 var(--ink);

    cursor: pointer;
}

.secure-shipping-option:hover {
    background: #fff4c8;

    transform:
        translate(-1px, -1px);

    box-shadow:
        5px 5px 0 var(--ink);
}

.secure-shipping-option > input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

    pointer-events: none;
}

.secure-shipping-option-control {
    display: grid;
    place-items: center;

    width: 28px;
    height: 28px;

    border:
        3px solid var(--ink);

    border-radius: 50%;

    background: var(--cream);
}

.secure-shipping-option-control span {
    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: transparent;
}

.secure-shipping-option
> input:checked
+ .secure-shipping-option-control {
    background: var(--yellow);
}

.secure-shipping-option
> input:checked
+ .secure-shipping-option-control
span {
    background: var(--pink-hot);
}

.secure-shipping-option
> input:focus-visible
+ .secure-shipping-option-control {
    outline:
        4px solid var(--cyan);

    outline-offset: 3px;
}

.secure-shipping-option
> input:checked
+ .secure-shipping-option-control
+ .secure-shipping-option-content {
    background:
        linear-gradient(
            90deg,
            rgba(255, 213, 90, .3),
            transparent
        );
}


/* ---------------------------------------------------------
   Shipping option content
--------------------------------------------------------- */

.secure-shipping-option-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 22px;

    min-width: 0;

    padding:
        4px
        5px;
}

.secure-shipping-option-copy {
    min-width: 0;
}

.secure-shipping-option-copy strong {
    display: block;

    font-size: 15px;
    font-weight: 900;

    overflow-wrap: anywhere;
}

.secure-shipping-option-copy small {
    display: block;

    max-width: 620px;

    margin-top: 5px;

    color: #655865;

    font-size: 12px;

    line-height: 1.45;
}

.secure-shipping-option-content > b {
    flex:
        0
        0
        auto;

    padding:
        8px
        10px;

    border:
        2px solid var(--ink);

    background: var(--yellow);

    font-size: 13px;
    font-weight: 900;

    white-space: nowrap;
}


/* ---------------------------------------------------------
   Server verification notice
--------------------------------------------------------- */

.secure-checkout-server-note {
    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr);

    gap: 15px;

    align-items: center;

    margin-top: 20px;

    padding: 15px;

    border:
        2px solid var(--ink);

    background: var(--cyan);
}

.secure-checkout-server-note span {
    padding:
        6px
        8px;

    border:
        2px solid var(--ink);

    background: var(--ink);
    color: white;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.2px;

    white-space: nowrap;
}

.secure-checkout-server-note p {
    font-size: 12px;
    font-weight: 800;

    line-height: 1.5;
}


/* ---------------------------------------------------------
   Privacy/OpenPGP panel
--------------------------------------------------------- */

.secure-checkout-privacy {
    display: grid;

    grid-template-columns:
        76px
        minmax(0, 1fr);

    gap: 18px;

    align-items: center;

    margin-bottom: 25px;

    padding: 19px;

    border:
        3px solid var(--ink);

    background:
        linear-gradient(
            135deg,
            var(--cyan),
            #bdf6f7
        );

    box-shadow:
        5px 5px 0 var(--ink);
}

.secure-checkout-privacy-icon {
    display: grid;
    place-items: center;

    width: 70px;
    height: 70px;

    border:
        3px solid var(--ink);

    background: var(--ink);
    color: var(--yellow);

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 26px;

    transform:
        rotate(-3deg);
}

.secure-checkout-privacy strong {
    display: block;

    margin-bottom: 6px;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.3px;
}

.secure-checkout-privacy p {
    margin-top: 5px;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.5;
}


/* ---------------------------------------------------------
   Address textarea
--------------------------------------------------------- */

.secure-checkout-address {
    margin:
        0;
}

.secure-checkout-address > label {
    margin-bottom: 10px;

    font-size: 12px;
}

.secure-checkout-address textarea {
    min-height: 210px;

    padding: 16px;

    border:
        3px solid var(--ink);

    background: white;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 14px;

    line-height: 1.55;

    resize: vertical;
}

.secure-checkout-address textarea:focus {
    outline: none;

    box-shadow:
        5px 5px 0 var(--pink-hot);
}

.secure-checkout-address small {
    margin-top: 9px;

    color: #645763;

    font-size: 11px;

    line-height: 1.5;
}


/* ---------------------------------------------------------
   Final confirmation
--------------------------------------------------------- */

.secure-checkout-confirm {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 30px;

    align-items: center;

    padding: 30px;

    background:
        linear-gradient(
            135deg,
            var(--yellow),
            #ffe99a
        );
}

.secure-checkout-confirm > div {
    min-width: 0;
}

.secure-checkout-confirm span {
    display: block;

    margin-bottom: 6px;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.secure-checkout-confirm strong {
    display: block;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            30px,
            4vw,
            42px
        );

    line-height: 1;

    text-transform: uppercase;
}

.secure-checkout-confirm p {
    max-width: 660px;

    margin-top: 8px;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.5;
}

.secure-checkout-submit {
    width: auto;

    min-width: 230px;

    padding:
        0
        24px;

    white-space: nowrap;
}


/* =========================================================
   CHECKOUT SUMMARY
========================================================= */

.secure-checkout-summary {
    position: sticky;

    top: 24px;

    min-width: 0;

    padding: 26px;

    border:
        3px solid var(--ink);

    background: var(--yellow);

    box-shadow:
        9px 9px 0 var(--ink);
}


/* ---------------------------------------------------------
   Summary heading
--------------------------------------------------------- */

.secure-checkout-summary-heading {
    padding-bottom: 22px;

    border-bottom:
        3px solid var(--ink);
}

.secure-checkout-summary-heading > div {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;

    margin-top: 13px;
}

.secure-checkout-summary-heading h2 {
    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            38px,
            5vw,
            52px
        );

    line-height: .95;

    text-transform: uppercase;
}

.secure-checkout-summary-heading > div > span {
    flex:
        0
        0
        auto;

    padding:
        6px
        8px;

    border:
        2px solid var(--ink);

    background: var(--cream);

    font-size: 10px;
    font-weight: 900;
}


/* ---------------------------------------------------------
   Cart items
--------------------------------------------------------- */

.secure-checkout-items {
    margin-top: 8px;
}

.secure-checkout-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 18px;

    padding:
        15px
        0;

    border-bottom:
        2px solid var(--ink);
}

.secure-checkout-item > div {
    min-width: 0;
}

.secure-checkout-item > div > strong {
    display: block;

    font-size: 13px;
    font-weight: 900;

    overflow-wrap: anywhere;
}

.secure-checkout-item span {
    display: block;

    margin-top: 4px;

    color: #665866;

    font-size: 10px;
    font-weight: 800;
}

.secure-checkout-item > strong {
    flex:
        0
        0
        auto;

    font-size: 12px;

    text-align: right;
}


/* ---------------------------------------------------------
   Totals
--------------------------------------------------------- */

.secure-checkout-totals {
    margin-top: 8px;
}

.secure-checkout-totals > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 18px;

    padding:
        13px
        0;

    border-bottom:
        2px solid var(--ink);
}

.secure-checkout-totals span {
    font-size: 12px;
    font-weight: 800;

    line-height: 1.4;
}

.secure-checkout-totals strong {
    flex:
        0
        0
        auto;

    font-size: 12px;

    text-align: right;
}

.secure-checkout-negative {
    color: #a30b53;
}

.secure-checkout-pending {
    color: #7e2157;

    font-size: 10px !important;

    letter-spacing: .5px;
}


/* ---------------------------------------------------------
   Amount before shipping
--------------------------------------------------------- */

.secure-checkout-payable {
    margin-top: 22px;

    padding: 20px;

    border:
        3px solid var(--ink);

    background: var(--pink-hot);
    color: white;

    box-shadow:
        5px 5px 0 var(--ink);
}

.secure-checkout-payable > span {
    display: block;

    margin-bottom: 8px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.4px;
}

.secure-checkout-payable > strong {
    display: block;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            30px,
            4vw,
            42px
        );

    line-height: 1;
}

.secure-checkout-payable > small {
    display: block;

    margin-top: 8px;

    color:
        rgba(
            255,
            255,
            255,
            .82
        );

    font-size: 10px;
    font-weight: 700;
}


/* ---------------------------------------------------------
   Final server note
--------------------------------------------------------- */

.secure-checkout-final-note {
    margin-top: 20px;

    padding: 17px;

    border:
        3px solid var(--ink);

    background: var(--cream);
}

.secure-checkout-final-note strong {
    display: block;

    margin-bottom: 8px;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.3px;
}

.secure-checkout-final-note p {
    margin-top: 7px;

    color: #5d505b;

    font-size: 11px;
    font-weight: 700;

    line-height: 1.5;
}


/* ---------------------------------------------------------
   Edit cart
--------------------------------------------------------- */

.secure-checkout-edit-cart {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 43px;

    margin-top: 20px;

    padding:
        0
        15px;

    border:
        2px solid var(--ink);

    background: var(--cream);

    box-shadow:
        3px 3px 0 var(--ink);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .7px;

    text-transform: uppercase;
}

.secure-checkout-edit-cart:hover,
.secure-checkout-edit-cart:focus-visible {
    background: var(--cyan);

    transform:
        translate(-1px, -1px);

    box-shadow:
        4px 4px 0 var(--ink);
}


/* =========================================================
   SECURE CHECKOUT — DESKTOP MEDIUM
========================================================= */

@media (max-width: 1120px) {

    .secure-checkout-layout {
        grid-template-columns:
            minmax(0, 1fr)
            340px;
    }

    .secure-checkout-confirm {
        grid-template-columns: 1fr;
    }

    .secure-checkout-submit {
        width: 100%;
    }

}


/* =========================================================
   SECURE CHECKOUT — TABLET
========================================================= */

@media (max-width: 920px) {

    .secure-checkout-heading {
        grid-template-columns: 1fr;
    }

    .secure-checkout-security {
        width: min(100%, 300px);

        transform: none;
    }

    .secure-checkout-layout {
        grid-template-columns: 1fr;
    }

    .secure-checkout-summary {
        position: static;

        grid-row: 1;
    }

    .secure-checkout-form-card {
        grid-row: 2;
    }

}


/* =========================================================
   SECURE CHECKOUT — SMALL TABLET
========================================================= */

@media (max-width: 700px) {

    .secure-checkout-page {
        padding:
            150px
            20px
            80px;
    }

    .secure-checkout-heading h1 {
        font-size: 64px;

        -webkit-text-stroke:
            2px var(--ink);

        text-shadow:
            5px 5px 0 var(--pink-hot),
            8px 8px 0 var(--ink);
    }

    .secure-checkout-steps {
        grid-template-columns: 1fr;
    }

    .secure-checkout-steps > div {
        border-right: 0;

        border-bottom:
            2px solid var(--ink);
    }

    .secure-checkout-steps > div:last-child {
        border-bottom: 0;
    }

    .secure-checkout-section {
        padding:
            26px
            20px;
    }

    .secure-checkout-confirm {
        padding:
            26px
            20px;
    }

    .secure-shipping-option-content {
        align-items: flex-start;
        flex-direction: column;

        gap: 10px;
    }

    .secure-shipping-option-content > b {
        white-space: normal;
    }

    .secure-checkout-server-note {
        grid-template-columns: 1fr;
    }

    .secure-checkout-server-note span {
        width: max-content;
    }

    .secure-checkout-privacy {
        grid-template-columns: 1fr;
    }

    .secure-checkout-privacy-icon {
        width: 62px;
        height: 62px;
    }

}


/* =========================================================
   SECURE CHECKOUT — MOBILE
========================================================= */

@media (max-width: 520px) {

    .secure-checkout-page {
        padding-left: 12px;
        padding-right: 12px;
    }

    .secure-checkout-heading h1 {
        font-size: 54px;
    }

    .secure-checkout-security {
        width: 100%;
    }

    .secure-checkout-section {
        padding:
            23px
            16px;
    }

    .secure-checkout-section-heading {
        gap: 14px;
    }

    .secure-checkout-number {
        flex-basis: 48px;

        width: 48px;
        height: 48px;

        font-size: 23px;
    }

    .secure-checkout-section-heading h2 {
        font-size: 34px;
    }

    .secure-shipping-option {
        grid-template-columns:
            26px
            minmax(0, 1fr);

        gap: 10px;

        padding:
            15px
            13px;
    }

    .secure-shipping-option-control {
        width: 25px;
        height: 25px;
    }

    .secure-shipping-option-control span {
        width: 10px;
        height: 10px;
    }

    .secure-checkout-privacy {
        padding: 16px;
    }

    .secure-checkout-address textarea {
        min-height: 190px;
    }

    .secure-checkout-confirm {
        padding:
            23px
            16px;
    }

    .secure-checkout-summary {
        padding:
            22px
            16px;

        box-shadow:
            6px 6px 0 var(--ink);
    }

    .secure-checkout-item {
        align-items: flex-start;
    }

    .secure-checkout-item > strong {
        max-width: 42%;
    }

    .secure-checkout-totals > div {
        gap: 12px;
    }

    .secure-checkout-totals strong {
        max-width: 45%;
    }

}


/* =========================================================
   SECURE CHECKOUT — REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .secure-checkout-back,
    .secure-shipping-option,
    .secure-checkout-edit-cart {
        transition: none;
    }

}



/* =========================================================
   PRODUCT SHOW — VICE MARKET
========================================================= */

.product-show-page {
    min-height: 100vh;

    padding:
        165px 6vw
        105px;

    background:
        linear-gradient(
            180deg,
            #5ce7ed 0%,
            #f5aab9 30%,
            #f7e4c7 70%
        );
}

.product-show-shell {
    width: min(1320px, 100%);

    margin: 0 auto;
}


/* =========================================================
   GLOBAL SAFE WRAPPING FOR PRODUCT CONTENT
========================================================= */

.product-show-shell,
.product-show-shell *,
.product-show-hero,
.product-show-main,
.product-show-heading,
.product-show-information,
.product-show-info-card,
.product-show-description,
.product-show-price-tier,
.product-show-purchase,
.product-show-sku,
.product-show-category {
    min-width: 0;
    max-width: 100%;
}

.product-show-heading h1,
.product-show-lead,
.product-show-category,
.product-show-sku code,
.product-show-description,
.product-show-info-heading p,
.product-show-price-tier span,
.product-show-price-tier strong,
.product-show-purchase-heading strong,
.product-show-unavailable p,
.product-show-visual-name {
    overflow-wrap: anywhere;
    word-break: break-word;
}


/* =========================================================
   BACK TO SHOP
========================================================= */

.product-show-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;

    margin-bottom: 28px;

    padding:
        0
        14px;

    border:
        2px solid var(--ink);

    background: var(--cream);

    box-shadow:
        4px 4px 0 var(--ink);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: .7px;

    text-transform: uppercase;
}

.product-show-back:hover,
.product-show-back:focus-visible {
    background: var(--cyan);

    transform:
        translate(-1px, -1px);

    box-shadow:
        5px 5px 0 var(--ink);
}


/* =========================================================
   HERO
========================================================= */

.product-show-hero {
    display: grid;

    grid-template-columns:
        minmax(360px, .88fr)
        minmax(0, 1.12fr);

    overflow: hidden;

    border:
        3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        12px 12px 0 var(--ink);
}


/* =========================================================
   PRODUCT VISUAL
========================================================= */

.product-show-visual {
    position: relative;

    min-width: 0;
    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    padding:
        90px
        40px
        70px;

    border-right:
        3px solid var(--ink);

    background:
        radial-gradient(
            circle at 26% 22%,
            rgba(255, 255, 255, .72),
            transparent 20%
        ),
        linear-gradient(
            145deg,
            var(--pink),
            var(--coral) 60%,
            var(--orange)
        );
}

.product-show-visual::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -170px;
    bottom: -170px;

    border:
        4px solid rgba(23, 17, 23, .14);

    border-radius: 50%;
}

.product-show-visual::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    left: -120px;
    top: 90px;

    border-radius: 50%;

    background:
        rgba(92, 231, 237, .25);
}


/* ---------------------------------------------------------
   Visual top labels
--------------------------------------------------------- */

.product-show-visual-top {
    position: absolute;

    top: 22px;
    left: 22px;
    right: 22px;

    z-index: 4;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 15px;
}

.product-show-category {
    display: inline-block;

    padding:
        8px
        11px;

    border:
        2px solid var(--ink);

    background: var(--cream);

    box-shadow:
        4px 4px 0 var(--ink);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.2px;

    line-height: 1.35;

    text-transform: uppercase;
}

.product-show-badge {
    flex:
        0
        0
        auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;

    padding:
        6px
        10px;

    border:
        2px solid var(--ink);

    background: var(--yellow);

    box-shadow:
        3px 3px 0 var(--ink);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.product-show-badge--available {
    background: var(--cyan);
}

.product-show-badge--sold-out {
    background: var(--pink-hot);
    color: white;
}


/* ---------------------------------------------------------
   Product object
--------------------------------------------------------- */

.product-show-object {
    position: relative;

    z-index: 3;

    width: 210px;
    height: 210px;

    display: grid;
    place-items: center;

    border:
        5px solid var(--ink);

    background: var(--cream);

    box-shadow:
        13px 13px 0 var(--ink);

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 72px;

    transform:
        rotate(-5deg);
}


/* ---------------------------------------------------------
   Decorative product name
--------------------------------------------------------- */

.product-show-visual-name {
    position: absolute;

    left: 22px;
    right: 22px;
    bottom: 20px;

    z-index: 2;

    max-height: 120px;

    overflow: hidden;

    color:
        rgba(
            255,
            255,
            255,
            .26
        );

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            58px,
            6vw,
            96px
        );

    line-height: .82;

    letter-spacing: -3px;

    text-transform: uppercase;

    pointer-events: none;
}


/* =========================================================
   MAIN PRODUCT CONTENT
========================================================= */

.product-show-main {
    padding:
        42px
        42px
        40px;

    background: var(--cream);
}

.product-show-heading {
    min-width: 0;
}

.product-show-heading h1 {
    margin-top: 16px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            52px,
            6vw,
            88px
        );

    line-height: .9;

    letter-spacing: -2px;

    text-transform: uppercase;
}

.product-show-lead {
    margin-top: 20px;

    color: #514651;

    font-size: 16px;
    font-weight: 700;

    line-height: 1.65;
}


/* =========================================================
   PRICE + AVAILABILITY
========================================================= */

.product-show-price-row {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(190px, .85fr);

    gap: 15px;

    margin-top: 30px;
}

.product-show-price,
.product-show-availability {
    min-width: 0;

    padding: 18px;

    border:
        3px solid var(--ink);

    box-shadow:
        5px 5px 0 var(--ink);
}

.product-show-price {
    background: var(--yellow);
}

.product-show-price > span,
.product-show-availability > span {
    display: block;

    margin-bottom: 7px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.product-show-price > strong {
    display: block;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            30px,
            4vw,
            42px
        );

    line-height: 1;

    overflow-wrap: anywhere;
}

.product-show-availability > strong {
    display: block;

    font-size: 14px;
    font-weight: 900;

    line-height: 1.4;

    overflow-wrap: anywhere;
}

.product-show-availability--available {
    background: var(--cyan);
}

.product-show-availability--unavailable {
    background: var(--coral);
}


/* =========================================================
   SKU
========================================================= */

.product-show-sku {
    margin-top: 17px;

    padding:
        13px
        15px;

    border:
        2px solid var(--ink);

    background: white;
}

.product-show-sku span {
    display: block;

    margin-bottom: 6px;

    color: #675b67;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.4px;
}

.product-show-sku code {
    display: block;

    font-family:
        "Courier New",
        Courier,
        monospace;

    font-size: 12px;
    font-weight: 900;

    line-height: 1.45;
}


/* =========================================================
   ERRORS
========================================================= */

.product-show-errors {
    margin-top: 24px;

    border:
        3px solid var(--ink);

    box-shadow:
        5px 5px 0 var(--ink);
}

.product-show-errors p {
    overflow-wrap: anywhere;
    word-break: break-word;

    line-height: 1.5;
}


/* =========================================================
   PURCHASE BOX
========================================================= */

.product-show-purchase {
    margin-top: 28px;

    padding: 22px;

    border:
        3px solid var(--ink);

    background:
        linear-gradient(
            135deg,
            var(--cyan),
            #bff7f5
        );

    box-shadow:
        7px 7px 0 var(--ink);
}

.product-show-purchase-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-bottom: 18px;

    border-bottom:
        2px solid var(--ink);
}

.product-show-purchase-heading > div:first-child {
    min-width: 0;
}

.product-show-purchase-heading span {
    display: block;

    margin-bottom: 5px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.product-show-purchase-heading strong {
    display: block;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            27px,
            4vw,
            38px
        );

    line-height: 1;

    text-transform: uppercase;
}

.product-show-purchase-mark {
    flex:
        0
        0
        48px;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border:
        3px solid var(--ink);

    background: var(--pink-hot);
    color: white;

    box-shadow:
        4px 4px 0 var(--ink);

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 30px;

    transform:
        rotate(3deg);
}


/* ---------------------------------------------------------
   Add to cart form
--------------------------------------------------------- */

.product-show-cart-form {
    display: grid;

    grid-template-columns:
        minmax(130px, .35fr)
        minmax(0, .65fr);

    gap: 15px;

    align-items: end;

    margin-top: 20px;
}

.product-show-quantity {
    min-width: 0;
}

.product-show-quantity label {
    display: block;

    margin-bottom: 7px;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.product-show-quantity input {
    width: 100%;
    min-height: 52px;

    padding:
        10px
        12px;

    border:
        3px solid var(--ink);

    border-radius: 0;

    background: var(--cream);

    color: var(--ink);

    outline: none;

    font-size: 16px;
    font-weight: 900;
}

.product-show-quantity input:focus-visible {
    box-shadow:
        4px 4px 0 var(--pink-hot);
}

.product-show-quantity small {
    display: block;

    margin-top: 7px;

    color: #564b56;

    font-size: 10px;
    font-weight: 700;

    line-height: 1.4;

    overflow-wrap: anywhere;
}

.product-show-cart-button {
    min-width: 0;
}


/* =========================================================
   UNAVAILABLE PRODUCT
========================================================= */

.product-show-unavailable {
    margin-top: 28px;

    padding: 22px;

    border:
        3px solid var(--ink);

    background: #ddd4d9;

    box-shadow:
        6px 6px 0 var(--ink);
}

.product-show-unavailable > span {
    display: block;

    margin-bottom: 6px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.4px;
}

.product-show-unavailable > strong {
    display: block;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 34px;

    line-height: 1;

    text-transform: uppercase;
}

.product-show-unavailable p {
    margin-top: 10px;

    color: #564b56;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.5;
}


/* =========================================================
   PRODUCT INFORMATION BELOW HERO
========================================================= */

.product-show-information {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap: 28px;

    margin-top: 38px;
}

.product-show-information > :only-child {
    grid-column:
        1
        /
        -1;
}

.product-show-info-card {
    min-width: 0;

    padding: 30px;

    border:
        3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        8px 8px 0 var(--ink);
}

.product-show-info-heading {
    min-width: 0;

    padding-bottom: 22px;

    border-bottom:
        3px solid var(--ink);
}

.product-show-info-heading h2 {
    margin-top: 12px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            38px,
            5vw,
            55px
        );

    line-height: .95;

    text-transform: uppercase;

    overflow-wrap: anywhere;
}

.product-show-info-heading p {
    margin-top: 13px;

    color: #574b56;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.6;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.product-show-description {
    margin-top: 24px;

    color: #3f353e;

    font-size: 15px;

    line-height: 1.8;

    white-space: normal;
}

.product-show-description br {
    content: "";
}


/* =========================================================
   BULK PRICING
========================================================= */

.product-show-bulk {
    background:
        linear-gradient(
            145deg,
            var(--yellow),
            #ffedab
        );
}

.product-show-price-tiers {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap: 12px;

    margin-top: 24px;
}

.product-show-price-tier {
    min-width: 0;

    padding: 16px;

    border:
        2px solid var(--ink);

    background: var(--cream);
}

.product-show-price-tier span {
    display: block;

    margin-bottom: 7px;

    color: #615560;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1px;

    line-height: 1.4;

    text-transform: uppercase;
}

.product-show-price-tier strong {
    display: block;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            22px,
            3vw,
            29px
        );

    line-height: 1;
}

.product-show-price-tier small {
    display: block;

    margin-top: 6px;

    color: #655865;

    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   LONG CONTENT HARDENING
========================================================= */

.product-show-shell h1,
.product-show-shell h2,
.product-show-shell strong,
.product-show-shell span,
.product-show-shell small,
.product-show-shell p,
.product-show-shell code {
    max-width: 100%;
}

.product-show-shell h1,
.product-show-shell h2,
.product-show-shell p,
.product-show-shell code {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.product-show-info-card,
.product-show-main,
.product-show-price-row > *,
.product-show-information > *,
.product-show-price-tiers > * {
    min-width: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 960px) {

    .product-show-hero {
        grid-template-columns: 1fr;
    }

    .product-show-visual {
        min-height: 440px;

        border-right: 0;

        border-bottom:
            3px solid var(--ink);
    }

    .product-show-object {
        width: 170px;
        height: 170px;

        font-size: 58px;
    }

    .product-show-visual-name {
        font-size:
            clamp(
                48px,
                10vw,
                80px
            );
    }

    .product-show-information {
        grid-template-columns: 1fr;
    }

    .product-show-information > :only-child {
        grid-column: auto;
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 700px) {

    .product-show-page {
        padding:
            150px
            20px
            80px;
    }

    .product-show-main {
        padding:
            30px
            23px;
    }

    .product-show-heading h1 {
        font-size:
            clamp(
                45px,
                11vw,
                66px
            );

        letter-spacing: -1px;
    }

    .product-show-price-row {
        grid-template-columns: 1fr;
    }

    .product-show-cart-form {
        grid-template-columns: 1fr;
    }

    .product-show-cart-button {
        width: 100%;
    }

    .product-show-info-card {
        padding:
            25px
            22px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 520px) {

    .product-show-page {
        padding-left: 12px;
        padding-right: 12px;
    }

    .product-show-hero {
        box-shadow:
            7px 7px 0 var(--ink);
    }

    .product-show-visual {
        min-height: 360px;

        padding:
            85px
            20px
            65px;
    }

    .product-show-visual-top {
        top: 15px;
        left: 15px;
        right: 15px;

        align-items: stretch;
        flex-direction: column;
    }

    .product-show-category,
    .product-show-badge {
        width: fit-content;
        max-width: 100%;
    }

    .product-show-object {
        width: 140px;
        height: 140px;

        border-width: 4px;

        box-shadow:
            9px 9px 0 var(--ink);

        font-size: 48px;
    }

    .product-show-visual-name {
        left: 15px;
        right: 15px;
        bottom: 14px;

        max-height: 80px;

        font-size: 48px;
    }

    .product-show-main {
        padding:
            26px
            17px;
    }

    .product-show-heading h1 {
        font-size:
            clamp(
                40px,
                13vw,
                56px
            );
    }

    .product-show-lead {
        font-size: 14px;
    }

    .product-show-purchase {
        padding:
            19px
            15px;
    }

    .product-show-purchase-heading {
        align-items: flex-start;
    }

    .product-show-purchase-mark {
        flex-basis: 42px;

        width: 42px;
        height: 42px;

        font-size: 25px;
    }

    .product-show-info-card {
        padding:
            22px
            16px;
    }

    .product-show-price-tiers {
        grid-template-columns: 1fr;
    }

    .product-show-description {
        font-size: 14px;

        line-height: 1.7;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .product-show-back,
    .product-show-quantity input {
        transition: none;
    }

}




/* =========================================================
   USER ACCOUNT
========================================================= */

.account-page {
    min-height: 100vh;

    padding:
        165px 6vw
        105px;

    background:
        linear-gradient(
            180deg,
            #5ce7ed 0%,
            #f5aab9 30%,
            #f7e4c7 70%
        );
}

.account-shell {
    width: min(1320px, 100%);

    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.account-hero {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(280px, .75fr);

    gap: 32px;

    align-items: stretch;

    padding: 34px;

    border:
        3px solid var(--ink);

    background:
        linear-gradient(
            135deg,
            #181118,
            #29172b
        );

    color: var(--cream);

    box-shadow:
        10px 10px 0 var(--ink),
        14px 14px 0 var(--cyan);
}

.account-hero-copy {
    min-width: 0;
}

.account-hero h1 {
    margin-top: 16px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            60px,
            8vw,
            110px
        );

    line-height: .86;

    letter-spacing: -3px;

    text-transform: uppercase;

    color: var(--cream);

    text-shadow:
        5px 5px 0 var(--pink-hot),
        9px 9px 0 var(--cyan);

    overflow-wrap: anywhere;
    word-break: break-word;
}

.account-hero-copy p {
    max-width: 700px;

    margin-top: 24px;

    color:
        rgba(
            255,
            245,
            223,
            .78
        );

    font-size: 15px;
    font-weight: 700;

    line-height: 1.6;
}


/* =========================================================
   IDENTITY
========================================================= */

.account-identity {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;

    padding: 24px;

    border:
        3px solid var(--ink);

    background: var(--yellow);
    color: var(--ink);

    box-shadow:
        7px 7px 0 var(--pink-hot);
}

.account-identity > span {
    display: block;

    margin-bottom: 8px;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.8px;
}

.account-identity > strong {
    display: block;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            34px,
            5vw,
            52px
        );

    line-height: .95;

    overflow-wrap: anywhere;
    word-break: break-word;
}

.account-identity > small {
    display: block;

    margin-top: 10px;

    color: #594d57;

    font-size: 11px;
    font-weight: 800;

    line-height: 1.45;
}


/* =========================================================
   STATS
========================================================= */

.account-stats {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(
                0,
                1fr
            )
        );

    gap: 18px;

    margin-top: 34px;
}

.account-stat {
    min-width: 0;

    padding: 22px;

    border:
        3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        6px 6px 0 var(--ink);
}

.account-stat:nth-child(2) {
    background: var(--cyan);
}

.account-stat:nth-child(3) {
    background: var(--yellow);
}

.account-stat:nth-child(4) {
    background: #f7d5e4;
}

.account-stat > span {
    display: block;

    min-height: 28px;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.4px;

    line-height: 1.4;

    text-transform: uppercase;
}

.account-stat > strong {
    display: block;

    margin-top: 13px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 48px;

    line-height: 1;

    color: var(--pink-hot);

    overflow-wrap: anywhere;
}

.account-stat > strong.account-stat-date {
    font-size: 31px;
}

.account-stat > small {
    display: block;

    margin-top: 10px;

    color: #61545f;

    font-size: 11px;
    font-weight: 700;

    line-height: 1.45;

    overflow-wrap: anywhere;
}


/* =========================================================
   ACCOUNT NAVIGATION
========================================================= */

.account-navigation {
    margin-top: 48px;
}

.account-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 26px;
}

.account-section-heading > div {
    min-width: 0;
}

.account-section-heading h2 {
    margin-top: 12px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            44px,
            6vw,
            72px
        );

    line-height: .9;

    text-transform: uppercase;
}

.account-section-heading > p {
    max-width: 430px;

    font-size: 13px;
    font-weight: 800;

    line-height: 1.55;
}


/* =========================================================
   ACCOUNT LINKS
========================================================= */

.account-links {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap: 20px;
}

.account-link-card {
    position: relative;

    display: grid;

    grid-template-columns:
        58px
        minmax(0, 1fr)
        auto;

    gap: 18px;

    align-items: center;

    min-width: 0;

    padding: 24px;

    border:
        3px solid var(--ink);

    box-shadow:
        7px 7px 0 var(--ink);

    transition:
        transform 140ms ease,
        box-shadow 140ms ease;
}

.account-link-card:hover,
.account-link-card:focus-visible {
    transform:
        translate(-2px, -2px);

    box-shadow:
        9px 9px 0 var(--ink);
}

.account-link-card--orders {
    background: var(--cream);
}

.account-link-card--notifications {
    background: var(--cyan);
}

.account-link-card--cart {
    background: var(--yellow);
}

.account-link-card--shop {
    background: var(--pink);
}

.account-link-number {
    display: grid;
    place-items: center;

    width: 54px;
    height: 54px;

    border:
        3px solid var(--ink);

    background: var(--ink);
    color: var(--cream);

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 25px;

    transform:
        rotate(-2deg);
}

.account-link-card > div {
    min-width: 0;
}

.account-link-card > div > span {
    display: block;

    margin-bottom: 5px;

    color: #665966;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.4px;
}

.account-link-card > div > strong {
    display: block;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            27px,
            4vw,
            38px
        );

    line-height: 1;

    text-transform: uppercase;

    overflow-wrap: anywhere;
}

.account-link-card > div > p {
    margin-top: 8px;

    color: #564a55;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.5;

    overflow-wrap: anywhere;
}

.account-link-arrow,
.account-link-count {
    display: grid;
    place-items: center;

    min-width: 44px;
    height: 44px;

    padding:
        0
        8px;

    border:
        3px solid var(--ink);

    background: var(--cream);
    color: var(--ink);

    box-shadow:
        4px 4px 0 var(--ink);

    font-size: 20px;
    font-weight: 900;
}

.account-link-count {
    background: var(--pink-hot);
    color: white;

    font-size: 11px;
}


/* =========================================================
   SECURITY / PRIVACY PANEL
========================================================= */

.account-security {
    display: grid;

    grid-template-columns:
        145px
        minmax(0, 1fr);

    gap: 26px;

    align-items: center;

    margin-top: 48px;

    padding: 30px;

    border:
        3px solid var(--ink);

    background:
        linear-gradient(
            135deg,
            var(--cyan),
            #b8f5f3
        );

    box-shadow:
        8px 8px 0 var(--ink);
}

.account-security-mark {
    display: grid;
    place-items: center;

    width: 125px;
    height: 125px;

    border:
        4px solid var(--ink);

    background: var(--ink);
    color: var(--yellow);

    box-shadow:
        6px 6px 0 var(--pink-hot);

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 27px;

    transform:
        rotate(-4deg);
}

.account-security > div:last-child {
    min-width: 0;
}

.account-security > div:last-child > span {
    display: block;

    margin-bottom: 6px;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.account-security h2 {
    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            34px,
            5vw,
            52px
        );

    line-height: .95;

    text-transform: uppercase;
}

.account-security p {
    max-width: 800px;

    margin-top: 9px;

    color: #493d48;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.55;

    overflow-wrap: anywhere;
}


/* =========================================================
   SAFE WRAPPING
========================================================= */

.account-shell,
.account-shell * {
    min-width: 0;
    max-width: 100%;
}

.account-shell h1,
.account-shell h2,
.account-shell strong,
.account-shell p,
.account-shell span,
.account-shell small {
    overflow-wrap: anywhere;
    word-break: break-word;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

    .account-hero {
        grid-template-columns: 1fr;
    }

    .account-identity {
        max-width: 520px;
    }

    .account-stats {
        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );
    }

    .account-links {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 700px) {

    .account-page {
        padding:
            150px
            20px
            80px;
    }

    .account-hero {
        padding:
            28px
            22px;
    }

    .account-hero h1 {
        font-size: 64px;
    }

    .account-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-security {
        grid-template-columns: 1fr;
    }

    .account-security-mark {
        width: 100px;
        height: 100px;

        font-size: 23px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 520px) {

    .account-page {
        padding-left: 12px;
        padding-right: 12px;
    }

    .account-hero {
        padding:
            24px
            17px;

        box-shadow:
            6px 6px 0 var(--ink),
            9px 9px 0 var(--cyan);
    }

    .account-hero h1 {
        font-size: 52px;

        letter-spacing: -2px;
    }

    .account-identity {
        padding: 20px;
    }

    .account-stats {
        grid-template-columns: 1fr;
    }

    .account-stat {
        padding: 20px;
    }

    .account-link-card {
        grid-template-columns:
            48px
            minmax(0, 1fr);

        gap: 14px;

        padding:
            20px
            16px;
    }

    .account-link-number {
        width: 44px;
        height: 44px;

        font-size: 21px;
    }

    .account-link-arrow,
    .account-link-count {
        grid-column:
            1
            /
            -1;

        width: 100%;

        min-height: 42px;
        height: auto;

        margin-top: 4px;
    }

    .account-security {
        padding:
            24px
            17px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .account-link-card {
        transition: none;
    }

}

/* =========================================================
   ADMIN DASHBOARD — CONTROL ROOM
========================================================= */

.admin-dashboard-page {
    min-height: 100vh;

    padding:
        165px
        5vw
        100px;

    background:
        linear-gradient(
            180deg,
            #111018 0%,
            #1d1530 24%,
            #f0d7c4 24%,
            #f5eadc 100%
        );
}

.admin-dashboard-shell {
    width: min(
        1480px,
        100%
    );

    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.admin-dashboard-hero {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(260px, .6fr);

    gap: 28px;

    align-items: stretch;

    padding: 30px;

    border:
        3px solid var(--ink);

    background:
        linear-gradient(
            135deg,
            #171117,
            #2e1738
        );

    color: var(--cream);

    box-shadow:
        10px 10px 0 var(--ink),
        14px 14px 0 var(--pink-hot);
}

.admin-dashboard-hero > div {
    min-width: 0;
}

.admin-dashboard-hero h1 {
    margin-top: 12px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            56px,
            7vw,
            92px
        );

    line-height: .88;

    letter-spacing: -2px;

    text-transform: uppercase;

    color: var(--cream);

    text-shadow:
        5px 5px 0 var(--pink-hot),
        9px 9px 0 var(--cyan);

    overflow-wrap: anywhere;
}

.admin-dashboard-hero p {
    max-width: 720px;

    margin-top: 18px;

    color:
        rgba(
            255,
            245,
            223,
            .78
        );

    font-size: 14px;
    font-weight: 700;

    line-height: 1.55;
}

.admin-dashboard-identity {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 22px;

    border:
        3px solid var(--ink);

    background: var(--yellow);
    color: var(--ink);

    box-shadow:
        7px 7px 0 var(--cyan);
}

.admin-dashboard-identity > span {
    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.admin-dashboard-identity > strong {
    margin-top: 8px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            30px,
            4vw,
            46px
        );

    line-height: .95;

    overflow-wrap: anywhere;
}

.admin-dashboard-identity > small {
    margin-top: 8px;

    color: #5e5159;

    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   PRIORITIES
========================================================= */

.admin-dashboard-priorities {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(
                0,
                1fr
            )
        );

    gap: 16px;

    margin-top: 32px;
}

.admin-dashboard-priority {
    display: flex;

    flex-direction: column;

    min-width: 0;

    padding: 20px;

    border:
        3px solid var(--ink);

    background: var(--cream);
    color: var(--ink);

    box-shadow:
        5px 5px 0 var(--ink);

    transition:
        transform 120ms ease,
        box-shadow 120ms ease;
}

.admin-dashboard-priority:hover,
.admin-dashboard-priority:focus-visible {
    transform:
        translate(-2px, -2px);

    box-shadow:
        7px 7px 0 var(--ink);
}

.admin-dashboard-priority--payment {
    background: var(--cyan);
}

.admin-dashboard-priority--support {
    background: var(--pink);
}

.admin-dashboard-priority--stock {
    background: var(--yellow);
}

.admin-dashboard-priority > span {
    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.25px;

    text-transform: uppercase;
}

.admin-dashboard-priority > strong {
    margin-top: 8px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 44px;

    line-height: 1;

    color: var(--ink);
}

.admin-dashboard-priority > small {
    margin-top: 8px;

    color: #5e5159;

    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   SECTIONS
========================================================= */

.admin-dashboard-section {
    margin-top: 46px;
}

.admin-dashboard-section-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 20px;
}

.admin-dashboard-section-heading > div {
    min-width: 0;
}

.admin-dashboard-section-heading h2 {
    margin-top: 8px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            36px,
            5vw,
            58px
        );

    line-height: .92;

    text-transform: uppercase;
}

.admin-dashboard-section-heading > p {
    max-width: 420px;

    font-size: 12px;
    font-weight: 800;

    line-height: 1.5;
}


/* =========================================================
   CONTROL CENTER LINKS
========================================================= */

.admin-dashboard-links {
    display: grid;

    grid-template-columns:
        repeat(
            5,
            minmax(
                0,
                1fr
            )
        );

    gap: 14px;
}

.admin-dashboard-link {
    display: grid;

    grid-template-columns:
        42px
        minmax(0, 1fr);

    gap: 12px;

    align-items: start;

    min-width: 0;

    padding: 18px;

    border:
        3px solid var(--ink);

    background: var(--cream);
    color: var(--ink);

    box-shadow:
        5px 5px 0 var(--ink);

    position: relative;

    transition:
        transform 120ms ease,
        box-shadow 120ms ease;
}

.admin-dashboard-link:hover,
.admin-dashboard-link:focus-visible {
    transform:
        translate(-2px, -2px);

    box-shadow:
        7px 7px 0 var(--ink);
}

.admin-dashboard-link--pink {
    background: var(--pink);
}

.admin-dashboard-link--cyan {
    background: var(--cyan);
}

.admin-dashboard-link--yellow {
    background: var(--yellow);
}

.admin-dashboard-link > span {
    display: grid;

    place-items: center;

    width: 40px;
    height: 40px;

    border:
        3px solid var(--ink);

    background: var(--ink);
    color: var(--cream);

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 18px;
}

.admin-dashboard-link > div {
    min-width: 0;
}

.admin-dashboard-link small {
    display: block;

    color: #6b5d67;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1.2px;
}

.admin-dashboard-link strong {
    display: block;

    margin-top: 4px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 26px;

    line-height: 1;

    text-transform: uppercase;

    overflow-wrap: anywhere;
}

.admin-dashboard-link p {
    margin-top: 7px;

    color: #554955;

    font-size: 10px;
    font-weight: 700;

    line-height: 1.4;

    overflow-wrap: anywhere;
}

.admin-dashboard-link > b {
    position: absolute;

    right: 13px;
    bottom: 10px;

    font-size: 16px;
}


/* =========================================================
   SETTINGS
========================================================= */

.admin-dashboard-settings {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(
                0,
                1fr
            )
        );

    gap: 14px;
}

.admin-dashboard-setting {
    display: grid;

    grid-template-columns:
        54px
        minmax(0, 1fr)
        auto;

    gap: 14px;

    align-items: center;

    min-width: 0;

    padding: 18px;

    border:
        3px solid var(--ink);

    background:
        linear-gradient(
            135deg,
            #181118,
            #2b1a34
        );

    color: var(--cream);

    box-shadow:
        5px 5px 0 var(--cyan);
}

.admin-dashboard-setting > span {
    display: grid;

    place-items: center;

    width: 50px;
    height: 50px;

    border:
        3px solid var(--cream);

    background: var(--pink-hot);

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 19px;
}

.admin-dashboard-setting > div {
    min-width: 0;
}

.admin-dashboard-setting strong {
    display: block;

    font-size: 13px;
    font-weight: 900;

    overflow-wrap: anywhere;
}

.admin-dashboard-setting small {
    display: block;

    margin-top: 4px;

    color:
        rgba(
            255,
            245,
            223,
            .7
        );

    font-size: 9px;
    font-weight: 700;

    line-height: 1.35;
}

.admin-dashboard-setting > b {
    font-size: 18px;
}


/* =========================================================
   TWO COLUMN PANELS
========================================================= */

.admin-dashboard-columns {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(320px, .75fr);

    gap: 20px;

    margin-top: 46px;
}

.admin-dashboard-panel {
    min-width: 0;

    padding: 22px;

    border:
        3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        7px 7px 0 var(--ink);
}

.admin-dashboard-panel-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 18px;

    margin-bottom: 16px;
}

.admin-dashboard-panel-heading > div {
    min-width: 0;
}

.admin-dashboard-panel-heading h2 {
    margin-top: 7px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 34px;

    line-height: 1;

    text-transform: uppercase;
}

.admin-dashboard-text-link {
    flex: 0 0 auto;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;

    text-decoration: underline;
}


/* =========================================================
   RECENT ORDERS
========================================================= */

.admin-dashboard-order {
    display: grid;

    grid-template-columns:
        minmax(180px, 1.5fr)
        minmax(120px, .9fr)
        minmax(100px, .8fr)
        minmax(110px, .8fr)
        20px;

    gap: 12px;

    align-items: center;

    min-width: 0;

    padding: 12px 0;

    border-top:
        2px solid var(--ink);

    color: var(--ink);
}

.admin-dashboard-order:last-child {
    border-bottom:
        2px solid var(--ink);
}

.admin-dashboard-order-reference {
    min-width: 0;
}

.admin-dashboard-order-reference small {
    display: block;

    color: #746674;

    font-size: 9px;
    font-weight: 800;
}

.admin-dashboard-order-reference strong {
    display: block;

    margin-top: 4px;

    font-family:
        "Courier New",
        monospace;

    font-size: 11px;

    overflow-wrap: anywhere;
}

.admin-dashboard-status {
    display: inline-flex;

    align-items: center;

    width: fit-content;

    max-width: 100%;

    padding:
        5px
        7px;

    border:
        2px solid var(--ink);

    font-size: 8px;
    font-weight: 900;

    line-height: 1.2;

    text-transform: uppercase;
}

.admin-dashboard-status--waiting {
    background: var(--yellow);
}

.admin-dashboard-status--processing {
    background: var(--pink);
}

.admin-dashboard-status--shipped {
    background: var(--cyan);
}

.admin-dashboard-status--completed {
    background: #b9efb3;
}

.admin-dashboard-status--cancelled {
    background: #efb0b0;
}

.admin-dashboard-status--neutral {
    background: #ddd5d8;
}

.admin-dashboard-order-payment {
    font-size: 9px;
    font-weight: 800;

    overflow-wrap: anywhere;
}

.admin-dashboard-order-total {
    font-size: 10px;
    font-weight: 900;

    text-align: right;

    overflow-wrap: anywhere;
}


/* =========================================================
   LOW STOCK
========================================================= */

.admin-dashboard-stock-row {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto
        50px
        18px;

    gap: 12px;

    align-items: center;

    min-width: 0;

    padding: 12px 0;

    border-top:
        2px solid var(--ink);

    color: var(--ink);
}

.admin-dashboard-stock-row:last-child {
    border-bottom:
        2px solid var(--ink);
}

.admin-dashboard-stock-row > div {
    min-width: 0;
}

.admin-dashboard-stock-row > div strong {
    display: block;

    font-size: 11px;
    font-weight: 900;

    overflow-wrap: anywhere;
}

.admin-dashboard-stock-row > div small {
    display: block;

    margin-top: 3px;

    color: #746674;

    font-size: 9px;
    font-weight: 700;

    overflow-wrap: anywhere;
}

.admin-dashboard-stock-row > span {
    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1px;
}

.admin-dashboard-stock-row > strong {
    display: grid;

    place-items: center;

    min-width: 42px;

    padding:
        5px
        7px;

    border:
        2px solid var(--ink);

    background: var(--yellow);

    font-size: 11px;
}


/* =========================================================
   SALES
========================================================= */

.admin-dashboard-sales {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(
                260px,
                1fr
            )
        );

    gap: 16px;
}

.admin-dashboard-sale {
    padding: 20px;

    border:
        3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        5px 5px 0 var(--ink);
}

.admin-dashboard-sale-heading {
    display: flex;

    align-items: baseline;

    justify-content: space-between;

    gap: 18px;

    padding-bottom: 14px;

    border-bottom:
        2px solid var(--ink);
}

.admin-dashboard-sale-heading > span {
    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.4px;
}

.admin-dashboard-sale-heading > strong {
    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 28px;
}

.admin-dashboard-sale-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(
                0,
                1fr
            )
        );

    gap: 10px;

    margin-top: 14px;
}

.admin-dashboard-sale-grid > div {
    min-width: 0;

    padding-right: 10px;

    border-right:
        1px solid
        rgba(
            23,
            17,
            23,
            .25
        );
}

.admin-dashboard-sale-grid > div:last-child {
    padding-right: 0;

    border-right: 0;
}

.admin-dashboard-sale-grid span {
    display: block;

    color: #776977;

    font-size: 8px;
    font-weight: 900;

    text-transform: uppercase;
}

.admin-dashboard-sale-grid strong {
    display: block;

    margin-top: 5px;

    font-size: 10px;
    font-weight: 900;

    overflow-wrap: anywhere;
}


/* =========================================================
   TOP PRODUCTS
========================================================= */

.admin-dashboard-products {
    border:
        3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        6px 6px 0 var(--ink);
}

.admin-dashboard-products-head,
.admin-dashboard-product-row {
    display: grid;

    grid-template-columns:
        minmax(0, 2fr)
        minmax(80px, .5fr)
        minmax(80px, .5fr)
        minmax(120px, .8fr);

    gap: 14px;

    align-items: center;
}

.admin-dashboard-products-head {
    padding:
        10px
        16px;

    background: var(--ink);
    color: var(--cream);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.admin-dashboard-product-row {
    padding:
        13px
        16px;

    border-top:
        2px solid var(--ink);
}

.admin-dashboard-product-row > div {
    min-width: 0;
}

.admin-dashboard-product-row > div strong {
    display: block;

    font-size: 11px;
    font-weight: 900;

    overflow-wrap: anywhere;
}

.admin-dashboard-product-row > div small {
    display: block;

    margin-top: 3px;

    color: #766a74;

    font-size: 9px;
    font-weight: 700;

    overflow-wrap: anywhere;
}

.admin-dashboard-product-row > strong {
    font-size: 10px;

    overflow-wrap: anywhere;
}


/* =========================================================
   OVERVIEW
========================================================= */

.admin-dashboard-overview {
    display: grid;

    grid-template-columns:
        repeat(
            6,
            minmax(
                0,
                1fr
            )
        );

    gap: 10px;

    margin-top: 46px;
}

.admin-dashboard-overview > div {
    min-width: 0;

    padding: 16px;

    border:
        3px solid var(--ink);

    background: var(--cream);
}

.admin-dashboard-overview > div:nth-child(2n) {
    background: #f5d4e2;
}

.admin-dashboard-overview span {
    display: block;

    color: #746774;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: .8px;

    text-transform: uppercase;
}

.admin-dashboard-overview strong {
    display: block;

    margin-top: 6px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 26px;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.admin-dashboard-empty {
    padding: 18px;

    border:
        2px dashed var(--ink);

    background:
        rgba(
            255,
            255,
            255,
            .45
        );

    font-size: 11px;
    font-weight: 800;

    line-height: 1.45;
}


/* =========================================================
   SAFE WRAPPING
========================================================= */

.admin-dashboard-shell,
.admin-dashboard-shell * {
    min-width: 0;
    max-width: 100%;
}

.admin-dashboard-shell h1,
.admin-dashboard-shell h2,
.admin-dashboard-shell h3,
.admin-dashboard-shell p,
.admin-dashboard-shell span,
.admin-dashboard-shell small,
.admin-dashboard-shell strong,
.admin-dashboard-shell b {
    overflow-wrap: anywhere;
    word-break: break-word;
}


/* =========================================================
   RESPONSIVE — LARGE TABLET
========================================================= */

@media (max-width: 1180px) {

    .admin-dashboard-links {
        grid-template-columns:
            repeat(
                3,
                minmax(
                    0,
                    1fr
                )
            );
    }

    .admin-dashboard-settings {
        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );
    }

    .admin-dashboard-columns {
        grid-template-columns: 1fr;
    }

    .admin-dashboard-overview {
        grid-template-columns:
            repeat(
                3,
                minmax(
                    0,
                    1fr
                )
            );
    }

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 860px) {

    .admin-dashboard-page {
        padding:
            150px
            24px
            80px;
    }

    .admin-dashboard-hero {
        grid-template-columns: 1fr;
    }

    .admin-dashboard-priorities {
        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );
    }

    .admin-dashboard-links {
        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );
    }

    .admin-dashboard-section-heading {
        align-items: flex-start;

        flex-direction: column;
    }

    .admin-dashboard-products-head {
        display: none;
    }

    .admin-dashboard-product-row {
        grid-template-columns:
            minmax(0, 1fr)
            repeat(
                3,
                auto
            );
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 580px) {

    .admin-dashboard-page {
        padding-left: 12px;
        padding-right: 12px;
    }

    .admin-dashboard-hero {
        padding:
            24px
            18px;

        box-shadow:
            6px 6px 0 var(--ink),
            9px 9px 0 var(--pink-hot);
    }

    .admin-dashboard-hero h1 {
        font-size: 52px;
    }

    .admin-dashboard-priorities,
    .admin-dashboard-links,
    .admin-dashboard-settings,
    .admin-dashboard-overview {
        grid-template-columns: 1fr;
    }

    .admin-dashboard-priority {
        padding: 18px;
    }

    .admin-dashboard-link {
        grid-template-columns:
            40px
            minmax(0, 1fr);

        padding: 16px;
    }

    .admin-dashboard-setting {
        grid-template-columns:
            48px
            minmax(0, 1fr)
            auto;

        padding: 16px;
    }

    .admin-dashboard-panel {
        padding: 18px;
    }

    .admin-dashboard-panel-heading {
        align-items: flex-start;

        flex-direction: column;
    }

    .admin-dashboard-order {
        grid-template-columns: 1fr;

        gap: 7px;
    }

    .admin-dashboard-order-total {
        text-align: left;
    }

    .admin-dashboard-order > b {
        display: none;
    }

    .admin-dashboard-stock-row {
        grid-template-columns:
            minmax(0, 1fr)
            auto
            auto;

        gap: 8px;
    }

    .admin-dashboard-stock-row > b {
        display: none;
    }

    .admin-dashboard-sale-grid {
        grid-template-columns: 1fr;
    }

    .admin-dashboard-sale-grid > div {
        padding:
            8px
            0;

        border-right: 0;

        border-bottom:
            1px solid
            rgba(
                23,
                17,
                23,
                .2
            );
    }

    .admin-dashboard-sale-grid > div:last-child {
        border-bottom: 0;
    }

    .admin-dashboard-product-row {
        grid-template-columns: 1fr;

        gap: 7px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .admin-dashboard-priority,
    .admin-dashboard-link {
        transition: none;
    }

}


/* =========================================================
   ADMIN REFERRAL PROGRAM
========================================================= */

/*
 * Il form referral viene identificato tramite la sua
 * destinazione server-side.
 *
 * Nessun JavaScript necessario.
 */

.admin-action-card
form[action$="/admin/referral-program"] {
    margin-top: 28px;
}


/* =========================================================
   FIELDSETS
========================================================= */

.admin-action-card
form[action$="/admin/referral-program"]
fieldset {
    min-width: 0;

    margin:
        0
        0
        24px;

    padding: 24px;

    border:
        3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        5px 5px 0 var(--ink);
}

.admin-action-card
form[action$="/admin/referral-program"]
fieldset:nth-of-type(1) {
    background:
        linear-gradient(
            135deg,
            var(--yellow),
            #ffe9a0
        );
}

.admin-action-card
form[action$="/admin/referral-program"]
fieldset:nth-of-type(2) {
    background:
        linear-gradient(
            135deg,
            var(--cyan),
            #bdf6f7
        );
}

.admin-action-card
form[action$="/admin/referral-program"]
fieldset:nth-of-type(3) {
    background:
        linear-gradient(
            135deg,
            #fff5df,
            #ffe4b8
        );
}

.admin-action-card
form[action$="/admin/referral-program"]
fieldset:nth-of-type(4) {
    background:
        linear-gradient(
            135deg,
            #f8d8e8,
            #ffd0df
        );
}


/* =========================================================
   LEGENDS
========================================================= */

.admin-action-card
form[action$="/admin/referral-program"]
legend {
    padding:
        7px
        12px;

    border:
        2px solid var(--ink);

    background: var(--ink);
    color: var(--cream);

    box-shadow:
        3px 3px 0 var(--pink-hot);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}


/* =========================================================
   LABELS
========================================================= */

.admin-action-card
form[action$="/admin/referral-program"]
fieldset > label:not(:has(input[type="checkbox"])) {
    display: block;

    margin:
        18px
        0
        8px;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


/* =========================================================
   TEXT INPUTS
========================================================= */

.admin-action-card
form[action$="/admin/referral-program"]
input[type="text"] {
    width: 100%;
    min-height: 52px;

    padding:
        11px
        14px;

    border:
        3px solid var(--ink);

    border-radius: 0;

    outline: none;

    background: white;
    color: var(--ink);

    font-size: 15px;
    font-weight: 800;

    box-shadow:
        3px 3px 0
        rgba(
            23,
            17,
            23,
            .18
        );
}

.admin-action-card
form[action$="/admin/referral-program"]
input[type="text"]:hover {
    background: #fffdf8;
}

.admin-action-card
form[action$="/admin/referral-program"]
input[type="text"]:focus-visible {
    box-shadow:
        5px 5px 0 var(--pink-hot);
}


/* =========================================================
   CHECKBOX
========================================================= */

.admin-action-card
form[action$="/admin/referral-program"]
fieldset > label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 15px;

    padding: 16px;

    border:
        3px solid var(--ink);

    background: var(--cream);

    box-shadow:
        4px 4px 0 var(--ink);

    font-size: 12px;
    font-weight: 900;

    line-height: 1.4;

    cursor: pointer;
}

.admin-action-card
form[action$="/admin/referral-program"]
input[type="checkbox"] {
    flex:
        0
        0
        22px;

    width: 22px;
    height: 22px;

    margin: 0;

    accent-color: var(--pink-hot);

    cursor: pointer;
}

.admin-action-card
form[action$="/admin/referral-program"]
input[type="checkbox"]:focus-visible {
    outline:
        3px solid var(--cyan);

    outline-offset: 3px;
}


/* =========================================================
   HELP TEXT
========================================================= */

.admin-action-card
form[action$="/admin/referral-program"]
fieldset > p {
    margin-top: 10px;

    color: #584b57;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.55;

    overflow-wrap: anywhere;
}


/* =========================================================
   VALIDATION
========================================================= */

.admin-action-card
form[action$="/admin/referral-program"]
p[role="alert"] {
    margin-top: 9px;

    padding:
        10px
        12px;

    border:
        2px solid var(--ink);

    background: #ffc4d7;
    color: var(--ink);

    box-shadow:
        3px 3px 0 var(--ink);

    font-size: 11px;
    font-weight: 900;

    line-height: 1.45;
}


/* =========================================================
   GLOBAL STATUS / ERROR PANELS
========================================================= */

.admin-main
.admin-action-card[role="status"],
.admin-main
.admin-action-card[role="alert"] {
    max-width: 1450px;

    margin:
        0 auto
        28px;
}

.admin-main
.admin-action-card[role="status"] {
    background: var(--cyan);
}

.admin-main
.admin-action-card[role="alert"] {
    background: #ffc4d7;
}

.admin-main
.admin-action-card[role="alert"]
ul {
    margin:
        16px
        0
        0
        20px;

    font-size: 12px;
    font-weight: 800;

    line-height: 1.65;
}


/* =========================================================
   REFERRAL FORM ACTIONS
========================================================= */

.admin-action-card
form[action$="/admin/referral-program"]
> .admin-actions {
    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    margin-top: 28px;
}

.admin-action-card
form[action$="/admin/referral-program"]
> .admin-actions
> button.admin-action-card {
    width: 100%;

    min-height: 128px;

    appearance: none;

    cursor: pointer;

    text-align: left;

    background:
        linear-gradient(
            135deg,
            var(--pink-hot),
            var(--pink)
        );

    color: white;

    font: inherit;
}

.admin-action-card
form[action$="/admin/referral-program"]
> .admin-actions
> button.admin-action-card
.section-eyebrow {
    background: var(--yellow);
    color: var(--ink);
}

.admin-action-card
form[action$="/admin/referral-program"]
> .admin-actions
> button.admin-action-card
strong,
.admin-action-card
form[action$="/admin/referral-program"]
> .admin-actions
> a.admin-action-card
strong {
    display: block;

    margin-top: 15px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 29px;

    line-height: 1;

    text-transform: uppercase;
}

.admin-action-card
form[action$="/admin/referral-program"]
> .admin-actions
> button.admin-action-card:hover,
.admin-action-card
form[action$="/admin/referral-program"]
> .admin-actions
> button.admin-action-card:focus-visible {
    background: var(--cyan);
    color: var(--ink);

    transform:
        translate(-2px, -2px);

    box-shadow:
        10px 10px 0 var(--ink);
}


/* =========================================================
   REFERRAL SETTINGS CARD
========================================================= */

.admin-action-card
form[action$="/admin/referral-program"]
+ * {
    min-width: 0;
}


/*
 * I pannelli informativi accanto al form restano leggibili
 * anche con contenuti lunghi.
 */
.promotion-admin-actions
.admin-action-card {
    min-width: 0;
}

.promotion-admin-actions
.admin-action-card p,
.promotion-admin-actions
.admin-action-card strong,
.promotion-admin-actions
.admin-action-card span {
    overflow-wrap: anywhere;
    word-break: break-word;
}


/* =========================================================
   ADMIN PROMOTIONS — REFERRAL DASHBOARD
========================================================= */

.admin-heading
+ .admin-stats
+ .admin-actions
+ .admin-heading {
    margin-top: 65px;
}

.admin-main
.admin-heading h2 {
    margin-top: 10px;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(
            42px,
            6vw,
            70px
        );

    line-height: .92;

    text-transform: uppercase;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 800px) {

    .admin-action-card
    form[action$="/admin/referral-program"]
    > .admin-actions {
        grid-template-columns: 1fr;
    }

    .admin-action-card
    form[action$="/admin/referral-program"]
    fieldset {
        padding: 20px;
    }

}


@media (max-width: 550px) {

    .admin-action-card
    form[action$="/admin/referral-program"]
    fieldset {
        padding:
            19px
            15px;
    }

    .admin-action-card
    form[action$="/admin/referral-program"]
    legend {
        max-width: 100%;

        white-space: normal;

        overflow-wrap: anywhere;
    }

    .admin-action-card
    form[action$="/admin/referral-program"]
    fieldset > label:has(input[type="checkbox"]) {
        align-items: flex-start;
    }

    .admin-action-card
    form[action$="/admin/referral-program"]
    > .admin-actions
    > button.admin-action-card,
    .admin-action-card
    form[action$="/admin/referral-program"]
    > .admin-actions
    > a.admin-action-card {
        min-height: 110px;

        padding: 22px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .admin-action-card
    form[action$="/admin/referral-program"]
    input,
    .admin-action-card
    form[action$="/admin/referral-program"]
    button {
        transition: none;
    }

}


/* ==========================================================================
   Product Feedback
   ========================================================================== */

.product-show-feedback-button {
    display: inline-flex;
    width: fit-content;
    margin-top: 1.25rem;
    text-decoration: none;
}

.product-feedback-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.product-feedback-summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
    padding: 1rem;
    border: 1px solid currentColor;
}

.product-feedback-summary-item > span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    opacity: 0.65;
}

.product-feedback-summary-item > strong {
    font-size: 1rem;
    overflow-wrap: anywhere;
}

.product-feedback-list {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.product-feedback-card {
    display: grid;
    gap: 1.35rem;
}

.product-feedback-card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}

.product-feedback-card-heading h2 {
    margin: 0.25rem 0 0;
}

.product-feedback-automatic-badge {
    flex: 0 0 auto;
    padding: 0.45rem 0.7rem;
    border: 1px solid currentColor;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    white-space: nowrap;
}

.product-feedback-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.product-feedback-meta > div {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding-top: 0.85rem;
    border-top: 1px solid currentColor;
}

.product-feedback-meta span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    opacity: 0.6;
}

.product-feedback-rating {
    display: grid;
    gap: 0.55rem;
}

.product-feedback-capsules {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.product-feedback-capsule {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 1rem;
    overflow: hidden;
    font-size: 1.6rem;
    line-height: 1;
    opacity: 0.2;
}

.product-feedback-capsule--active {
    opacity: 1;
}

.product-feedback-capsules > strong {
    margin-left: 0.4rem;
    font-size: 0.85rem;
}

.product-feedback-review {
    display: grid;
    gap: 0.65rem;
}

.product-feedback-review-text {
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: normal;
}

.product-feedback-automatic-note {
    padding: 1rem;
    border: 1px solid currentColor;
}

.product-feedback-automatic-note strong {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.product-feedback-automatic-note p {
    margin: 0;
    line-height: 1.6;
    opacity: 0.75;
}

.product-feedback-admin-reply {
    display: grid;
    gap: 0.7rem;
    padding: 1.1rem 1.2rem;
    border-left: 3px solid currentColor;
}

.product-feedback-admin-reply small {
    opacity: 0.65;
}


/* ==========================================================================
   Admin Reviews
   ========================================================================== */

.admin-review-list {
    display: grid;
    gap: 1.25rem;
}

.admin-review-card {
    display: grid;
    gap: 1.25rem;
}

.admin-review-rating {
    display: grid;
    gap: 0.55rem;
}

.admin-review-capsules {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.admin-review-capsule {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 1rem;
    overflow: hidden;
    font-size: 1.6rem;
    line-height: 1;
    opacity: 0.2;
}

.admin-review-capsule--active {
    opacity: 1;
}

.admin-review-capsules > strong {
    margin-left: 0.4rem;
    font-size: 0.85rem;
}

.admin-review-body,
.admin-review-reply {
    display: grid;
    gap: 0.65rem;
}

.admin-review-text {
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: normal;
}

.admin-review-reply {
    padding: 1.1rem 1.2rem;
    border-left: 3px solid currentColor;
}

.admin-review-reply small {
    opacity: 0.65;
}

.admin-review-actions {
    display: grid;
    gap: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid currentColor;
}


/* ==========================================================================
   Responsive Feedback
   ========================================================================== */

@media (max-width: 800px) {
    .product-feedback-summary {
        grid-template-columns: 1fr;
    }

    .product-feedback-meta {
        grid-template-columns: 1fr;
    }

    .product-feedback-card-heading {
        flex-direction: column;
    }

    .product-feedback-automatic-badge {
        white-space: normal;
    }

    .product-show-feedback-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .product-feedback-capsule,
    .admin-review-capsule {
        min-width: 1.6rem;
        font-size: 1.35rem;
    }

    .product-feedback-admin-reply,
    .admin-review-reply {
        padding: 0.9rem;
    }
}

/* ==========================================================================
   Order Reviews
   ========================================================================== */

.order-review-page {
    min-height: 100vh;
}

.order-review-hero {
    margin-bottom: 1.5rem;
}

.order-review-products {
    display: grid;
    gap: 1.5rem;
}

.order-review-card {
    display: grid;
    gap: 1.4rem;
}

.order-review-card--error {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

.order-review-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.55rem;
    font-size: 0.85rem;
    opacity: 0.75;
}

.order-review-line-total {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
    text-align: right;
}

.order-review-line-total > span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    opacity: 0.6;
}

.order-review-form {
    display: grid;
    gap: 1.5rem;
}

.order-review-rating {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.order-review-rating legend {
    margin-bottom: 0.4rem;
    padding: 0;
    font-weight: 800;
}

.order-review-rating > p {
    margin: 0 0 1rem;
    opacity: 0.7;
}


/* ==========================================================================
   Selectable Capsules
   ========================================================================== */

.order-review-capsules {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.65rem;
    max-width: 34rem;
}

.order-review-capsule-option {
    position: relative;
}

.order-review-capsule-option input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.order-review-capsule-option label {
    display: flex;
    min-height: 4rem;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid currentColor;
    cursor: pointer;
    user-select: none;
    transition:
        transform 120ms ease,
        opacity 120ms ease;
}

.order-review-capsule-option label:hover {
    transform: translateY(-1px);
}

.order-review-capsule-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    line-height: 1;
    opacity: 0.3;
}

.order-review-capsule-option label strong {
    font-size: 0.95rem;
}

.order-review-capsule-option input[type="radio"]:checked + label {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.order-review-capsule-option
    input[type="radio"]:checked
    + label
    .order-review-capsule-symbol {
    opacity: 1;
}

.order-review-capsule-option input[type="radio"]:focus-visible + label {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}


/* ==========================================================================
   Existing Review State
   ========================================================================== */

.order-review-completed {
    display: grid;
    gap: 0.8rem;
    padding: 1.15rem 1.2rem;
    border: 1px solid currentColor;
}

.order-review-completed > strong {
    font-size: 1.05rem;
}

.order-review-completed > p {
    margin: 0;
    line-height: 1.65;
    opacity: 0.75;
}

.order-review-state-badge {
    width: fit-content;
    padding: 0.35rem 0.6rem;
    border: 1px solid currentColor;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.order-review-existing-capsules {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.order-review-existing-capsule {
    display: inline-flex;
    min-width: 1.8rem;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    opacity: 0.2;
}

.order-review-existing-capsule--active {
    opacity: 1;
}

.order-review-existing-capsules > strong {
    margin-left: 0.45rem;
    font-size: 0.85rem;
}


/* ==========================================================================
   Review Form Footer / Window
   ========================================================================== */

.order-review-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding-top: 1.2rem;
    border-top: 1px solid currentColor;
}

.order-review-form-footer > p {
    max-width: 34rem;
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
    opacity: 0.65;
}

.order-review-window-closed,
.order-review-complete-card {
    margin-bottom: 1.5rem;
}

.order-review-complete-card {
    display: grid;
    gap: 1rem;
}

.order-review-complete-card .vice-button {
    width: fit-content;
}


/* ==========================================================================
   Responsive Order Reviews
   ========================================================================== */

@media (max-width: 800px) {
    .order-review-capsules {
        grid-template-columns: repeat(5, minmax(3.2rem, 1fr));
        overflow-x: auto;
        padding: 0.2rem 0.2rem 0.5rem;
    }

    .order-review-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .order-review-form-footer .vice-button {
        width: 100%;
        justify-content: center;
    }

    .order-review-line-total {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 520px) {
    .order-review-capsules {
        grid-template-columns: repeat(5, 3.4rem);
    }

    .order-review-capsule-option label {
        min-height: 3.6rem;
        padding: 0.55rem;
        gap: 0.3rem;
    }

    .order-review-capsule-symbol {
        font-size: 1.35rem;
    }

    .order-review-existing-capsule {
        min-width: 1.5rem;
        font-size: 1.3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .order-review-capsule-option label {
        transition: none;
    }
}

/* ==========================================================================
   ORDER REVIEWS — LAYOUT FIX
   Isolato alla sola pagina recensioni ordine.
   ========================================================================== */

.order-review-page {
    position: relative;

    min-height: 100vh;

    padding:
        165px
        6vw
        105px;

    background:
        linear-gradient(
            180deg,
            #5ce7ed 0%,
            #f5aab9 30%,
            #f7e4c7 70%
        );
}


/*
 * Mantiene la stessa larghezza della pagina ordine,
 * ma impedisce overflow orizzontali accidentali.
 */
.order-review-page .order-detail-shell {
    width: min(1320px, 100%);

    min-width: 0;

    margin:
        0
        auto;
}


/* ==========================================================================
   HERO
   ========================================================================== */

.order-review-page .order-review-hero {
    margin-bottom: 42px;
}


/*
 * Nella pagina ordine originale dopo H1 viene mostrato
 * un blocco differente.
 *
 * Nella pagina recensioni abbiamo invece un paragrafo:
 * gli assegniamo spazio proprio per evitare che tocchi
 * il titolo con line-height molto compatto.
 */
.order-review-page
.order-review-hero
.order-detail-hero-copy
> p {
    max-width: 720px;

    margin-top: 26px;

    color:
        rgba(
            255,
            245,
            223,
            .78
        );

    font-size: 15px;
    font-weight: 700;

    line-height: 1.65;

    overflow-wrap: anywhere;
    word-break: break-word;
}


/*
 * Il titolo rimane nello stile Vice originale,
 * ma leggermente più controllato perché la frase
 * "Lascia una recensione" è più lunga del normale
 * titolo ordine.
 */
.order-review-page .order-review-hero h1 {
    font-size:
        clamp(
            56px,
            7vw,
            96px
        );

    line-height: .88;
}


/* ==========================================================================
   REVIEW WINDOW
   ========================================================================== */

.order-review-page .order-review-window-closed {
    margin:
        0
        0
        42px;
}


/* ==========================================================================
   PRODUCTS
   ========================================================================== */

.order-review-page .order-review-products {
    display: grid;

    gap: 32px;

    margin:
        0
        0
        0;
}


/*
 * Ogni card deve creare il proprio blocco visivo.
 * Il gap del grid tiene conto anche dell'ombra da 8px.
 */
.order-review-page .order-review-card {
    position: relative;

    display: grid;

    gap: 1.4rem;

    min-width: 0;

    margin: 0;
}


/*
 * Evita che header prodotto e totale si comprimano
 * in modo anomalo.
 */
.order-review-page
.order-review-card
.order-detail-section-heading {
    align-items: flex-start;

    margin-bottom: 8px;
}


/* ==========================================================================
   EXISTING / COMPLETED REVIEW
   ========================================================================== */

.order-review-page .order-review-completed {
    margin-top: 2px;
}


/* ==========================================================================
   COMPLETE CARD
   ========================================================================== */

.order-review-page .order-review-complete-card {
    margin:
        42px
        0
        0;

    padding: 30px;

    display: grid;

    gap: 16px;
}


/*
 * Evita che l'ombra della card prodotto precedente
 * sembri sovrapporsi alla card finale.
 */
.order-review-page
.order-review-products
+ .order-review-complete-card {
    margin-top: 44px;
}


.order-review-page
.order-review-complete-card
h2 {
    margin-top: 4px;
}


.order-review-page
.order-review-complete-card
p {
    max-width: 720px;

    line-height: 1.6;
}


.order-review-page
.order-review-complete-card
.vice-button {
    display: inline-flex;

    width: fit-content;

    min-width: 0;

    align-items: center;
    justify-content: center;

    margin-top: 6px;

    padding:
        0
        22px;
}


/* ==========================================================================
   SAFE CONTENT WRAPPING
   ========================================================================== */

.order-review-page .order-detail-shell,
.order-review-page .order-detail-shell *,
.order-review-page .order-review-card,
.order-review-page .order-review-form,
.order-review-page .order-review-completed {
    min-width: 0;
}


.order-review-page h1,
.order-review-page h2,
.order-review-page p,
.order-review-page strong,
.order-review-page small,
.order-review-page span {
    max-width: 100%;
}


.order-review-page h1,
.order-review-page h2,
.order-review-page p {
    overflow-wrap: anywhere;
    word-break: break-word;
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 980px) {

    .order-review-page .order-review-hero {
        margin-bottom: 38px;
    }

}


/* ==========================================================================
   SMALL TABLET
   ========================================================================== */

@media (max-width: 760px) {

    .order-review-page {
        padding:
            150px
            20px
            80px;
    }

    .order-review-page .order-review-hero {
        margin-bottom: 34px;
    }

    .order-review-page
    .order-review-hero
    .order-detail-hero-copy
    > p {
        margin-top: 22px;

        font-size: 14px;
    }

    .order-review-page .order-review-products {
        gap: 28px;
    }

    .order-review-page
    .order-review-products
    + .order-review-complete-card {
        margin-top: 38px;
    }

}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 520px) {

    .order-review-page {
        padding:
            145px
            12px
            70px;
    }

    .order-review-page .order-review-hero {
        margin-bottom: 30px;
    }

    .order-review-page .order-review-hero h1 {
        font-size: 52px;

        line-height: .9;

        letter-spacing: -1px;
    }

    .order-review-page
    .order-review-hero
    .order-detail-hero-copy
    > p {
        margin-top: 20px;

        font-size: 13px;

        line-height: 1.6;
    }

    .order-review-page .order-review-products {
        gap: 25px;
    }

    .order-review-page .order-review-complete-card {
        padding:
            22px
            17px;
    }

    .order-review-page
    .order-review-complete-card
    .vice-button {
        width: 100%;
    }

}