/* =========================================================
   Threadline — editorial streetwear theme
   ========================================================= */

:root {
    --ink:        #16140f;
    --ink-soft:   #46413a;
    --paper:      #f6f1e7;
    --paper-2:    #efe7d6;
    --card:       #fffdf8;
    --coral:      #e8552d;
    --coral-dark: #c8401c;
    --moss:       #2f5d50;
    --gold:       #d8a23a;
    --line:       #ddd2bd;
    --shadow:     0 18px 40px -22px rgba(22, 20, 15, 0.45);
    --radius:     14px;
    --maxw:       1180px;
    --ff-display: "Fraunces", Georgia, "Times New Roman", serif;
    --ff-body:    "Space Grotesk", "Segoe UI", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--ff-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(22,20,15,0.04) 1px, transparent 0);
    background-size: 22px 22px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
    font-family: var(--ff-display);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.01em;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.accent { color: var(--coral); }
.eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 600;
    color: var(--coral);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 13px 26px;
    border-radius: 100px;
    border: 1.5px solid var(--ink);
    background: var(--ink);
    color: var(--paper);
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--coral); border-color: var(--coral); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-coral { background: var(--coral); border-color: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--coral-dark); border-color: var(--coral-dark); }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(246, 241, 231, 0.86);
    backdrop-filter: blur(12px);
    border-bottom: 1.5px solid var(--line);
}
.nav {
    display: flex; align-items: center; justify-content: space-between;
    height: 76px;
}
.brand {
    font-family: var(--ff-display);
    font-size: 1.6rem; font-weight: 700;
    letter-spacing: -0.02em;
    display: flex; align-items: center; gap: 9px;
}
.brand .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--coral); display: inline-block; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
    font-size: 0.92rem; font-weight: 500; position: relative; padding: 4px 0;
}
.nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
    background: var(--coral); transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
    padding: 86px 0 70px;
    position: relative; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); margin: 18px 0 22px; }
.hero h1 em { font-style: italic; color: var(--coral); }
.hero p.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 30em; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 38px; margin-top: 46px; }
.hero-stats .num { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; }
.hero-stats .lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); }

.hero-visual {
    position: relative; aspect-ratio: 4/5;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--moss), #1d3d34);
    box-shadow: var(--shadow);
    display: grid; place-items: center;
    overflow: hidden;
}
.hero-visual::before {
    content: ''; position: absolute; inset: 0;
    background:
        repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 14px, transparent 14px 28px);
}
.hero-tee {
    width: 74%; filter: drop-shadow(0 24px 30px rgba(0,0,0,0.35));
    position: relative; z-index: 2;
}
.hero-badge {
    position: absolute; top: 22px; right: 22px; z-index: 3;
    background: var(--gold); color: var(--ink);
    font-weight: 700; font-size: 0.8rem;
    padding: 10px 14px; border-radius: 100px;
    transform: rotate(8deg);
}

/* ---------- Section headers ---------- */
.section { padding: 72px 0; }
.section-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 42px; gap: 24px; flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
.section-head p { color: var(--ink-soft); max-width: 36em; margin-top: 8px; }

/* ---------- Product grid ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 26px; }
.product-card {
    background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius);
    overflow: hidden; transition: transform .22s ease, box-shadow .22s ease;
    display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-thumb {
    aspect-ratio: 1/1; position: relative; display: grid; place-items: center;
    background: var(--paper-2);
}
.product-thumb .tee-svg { width: 70%; }
.product-tag {
    position: absolute; top: 12px; left: 12px;
    background: var(--ink); color: var(--paper);
    font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em;
    padding: 5px 10px; border-radius: 100px;
}
.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--coral); font-weight: 600; }
.product-name { font-family: var(--ff-display); font-size: 1.18rem; font-weight: 600; }
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 10px; }
.product-price { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 700; }

/* ---------- Category chips ---------- */
.chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.chip {
    font-size: 0.85rem; font-weight: 500; padding: 8px 18px; border-radius: 100px;
    border: 1.5px solid var(--line); background: var(--card); transition: .2s;
}
.chip:hover, .chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---------- Article cards ---------- */
.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 28px; }
.article-card {
    background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease;
}
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.article-banner {
    aspect-ratio: 16/9; display: grid; place-items: center; position: relative;
    color: #fff; font-family: var(--ff-display); font-size: 2.4rem; font-weight: 700;
}
.article-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.article-meta { display: flex; gap: 12px; align-items: center; font-size: 0.78rem; color: var(--ink-soft); }
.article-meta .badge { background: var(--paper-2); padding: 4px 11px; border-radius: 100px; font-weight: 600; color: var(--ink); }
.article-title { font-size: 1.32rem; line-height: 1.18; }
.article-excerpt { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.read-more { font-weight: 600; color: var(--coral); display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Job listing rows ---------- */
.job-list { display: flex; flex-direction: column; gap: 14px; }
.job-row {
    background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius);
    padding: 22px 26px; display: grid; grid-template-columns: auto 1fr auto auto; gap: 22px;
    align-items: center; transition: .2s;
}
.job-row:hover { border-color: var(--coral); transform: translateX(4px); }
.job-logo {
    width: 54px; height: 54px; border-radius: 12px; background: var(--moss);
    color: #fff; display: grid; place-items: center; font-family: var(--ff-display);
    font-weight: 700; font-size: 1.3rem;
}
.job-info h3 { font-size: 1.16rem; }
.job-info p { font-size: 0.86rem; color: var(--ink-soft); }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag { font-size: 0.72rem; padding: 4px 10px; border-radius: 100px; background: var(--paper-2); font-weight: 500; }

/* ---------- Article single ---------- */
.article-hero { padding: 60px 0 30px; }
.article-hero .container { max-width: 800px; }
.article-hero h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin: 16px 0; }
.prose { max-width: 760px; margin: 0 auto; padding: 20px 24px 40px; }
.prose p { margin-bottom: 1.3em; font-size: 1.08rem; color: #2b2820; }
.prose h2 { font-size: 1.8rem; margin: 1.4em 0 0.5em; }
.prose h3 { font-size: 1.35rem; margin: 1.3em 0 0.4em; }
.prose ul, .prose ol { margin: 0 0 1.3em 1.4em; }
.prose li { margin-bottom: 0.5em; }
.prose blockquote {
    border-left: 4px solid var(--coral); padding: 6px 0 6px 22px; margin: 1.4em 0;
    font-family: var(--ff-display); font-style: italic; font-size: 1.25rem; color: var(--moss);
}

/* ---------- Product single ---------- */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding: 50px 0; }
.product-detail .visual { aspect-ratio: 1/1; border-radius: 18px; background: var(--paper-2); display: grid; place-items: center; }
.product-detail h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 12px 0; }
.product-detail .price { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 700; margin: 16px 0; }
.size-row { display: flex; gap: 10px; margin: 18px 0; flex-wrap: wrap; }
.size-opt {
    width: 48px; height: 48px; border-radius: 10px; border: 1.5px solid var(--line);
    display: grid; place-items: center; font-weight: 600; cursor: pointer; background: var(--card); transition: .2s;
}
.size-opt:hover, .size-opt.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---------- Generic page / legal ---------- */
.page-hero { padding: 60px 0 20px; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.legal { max-width: 800px; margin: 0 auto; padding: 20px 24px 60px; }
.legal h2 { font-size: 1.5rem; margin: 1.6em 0 0.5em; }
.legal p, .legal li { color: #2b2820; margin-bottom: 1em; }
.legal ul { margin-left: 1.4em; }

/* ---------- Forms ---------- */
.form-card { background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 34px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 7px; }
.form-row input, .form-row textarea, .form-row select {
    width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
    font-family: var(--ff-body); font-size: 0.95rem; background: var(--paper); color: var(--ink);
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--coral); }
.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-weight: 500; }
.alert-success { background: #e3f1ea; color: #1f5440; border: 1.5px solid #b6dcc9; }
.alert-error { background: #fae3dc; color: #97331c; border: 1.5px solid #f0bdac; }

/* ---------- Newsletter band ---------- */
.band {
    background: var(--ink); color: var(--paper); border-radius: 24px;
    padding: 56px; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center;
}
.band h2 { font-size: 2.2rem; color: var(--paper); }
.band p { color: #cfc7b6; margin-top: 8px; }
.band-form { display: flex; gap: 10px; }
.band-form input { padding: 14px 18px; border-radius: 100px; border: none; min-width: 260px; font-family: var(--ff-body); }

/* ---------- Two column page layout ---------- */
.with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 44px; align-items: start; }
.sidebar-box { background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; }
.sidebar-box h3 { font-size: 1.1rem; margin-bottom: 14px; }
.sidebar-list { list-style: none; }
.sidebar-list li { padding: 8px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; font-size: 0.92rem; }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list .count { color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); padding: 64px 0 28px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { color: var(--paper); font-family: var(--ff-body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 16px; }
.footer-grid a { color: #cfc7b6; display: block; padding: 5px 0; font-size: 0.92rem; transition: .2s; }
.footer-grid a:hover { color: var(--coral); padding-left: 4px; }
.footer-brand .brand { color: var(--paper); margin-bottom: 14px; }
.footer-brand p { color: #cfc7b6; font-size: 0.92rem; max-width: 26em; }
.footer-bottom {
    border-top: 1px solid #34302a; margin-top: 44px; padding-top: 22px;
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    font-size: 0.84rem; color: #9b958a;
}

/* ---------- Breadcrumb ---------- */
.crumb { font-size: 0.84rem; color: var(--ink-soft); padding: 22px 0 0; }
.crumb a:hover { color: var(--coral); }

/* ---------- Empty state ---------- */
.empty { text-align: center; padding: 60px 20px; color: var(--ink-soft); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .hero-grid, .product-detail, .with-sidebar { grid-template-columns: 1fr; }
    .hero-visual { max-width: 420px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .band { grid-template-columns: 1fr; }
    .nav-links {
        position: fixed; inset: 76px 0 auto 0; background: var(--paper);
        flex-direction: column; padding: 24px; gap: 16px; border-bottom: 1.5px solid var(--line);
        transform: translateY(-120%); transition: transform .3s ease; align-items: flex-start;
    }
    .nav-links.open { transform: none; }
    .menu-toggle { display: flex; }
    .job-row { grid-template-columns: auto 1fr; }
    .job-row .job-apply, .job-row .job-tags { grid-column: 2; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
    .band { padding: 34px 24px; }
    .band-form { flex-direction: column; }
    .band-form input { min-width: 0; width: 100%; }
}

/* =========================================================
   Cart, checkout, orders & payment (e-commerce)
   ========================================================= */

/* Cart icon in header */
.cart-link { position: relative; display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 11px; border: 1.5px solid var(--line);
    background: var(--card); color: var(--ink); transition: border-color .2s, color .2s; }
.cart-link:hover, .cart-link.active { border-color: var(--ink); color: var(--coral); }
.cart-count { position: absolute; top: -7px; right: -7px; background: var(--coral); color: #fff;
    font-size: .7rem; font-weight: 700; min-width: 19px; height: 19px; border-radius: 100px;
    display: flex; align-items: center; justify-content: center; padding: 0 5px; font-family: var(--ff-body); }

/* Generic page header */
.page-head { margin-bottom: 28px; }
.page-head h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; }

/* Empty state */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state .empty-emoji { font-size: 3rem; margin-bottom: 6px; }
.empty-state h3 { font-size: 1.5rem; margin-bottom: 4px; }

/* Cart layout */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 30px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 0; background: var(--card);
    border: 1.5px solid var(--line); border-radius: var(--radius); padding: 6px 22px; }
.cart-row { display: grid; grid-template-columns: 70px 1fr auto auto auto;
    gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-row:last-of-type { border-bottom: none; }
.cart-thumb { width: 70px; height: 70px; border-radius: 10px; background: var(--paper-2);
    display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cart-thumb .tee-svg { width: 80%; height: 80%; }
.cart-name { font-weight: 600; font-size: 1.02rem; }
.cart-meta { color: var(--ink-soft); font-size: .84rem; margin-top: 2px; }
.cart-unit { color: var(--ink-soft); font-size: .82rem; margin-top: 2px; }
.qty-input { width: 64px; padding: 8px 10px; border: 1.5px solid var(--line); border-radius: 9px;
    font-family: var(--ff-body); font-size: .95rem; text-align: center; background: var(--paper); }
.qty-input:focus { outline: none; border-color: var(--coral); }
.cart-line-total { font-weight: 600; min-width: 70px; text-align: right; }
.cart-remove { background: none; border: none; font-size: 1.5rem; line-height: 1; color: var(--ink-soft);
    cursor: pointer; padding: 0 4px; transition: color .2s; }
.cart-remove:hover { color: var(--coral); }
.cart-actions { display: flex; gap: 10px; padding: 16px 0 8px; flex-wrap: wrap; }

/* Order summary card */
.cart-summary { position: sticky; top: 96px; }
.summary-card { background: var(--card); border: 1.5px solid var(--line);
    border-radius: var(--radius); padding: 26px; }
.summary-card h3 { font-size: 1.25rem; margin-bottom: 16px; }
.summary-line { display: flex; justify-content: space-between; padding: 7px 0;
    color: var(--ink-soft); font-size: .92rem; }
.summary-line small { color: var(--ink-soft); }
.summary-total { display: flex; justify-content: space-between; padding: 14px 0 4px;
    margin-top: 6px; border-top: 1.5px solid var(--line); font-weight: 700; font-size: 1.15rem; }
.pay-note { font-size: .8rem; color: var(--ink-soft); text-align: center; margin-top: 14px; line-height: 1.5; }

/* Quantity stepper (product page) */
.qty-stepper { display: inline-flex; align-items: center; gap: 0; border: 1.5px solid var(--line);
    border-radius: 10px; overflow: hidden; background: var(--card); }
.qty-stepper .qty-input { border: none; border-radius: 0; background: transparent; width: 54px; }
.qty-btn { border: none; background: var(--paper-2); width: 40px; height: 40px; font-size: 1.2rem;
    cursor: pointer; color: var(--ink); font-family: var(--ff-body); }
.qty-btn:hover { background: var(--coral); color: #fff; }

/* Checkout form */
.checkout-form { background: var(--card); border: 1.5px solid var(--line);
    border-radius: var(--radius); padding: 30px; }
.checkout-form h3 { font-size: 1.25rem; margin-bottom: 18px; }
.pay-method { display: flex; gap: 12px; align-items: flex-start; margin-top: 22px;
    padding: 16px; border: 1.5px solid var(--coral); border-radius: 12px; background: #fdf0eb; cursor: pointer; }
.pay-method input { margin-top: 3px; accent-color: var(--coral); }
.pay-method strong { display: block; }
.pay-method small { display: block; color: var(--ink-soft); font-size: .82rem; margin-top: 3px; }

/* Order confirmation */
.order-banner { text-align: center; padding: 40px 20px 30px; }
.order-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 2rem; margin: 0 auto 16px; font-weight: 700; }
.order-banner.ok .order-icon { background: #e3f1ea; color: #1f5440; }
.order-banner.fail .order-icon { background: #fae3dc; color: #97331c; }
.order-banner.pending .order-icon { background: #fcf2d9; color: #7a5b00; }
.order-banner h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.order-banner p { color: var(--ink-soft); margin-top: 8px; }
.order-card { background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius);
    padding: 26px; margin-top: 10px; }
.order-card-head { display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 16px; border-bottom: 1.5px solid var(--line); margin-bottom: 8px; }
.order-id { font-weight: 600; font-size: 1.05rem; }
.order-items { width: 100%; border-collapse: collapse; }
.order-items td { padding: 12px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.order-items .order-sub td { color: var(--ink-soft); font-size: .92rem; border-bottom: none; padding: 4px 0; }
.order-items .order-total td { font-weight: 700; font-size: 1.1rem; border-top: 1.5px solid var(--line);
    border-bottom: none; padding-top: 12px; }
.order-ship { margin-top: 22px; padding-top: 18px; border-top: 1.5px solid var(--line); }
.order-ship h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-soft); margin-bottom: 8px; }
.order-ship p { line-height: 1.7; }

/* Status pills */
.order-status { font-size: .74rem; font-weight: 700; padding: 4px 11px; border-radius: 100px;
    text-transform: uppercase; letter-spacing: .04em; font-family: var(--ff-body); }
.status-paid { background: #e3f1ea; color: #1f5440; }
.status-pending { background: #fcf2d9; color: #7a5b00; }
.status-failed, .status-cancelled { background: #fae3dc; color: #97331c; }

@media (max-width: 860px) {
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
}
@media (max-width: 560px) {
    .cart-row { grid-template-columns: 56px 1fr auto; grid-template-areas:
        "thumb info remove" "thumb qty total"; row-gap: 8px; }
    .cart-thumb { grid-area: thumb; width: 56px; height: 56px; }
    .cart-info { grid-area: info; }
    .cart-qty { grid-area: qty; }
    .cart-line-total { grid-area: total; }
    .cart-remove { grid-area: remove; align-self: start; }
}
