/* /assets/css/main.css */
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --ink: #181818;
    --muted: #706d66;
    --paper: #f6f4ef;
    --white: #fffefa;
    --line: #dedbd3;
    --acid: #d7ff36;
    --coral: #ff715f;
    --blue: #82b7ff;
    --mint: #9ee8c5;
    --yellow: #ffdb4d;
    --radius-lg: 28px;
    --radius-md: 18px;
    --shadow: 0 13px 30px rgba(24, 24, 24, .09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Manrope, Arial, sans-serif;
    font-size: 15px;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: 0;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    overflow: hidden;
}

.page-container {
    width: min(1360px, calc(100% - 48px));
    margin: 0 auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    clip-path: inset(50%);
}

.site-header {
    position: sticky;
    z-index: 20;
    top: 0;
    border-bottom: 1px solid rgba(24, 24, 24, .08);
    background: rgba(246, 244, 239, .93);
    backdrop-filter: blur(15px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    width: min(1400px, calc(100% - 48px));
    min-height: 78px;
    margin: 0 auto;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    letter-spacing: -.08em;
}

.brand-mark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 12px;
    font-family: "DM Mono", monospace;
    font-size: 17px;
    letter-spacing: -.14em;
    transform: rotate(-6deg);
}

.brand-name {
    font-size: 27px;
}

.catalog-button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 0 15px;
    border-radius: 13px;
    background: var(--ink);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
}

.catalog-icon {
    display: grid;
    gap: 3px;
    width: 15px;
}

.catalog-icon i {
    display: block;
    width: 15px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
}

.search-form {
    display: flex;
    flex: 1;
    align-items: center;
    min-width: 150px;
    height: 44px;
    padding-left: 15px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--white);
}

.search-form input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-size: 14px;
}

.search-form input::placeholder {
    color: #98958e;
}

.search-form button {
    display: grid;
    width: 44px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: transparent;
    color: var(--ink);
}

.search-form svg,
.header-action svg,
.filter-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-action {
    position: relative;
    display: grid;
    min-width: 62px;
    place-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 600;
}

.header-action svg {
    width: 21px;
    height: 21px;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: 8px;
    display: grid;
    width: 16px;
    height: 16px;
    place-items: center;
    border-radius: 50%;
    background: var(--coral);
    color: var(--white);
    font-family: "DM Mono", monospace;
    font-size: 9px;
}

.catalog-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 15px 30px rgba(24, 24, 24, .08);
}

.catalog-menu-inner {
    display: flex;
    gap: 8px;
    width: min(1400px, calc(100% - 48px));
    padding: 15px 0;
    margin: 0 auto;
}

.catalog-menu a {
    display: flex;
    flex: 1;
    justify-content: space-between;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 13px;
    font-size: 13px;
    font-weight: 700;
}

.catalog-menu a:hover {
    background: var(--acid);
}

.hero {
    padding: 14px 0 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, .7fr);
    gap: 18px;
}

.hero-main,
.hero-side {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.hero-main {
    min-height: 248px;
    padding: 22px 40px;
    background: var(--acid);
}

.eyebrow {
    margin: 0 0 11px;
    color: var(--muted);
    font-family: "DM Mono", monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #555a16;
}

.hero h1,
.section-heading h2,
.custom-print-copy h2,
.collection-copy h2 {
    margin: 0;
    font-size: clamp(34px, 3.8vw, 54px);
    font-weight: 800;
    letter-spacing: -.075em;
    line-height: .9;
}

.hero h1 span,
.collection-copy h2 span {
    font-style: italic;
}

.hero-copy {
    max-width: 360px;
    margin: 13px 0 15px;
    font-size: 13px;
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 19px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 800;
}

.button-dark {
    background: var(--ink);
    color: var(--white);
}

.button-light {
    background: var(--white);
    color: var(--ink);
}

.button-outline {
    border: 1px solid var(--ink);
    background: transparent;
}

.button-dark span,
.button-outline span,
.button-light span {
    font-size: 20px;
    line-height: 0;
}

.button-link {
    padding: 0;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.hero-sticker {
    position: absolute;
    z-index: 1;
    display: grid;
    width: 104px;
    height: 104px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--coral);
    font-family: "DM Mono", monospace;
    font-size: 13px;
    line-height: 1.1;
    text-align: center;
    transform: rotate(12deg);
}

.hero-sticker-top {
    top: 35px;
    right: 46px;
}

.hero-doodle {
    position: absolute;
    font-family: "DM Mono", monospace;
    font-size: 82px;
    font-weight: 500;
}

.hero-doodle-left {
    right: 194px;
    bottom: 22px;
    transform: rotate(-19deg);
}

.hero-doodle-right {
    right: 57px;
    bottom: 45px;
    font-size: 107px;
    transform: rotate(18deg);
}

.hero-side {
    display: flex;
    min-height: 248px;
    flex-direction: column;
    padding: 15px;
    background: var(--blue);
}

.hero-side-label {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    padding: 7px 10px;
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
    font-family: "DM Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
}

.hero-side-art {
    position: relative;
    flex: 1;
    min-height: 138px;
}

.hero-side-shape {
    position: absolute;
    display: block;
    border: 2px solid var(--ink);
}

.shape-one {
    top: 33px;
    left: 45px;
    width: 140px;
    height: 183px;
    border-radius: 48% 52% 47% 53% / 57% 35% 65% 43%;
    background: var(--yellow);
    transform: rotate(-13deg);
}

.shape-two {
    right: -13px;
    bottom: 19px;
    width: 184px;
    height: 184px;
    border-radius: 50%;
    background: var(--coral);
}

.hero-side-face {
    position: absolute;
    right: 31px;
    bottom: 69px;
    z-index: 2;
    font-family: "DM Mono", monospace;
    font-size: 63px;
    font-weight: 500;
    transform: rotate(-11deg);
}

.hero-side-note {
    position: absolute;
    bottom: 22px;
    left: 8px;
    z-index: 2;
    font-family: "DM Mono", monospace;
    font-size: 13px;
    line-height: 1.05;
    transform: rotate(-8deg);
}

.hero-side-link {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    padding-top: 17px;
    border-top: 1px solid rgba(24, 24, 24, .35);
    font-size: 13px;
    font-weight: 800;
}

.hero-side-link span {
    font-size: 18px;
}

.categories-section,
.catalog-section,
.collection-section {
    padding: 24px 0;
}

.section-heading {
    margin-bottom: 16px;
}

.section-heading-inline {
    position: relative;
}

.section-heading-inline a,
.products-controls > a {
    font-size: 13px;
    font-weight: 800;
}

.section-heading-inline > a {
    position: absolute;
    right: 0;
    bottom: 6px;
}

.section-heading-inline a span,
.products-controls > a span {
    margin-left: 5px;
    font-size: 18px;
}

.section-heading h2 {
    font-size: clamp(30px, 3.6vw, 49px);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.category-card {
    position: relative;
    display: flex;
    min-height: 183px;
    flex-direction: column;
    padding: 18px;
    overflow: hidden;
    border-radius: var(--radius-md);
    transition: transform .2s ease, box-shadow .2s ease;
}

.category-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.category-pink { background: #ffb0ba; }
.category-yellow { background: #ffe46b; }
.category-blue { background: #a9cbff; }
.category-green { background: #a6e5bc; }
.category-lilac { background: #d6c4ff; }

.category-emoji {
    font-size: 48px;
    line-height: 1;
}

.category-name {
    margin-top: auto;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.category-caption {
    margin-top: 2px;
    color: rgba(24, 24, 24, .6);
    font-size: 11px;
}

.category-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(24, 24, 24, .32);
    border-radius: 50%;
    font-size: 17px;
}

.products-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.products-controls {
    display: flex;
    align-items: center;
    gap: 22px;
}

.filter-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: transparent;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
}

.filter-button svg {
    width: 18px;
    height: 18px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px 12px;
}

.product-card {
    min-width: 0;
}

.product-visual {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.product-coral { background: #ff9284; }
.product-mint { background: #a9e7ca; }
.product-blue { background: #a7c7ff; }
.product-lime { background: #daec58; }
.product-lavender { background: #cab8ff; }
.product-yellow { background: #ffe279; }
.product-peach { background: #ffbd9c; }
.product-pink { background: #f5a9c8; }

.product-tag {
    position: absolute;
    z-index: 3;
    top: 10px;
    left: 10px;
    padding: 5px 7px;
    border-radius: 7px;
    background: var(--ink);
    color: var(--white);
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: .04em;
}

.favorite-button {
    position: absolute;
    z-index: 3;
    top: 9px;
    right: 9px;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 254, 250, .86);
    color: var(--ink);
    font-family: Arial, sans-serif;
    font-size: 24px;
    line-height: 1;
}

.favorite-button.is-active {
    background: var(--coral);
}

.product-art {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.product-art::before {
    position: absolute;
    top: 9%;
    left: 10%;
    width: 80%;
    height: 82%;
    border: 2px solid var(--ink);
    background: #fffef9;
    content: "";
    transform: rotate(-4deg);
}

.product-art > span {
    position: absolute;
    z-index: 1;
}

.poster-one::before { transform: rotate(4deg); }
.poster-one .art-ribbon {
    top: 22%;
    left: 18%;
    padding: 5px 8px;
    background: var(--coral);
    font-family: "DM Mono", monospace;
    font-size: 10px;
    line-height: 1.05;
    transform: rotate(-7deg);
}
.poster-one .art-text,
.poster-two .art-text,
.poster-three .art-text {
    top: 39%;
    left: 19%;
    font-size: clamp(17px, 2.2vw, 29px);
    font-weight: 800;
    letter-spacing: -.08em;
    line-height: .86;
}
.poster-one .art-footnote {
    bottom: 21%;
    left: 19%;
    color: var(--muted);
    font-family: "DM Mono", monospace;
    font-size: 9px;
}

.sticker-cat::before {
    top: 13%;
    left: 13%;
    width: 74%;
    height: 72%;
    border-radius: 44% 56% 46% 54%;
    background: #fff7d7;
    transform: rotate(12deg);
}
.sticker-cat .art-window {
    top: 23%;
    left: 25%;
    width: 50%;
    height: 34%;
    border: 2px solid var(--ink);
    border-radius: 18px 18px 5px 5px;
    background: var(--blue);
}
.sticker-cat .art-cat {
    top: 31%;
    left: 34%;
    font-family: "DM Mono", monospace;
    font-size: 30px;
}
.sticker-cat .art-chat {
    right: 14%;
    bottom: 20%;
    padding: 7px 10px;
    border: 2px solid var(--ink);
    border-radius: 50% 50% 50% 5px;
    background: var(--yellow);
    font-family: "DM Mono", monospace;
    font-size: 11px;
    transform: rotate(-8deg);
}

.card-chaos::before {
    top: 12%;
    left: 16%;
    width: 68%;
    height: 76%;
    border-radius: 9px;
    background: var(--ink);
    transform: rotate(-7deg);
}
.card-chaos .art-scribble {
    top: 20%;
    right: 21%;
    color: var(--yellow);
    font-family: "DM Mono", monospace;
    font-size: 36px;
    transform: rotate(14deg);
}
.card-chaos .art-text {
    top: 38%;
    left: 25%;
    color: var(--white);
    font-size: clamp(16px, 2vw, 25px);
    font-weight: 800;
    letter-spacing: -.08em;
    line-height: .85;
}
.card-chaos .art-mini {
    bottom: 23%;
    left: 25%;
    color: var(--yellow);
    font-family: "DM Mono", monospace;
    font-size: 8px;
}

.poster-two::before {
    background: #fffefa;
    transform: rotate(-3deg);
}
.poster-two .art-eye {
    top: 19%;
    right: 20%;
    color: var(--coral);
    font-family: "DM Mono", monospace;
    font-size: 47px;
}
.poster-two .art-text {
    top: 43%;
    left: 17%;
    font-size: clamp(15px, 1.8vw, 23px);
}
.poster-two .art-line {
    right: 17%;
    bottom: 22%;
    width: 67%;
    height: 7px;
    background: var(--ink);
    transform: rotate(-5deg);
}

.sticker-star::before {
    top: 16%;
    left: 15%;
    width: 69%;
    height: 69%;
    border-radius: 50%;
    background: var(--yellow);
    transform: rotate(-8deg);
}
.sticker-star .art-star {
    top: 20%;
    left: 28%;
    font-size: 90px;
    line-height: 1;
    transform: rotate(13deg);
}
.sticker-star .art-text {
    top: 50%;
    left: 22%;
    font-size: clamp(15px, 1.9vw, 23px);
    font-weight: 800;
    letter-spacing: -.08em;
    line-height: .85;
    text-align: center;
}

.card-duck::before {
    top: 12%;
    left: 14%;
    width: 72%;
    height: 76%;
    border-radius: 9px;
    background: #fffef9;
    transform: rotate(4deg);
}
.card-duck .art-duck {
    top: 29%;
    left: 25%;
    padding: 15px;
    border-radius: 48% 52% 45% 55%;
    background: var(--yellow);
    font-family: "DM Mono", monospace;
    font-size: 26px;
}
.card-duck .art-text {
    right: 18%;
    bottom: 25%;
    font-family: "DM Mono", monospace;
    font-size: 13px;
    line-height: .95;
    transform: rotate(-5deg);
}
.card-duck .art-sun {
    top: 21%;
    right: 19%;
    color: var(--coral);
    font-size: 27px;
}

.poster-three::before {
    background: var(--ink);
    transform: rotate(5deg);
}
.poster-three .art-text {
    top: 35%;
    left: 22%;
    color: var(--white);
    font-size: clamp(16px, 2vw, 26px);
}
.poster-three .art-stamp {
    right: 19%;
    bottom: 22%;
    padding: 6px 7px;
    border: 1px solid var(--white);
    color: var(--acid);
    font-family: "DM Mono", monospace;
    font-size: 10px;
    transform: rotate(-8deg);
}

.sticker-okay::before {
    top: 20%;
    left: 12%;
    width: 75%;
    height: 60%;
    border-radius: 42% 58% 51% 49%;
    background: #fffef9;
    transform: rotate(-9deg);
}
.sticker-okay .art-bubble {
    top: 20%;
    left: 17%;
    padding: 7px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: var(--yellow);
    font-family: "DM Mono", monospace;
    font-size: 10px;
    transform: rotate(-8deg);
}
.sticker-okay .art-bubble.small {
    top: auto;
    right: 14%;
    bottom: 20%;
    left: auto;
    background: var(--blue);
    transform: rotate(10deg);
}
.sticker-okay .art-text {
    top: 45%;
    left: 21%;
    font-size: clamp(16px, 1.9vw, 24px);
    font-weight: 800;
    letter-spacing: -.08em;
    line-height: .86;
}

.product-info {
    padding-top: 8px;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.product-price-row strong {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.product-price-row s {
    color: #97938b;
    font-size: 11px;
}

.product-name {
    display: block;
    margin-top: 6px;
    overflow: hidden;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -.025em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-seller {
    margin: 2px 0 7px;
    overflow: hidden;
    color: var(--muted);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.rating {
    color: #685e11;
    font-size: 11px;
    font-weight: 700;
}

.rating small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 500;
}

.add-button {
    min-height: 31px;
    padding: 0 10px;
    border: 1px solid var(--ink);
    border-radius: 9px;
    background: transparent;
    color: var(--ink);
    font-size: 10px;
    font-weight: 800;
    transition: background .15s ease, color .15s ease;
}

.add-button:hover,
.add-button.is-added {
    background: var(--ink);
    color: var(--white);
}

.custom-print-section {
    padding: 40px 0 24px;
}

.custom-print-card {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 272px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--coral);
}

.custom-print-copy {
    position: relative;
    z-index: 2;
    padding: 28px 58px;
}

.custom-print-copy .eyebrow {
    color: #7c281c;
}

.custom-print-copy h2 {
    font-size: clamp(34px, 3.7vw, 52px);
}

.custom-print-copy h2 span {
    display: block;
    color: var(--white);
}

.custom-print-copy p:not(.eyebrow) {
    max-width: 420px;
    margin: 17px 0;
    font-size: 14px;
    line-height: 1.45;
}

.custom-print-art {
    position: relative;
    min-height: 240px;
}

.print-sheet {
    position: absolute;
    top: 25px;
    left: 22%;
    display: flex;
    width: 164px;
    height: 206px;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
    border: 3px solid var(--ink);
    background: var(--white);
    box-shadow: 8px 9px 0 var(--ink);
    transform: rotate(8deg);
}

.print-sheet span {
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -.09em;
    line-height: .84;
}

.print-sheet i {
    position: absolute;
    top: 23px;
    right: 20px;
    color: var(--coral);
    font-size: 35px;
    font-style: normal;
}

.print-sheet b {
    position: absolute;
    right: 17px;
    bottom: 21px;
    padding: 4px 6px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--acid);
    font-family: "DM Mono", monospace;
    font-size: 8px;
    transform: rotate(-12deg);
}

.paperclip {
    position: absolute;
    top: 18px;
    left: 16%;
    z-index: 2;
    width: 23px;
    height: 56px;
    border: 4px solid var(--ink);
    border-bottom: 0;
    border-radius: 15px 15px 0 0;
    transform: rotate(10deg);
}

.custom-note {
    position: absolute;
    right: 8%;
    bottom: 18px;
    padding: 8px 10px;
    border: 2px solid var(--ink);
    background: var(--yellow);
    font-family: "DM Mono", monospace;
    font-size: 9px;
    line-height: 1.1;
    transform: rotate(-8deg);
}

.collection-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: center;
    padding: 44px 0 82px;
}

.collection-copy h2 {
    font-size: clamp(35px, 4vw, 57px);
}

.collection-copy > p:not(.eyebrow) {
    max-width: 390px;
    margin: 22px 0 25px;
    color: #55524d;
    line-height: 1.6;
}

.collection-cards {
    position: relative;
    min-height: 300px;
}

.creator-card {
    position: absolute;
    display: flex;
    width: 180px;
    height: 225px;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border: 2px solid var(--ink);
    box-shadow: 7px 8px 0 var(--ink);
    font-family: "DM Mono", monospace;
    font-size: 19px;
    line-height: .95;
}

.creator-card i {
    align-self: flex-end;
    font-size: 58px;
    font-style: normal;
}

.creator-card-one {
    z-index: 3;
    top: 37px;
    left: 8%;
    background: var(--yellow);
    transform: rotate(-9deg);
}

.creator-card-two {
    z-index: 2;
    top: 2px;
    left: 35%;
    background: var(--blue);
    transform: rotate(7deg);
}

.creator-card-three {
    z-index: 1;
    top: 58px;
    right: 3%;
    background: var(--mint);
    transform: rotate(18deg);
}

.cart-page {
    padding: 22px 0 52px;
}

.cart-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.cart-heading h1 {
    margin: 0;
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 800;
    letter-spacing: -.08em;
    line-height: .9;
}

.cart-heading .button {
    flex: 0 0 auto;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    gap: 24px;
    align-items: start;
}

.cart-items {
    display: grid;
    gap: 12px;
}

.cart-item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 20px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
}

.cart-item-visual {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.cart-item-visual .product-art::before {
    top: 9%;
    left: 10%;
    width: 80%;
    height: 82%;
}

.cart-item-visual .poster-one .art-text {
    font-size: clamp(21px, 3vw, 34px);
}

.cart-item-content {
    min-width: 0;
    padding: 5px 5px 3px 0;
}

.cart-item-topline {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.cart-item-topline .eyebrow {
    margin-bottom: 8px;
}

.cart-item-topline h2 {
    max-width: 450px;
    margin: 0;
    font-size: clamp(24px, 3vw, 39px);
    font-weight: 800;
    letter-spacing: -.07em;
    line-height: .95;
}

.cart-item-topline p:last-child {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.cart-remove {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    font-size: 22px;
}

.cart-item-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-top: 42px;
}

.cart-item-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.cart-item-price strong {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.05em;
}

.cart-item-price s {
    color: #97938b;
    font-size: 12px;
}

.cart-item-options {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--muted);
    font-size: 11px;
}

.cart-item-options .quantity-control {
    color: var(--ink);
}

.cart-summary {
    position: sticky;
    top: 100px;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--acid);
}

.cart-summary h2 {
    margin: 0;
    font-size: clamp(32px, 3.5vw, 50px);
    font-weight: 800;
    letter-spacing: -.08em;
    line-height: .9;
}

.cart-summary-list {
    padding: 18px 0;
    margin: 28px 0 0;
    border-top: 1px solid rgba(24, 24, 24, .3);
    border-bottom: 1px solid rgba(24, 24, 24, .3);
}

.cart-summary-list div,
.cart-total {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.cart-summary-list div + div {
    margin-top: 10px;
}

.cart-summary-list dt,
.cart-summary-list dd {
    margin: 0;
    font-size: 12px;
}

.cart-summary-list dd {
    text-align: right;
}

.cart-total {
    align-items: baseline;
    padding: 18px 0;
}

.cart-total span {
    font-size: 13px;
    font-weight: 800;
}

.cart-total strong {
    font-size: 24px;
    letter-spacing: -.05em;
}

.cart-checkout-button {
    border: 1px solid var(--ink);
    background: var(--ink);
}

.cart-summary-note {
    margin: 12px 0 0;
    color: rgba(24, 24, 24, .65);
    font-size: 11px;
    line-height: 1.4;
}.product-page {
    padding: 22px 0 36px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--muted);
    font-family: "DM Mono", monospace;
    font-size: 10px;
}

.breadcrumbs a:hover {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 476px) minmax(360px, 1fr);
    gap: 70px;
    align-items: start;
}

.product-gallery-main {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.product-gallery-main .product-art::before {
    top: 8%;
    left: 13%;
    width: 74%;
    height: 84%;
    border-width: 3px;
}

.product-gallery-main .poster-one .art-ribbon {
    top: 22%;
    left: 23%;
    padding: 9px 13px;
    font-size: 15px;
}

.product-gallery-main .poster-one .art-text {
    top: 40%;
    left: 23%;
    font-size: clamp(32px, 5vw, 66px);
}

.product-gallery-main .poster-one .art-footnote {
    bottom: 19%;
    left: 23%;
    font-size: 14px;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}.product-gallery {
    width: calc(100% - 20px);
    margin-left: 20px;
}

.product-thumb {
    position: relative;
    aspect-ratio: 3 / 4;
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 14px;
    background: transparent;
}

.product-thumb.is-active {
    border-color: var(--ink);
}

.product-thumb .product-art::before {
    border-width: 1px;
}

.product-thumb .poster-one .art-ribbon {
    padding: 3px 4px;
    font-size: 5px;
}

.product-thumb .poster-one .art-text {
    font-size: clamp(13px, 2vw, 23px);
}

.product-thumb .poster-one .art-footnote {
    font-size: 4px;
}

.product-details {
    padding: 4px 0;
}

.product-details-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 32px;
    margin-bottom: 20px;
}

.product-tag-static {
    position: static;
    display: inline-block;
}

.product-favorite {
    position: static;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
}

.product-details h1 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(39px, 4.3vw, 62px);
    font-weight: 800;
    letter-spacing: -.08em;
    line-height: .91;
}

.product-description {
    max-width: 570px;
    margin: 20px 0;
    color: #55524d;
    font-size: 15px;
    line-height: 1.55;
}

.seller-card {
    display: flex;
    align-items: center;
    gap: 11px;
    max-width: 460px;
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
}

.seller-avatar {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 12px;
    background: var(--acid);
    font-family: "DM Mono", monospace;
    font-size: 13px;
    font-weight: 500;
    transform: rotate(-6deg);
}

.seller-card strong,
.seller-card small {
    display: block;
}

.seller-card strong {
    font-size: 13px;
    font-weight: 800;
}

.seller-card small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 10px;
}

.seller-card b {
    margin-left: auto;
    font-size: 19px;
}

.product-purchase {
    max-width: 540px;
    padding: 22px 0 18px;
    margin-top: 19px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.product-main-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-main-price strong {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -.06em;
}

.product-main-price s {
    color: #97938b;
    font-size: 15px;
}

.product-main-price span {
    padding: 4px 6px;
    border-radius: 7px;
    background: var(--acid);
    font-family: "DM Mono", monospace;
    font-size: 10px;
}

.product-options {
    display: flex;
    gap: 28px;
    margin: 20px 0;
}

.product-options fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

.product-options legend {
    padding: 0;
    margin-bottom: 9px;
    font-size: 11px;
    font-weight: 800;
}

.option-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.option-button {
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--white);
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
}

.option-button.is-selected {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.quantity-control {
    display: grid;
    grid-template-columns: 34px 34px 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--white);
}

.quantity-control button,
.quantity-control output {
    display: grid;
    min-height: 32px;
    place-items: center;
    background: transparent;
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
}

.quantity-control output {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    font-size: 12px;
}

.product-add-button {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-radius: 14px;
    background: var(--ink);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
}

.product-add-button span {
    color: var(--acid);
    font-family: "DM Mono", monospace;
    font-size: 12px;
}

.product-delivery-note {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 11px;
}

.product-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 540px;
    margin: 20px 0 0;
}

.product-facts div {
    padding-top: 10px;
    border-top: 1px solid var(--line);
}

.product-facts dt {
    color: var(--muted);
    font-size: 10px;
}

.product-facts dd {
    margin: 4px 0 0;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.3;
}

.product-recommendations {
    padding: 30px 0;
}

.product-recommendations-tint {
    background: #eeeae2;
}

.product-recommendations-last {
    padding-bottom: 48px;
}

.product-page-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}.site-footer {
    padding: 47px 0 21px;
    background: var(--ink);
    color: var(--white);
}

.site-footer .brand-mark {
    border-color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 43px;
}

.footer-brand p {
    max-width: 225px;
    margin: 14px 0 0;
    color: #b8b7b1;
    font-size: 12px;
    line-height: 1.55;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.footer-links h3 {
    margin: 0 0 15px;
    color: #8d8b85;
    font-family: "DM Mono", monospace;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    margin-bottom: 9px;
    font-size: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 17px;
    border-top: 1px solid #3a3a38;
    color: #8d8b85;
    font-family: "DM Mono", monospace;
    font-size: 10px;
}

@media (max-width: 1020px) {```css
@media (min-width: 721px) and (max-width: 1180px) {
    .products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
    .header-action span {
        display: none;
    }

    .header-action {
        min-width: 37px;
    }

    .hero-main {
        padding: 42px;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .custom-print-copy {
        padding: 43px;
    }
}

@media (max-width: 720px) {
    .page-container,
    .header-inner {
        width: min(100% - 28px, 1360px);
    }

    .header-inner {
        min-height: 66px;
        gap: 8px;
    }

    .brand-name {
        font-size: 23px;
    }

    .brand-mark {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        font-size: 15px;
    }

    .catalog-button {
        width: 38px;
        min-height: 38px;
        padding: 0;
        justify-content: center;
    }

    .catalog-button > span:last-child,
    .header-action:not(.header-cart):not(.header-profile) {
        display: none;
    }

    .search-form {
        height: 39px;
        padding-left: 11px;
    }

    .search-form input {
        font-size: 12px;
    }

    .search-form button {
        width: 39px;
        height: 38px;
    }

    .header-actions {
        gap: 2px;
    }

    .header-cart {
        min-width: 34px;
    }.header-profile {
        min-width: 34px;
    }

    .header-profile svg {
        width: 21px;
        height: 21px;
    }

    .catalog-menu-inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: min(100% - 28px, 1360px);
    }

    .catalog-menu a {
        padding: 10px;
        font-size: 11px;
    }

    .hero {
        padding: 12px 0 18px;
    }

    .hero-grid,
    .custom-print-card,
    .collection-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-main {
        min-height: 400px;
        padding: 32px 26px;
    }

    .hero-side {
        min-height: 280px;
    }

    .hero-side-art {
        min-height: 180px;
    }

    .hero h1 {
        font-size: clamp(43px, 13vw, 65px);
    }

    .hero-copy {
        max-width: 300px;
        margin: 19px 0 23px;
        font-size: 14px;
    }

    .hero-sticker-top {
        top: 24px;
        right: 20px;
        width: 80px;
        height: 80px;
        font-size: 10px;
    }

    .hero-doodle-left {
        right: 125px;
        bottom: 21px;
        font-size: 58px;
    }

    .hero-doodle-right {
        right: 26px;
        bottom: 25px;
        font-size: 78px;
    }

    .hero-actions {
        gap: 16px;
    }

    .button {
        min-height: 44px;
        padding: 0 14px;
        font-size: 12px;
    }

    .categories-section,
    .catalog-section,
    .collection-section {
        padding: 20px 0;
    }

    .section-heading {
        margin-bottom: 12px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .section-heading-inline > a {
        position: static;
        display: inline-block;
        margin-top: 12px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card {
        min-height: 151px;
        padding: 14px;
    }

    .category-emoji {
        font-size: 40px;
    }

    .category-name {
        font-size: 14px;
    }

    .products-heading {
        display: block;
    }

    .products-controls {
        justify-content: space-between;
        margin-top: 15px;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px 10px;
    }

    .product-price-row strong {
        font-size: 14px;
    }

    .product-name {
        font-size: 12px;
    }

    .product-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .add-button {
        width: 100%;
    }

    .custom-print-section {
        padding: 30px 0 20px;
    }

    .custom-print-copy {
        padding: 34px 26px 12px;
    }

    .custom-print-copy h2 {
        font-size: 42px;
    }

    .custom-print-art {
        min-height: 320px;
    }

    .print-sheet {
        top: 25px;
        left: 50%;
        width: 190px;
        height: 245px;
        padding: 21px;
        transform: translateX(-53%) rotate(8deg);
    }

    .print-sheet span {
        font-size: 27px;
    }

    .custom-note {
        right: 8%;
        bottom: 22px;
    }

    .paperclip {
        left: 29%;
    }

    .collection-grid {
        gap: 23px;
        padding: 30px 0 55px;
    }

    .collection-copy h2 {
        font-size: 39px;
    }

    .collection-cards {
        min-height: 250px;
        margin-top: 10px;
    }

    .creator-card {
        width: 132px;
        height: 172px;
        padding: 15px;
        font-size: 14px;
    }

    .creator-card i {
        font-size: 42px;
    }

    .creator-card-one {
        left: 2%;
    }

    .creator-card-two {
        left: 33%;
    }

    .creator-card-three {
        right: 2%;
    }

    .footer-grid {
        gap: 35px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
    }

    .footer-bottom {
        gap: 8px;
        flex-direction: column;
    }
}

@media (max-width: 1020px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .cart-item {
        grid-template-columns: 130px minmax(0, 1fr);
    }@media (max-width: 1020px) {
    .product-layout {
        grid-template-columns: minmax(0, 1fr) minmax(300px, .9fr);
        gap: 28px;
    }

    .product-page-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .product-options {
        gap: 16px;
    }
}

@media (max-width: 720px) {
    .product-page {
        padding: 16px 0 24px;
    }

    .breadcrumbs {
        margin-bottom: 14px;
        font-size: 9px;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-gallery-main {
        border-radius: var(--radius-md);
    }

    .product-gallery-main .poster-one .art-ribbon {
        padding: 7px 10px;
        font-size: 11px;
    }

    .product-gallery-main .poster-one .art-text {
        font-size: clamp(29px, 12vw, 48px);
    }

    .product-gallery-main .poster-one .art-footnote {
        font-size: 11px;
    }

    .product-details {
        padding: 0;
    }

    .product-details-topline {
        margin-bottom: 14px;
    }

    .product-details h1 {
        font-size: 42px;
    }

    .product-description {
        margin: 15px 0;
        font-size: 14px;
    }

    .seller-card {
        max-width: none;
    }

    .product-options {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .product-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-recommendations {
        padding: 22px 0;
    }

    .product-recommendations-last {
        padding-bottom: 30px;
    }

    .product-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}@media (max-width: 720px) {
    .cart-page {
        padding: 16px 0 30px;
    }

    .cart-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 18px;
    }

    .cart-heading h1 {
        font-size: 48px;
    }

    .cart-heading .button {
        width: 100%;
    }

    .cart-layout {
        gap: 16px;
    }

    .cart-item {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 12px;
        padding: 10px;
        border-radius: var(--radius-md);
    }

    .cart-item-content {
        padding: 2px 0;
    }

    .cart-item-topline {
        gap: 8px;
    }

    .cart-item-topline h2 {
        font-size: 22px;
    }

    .cart-item-topline p:last-child {
        margin-top: 6px;
        font-size: 10px;
    }

    .cart-remove {
        width: 28px;
        height: 28px;
        font-size: 19px;
    }

    .cart-item-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        margin-top: 22px;
    }

    .cart-item-price strong {
        font-size: 18px;
    }

    .cart-summary {
        padding: 20px;
    }

    .cart-summary h2 {
        font-size: 39px;
    }
}@media (max-width: 390px) {
    .brand-name {
        display: none;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .category-card {
        min-height: 133px;
    }

    .product-tag {
        top: 7px;
        left: 7px;
    }

    .favorite-button {
        top: 7px;
        right: 7px;
        width: 28px;
        height: 28px;
        font-size: 21px;
    }
}