:root {
    --ink: #172033;
    --muted: #68748a;
    --line: rgba(79, 112, 145, 0.18);
    --blue: #9ed8ff;
    --blue-strong: #38a8ef;
    --orange: #ffb26b;
    --orange-strong: #ff8a3d;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.64);
    --shadow: 0 22px 70px rgba(49, 97, 145, 0.16);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    margin: 0;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at center, rgba(54, 152, 222, 0.18) 1px, transparent 1.35px),
        radial-gradient(circle at 18% 12%, rgba(158, 216, 255, 0.72) 0, rgba(255, 178, 107, 0.34) 32%, rgba(255, 255, 255, 0) 68%),
        radial-gradient(circle at 82% 24%, rgba(255, 178, 107, 0.46) 0, rgba(158, 216, 255, 0.25) 42%, rgba(255, 255, 255, 0) 72%),
        linear-gradient(135deg, #eaf8ff 0%, #fff1e2 46%, #ffffff 100%),
        #f8fcff;
    background-size: 24px 24px, auto, auto, auto, auto;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at center, rgba(255, 178, 107, 0.2) 1px, transparent 1.35px),
        radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.82) 0, rgba(158, 216, 255, 0.18) 36%, transparent 70%);
    background-size: 42px 42px, auto;
    mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
    pointer-events: none;
}

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

button,
input,
textarea {
    font: inherit;
}

.site-header {
    position: fixed;
    z-index: 30;
    top: 22px;
    left: 50%;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
    align-items: center;
    width: min(1120px, calc(100% - 32px));
    transform: translateX(-50%);
    pointer-events: none;
}

.brand,
.cart-button,
.nav-island,
.account-button {
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.78);
    background: var(--glass);
    box-shadow: 0 18px 45px rgba(59, 104, 143, 0.12);
    backdrop-filter: blur(20px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 8px 18px 8px 8px;
    border-radius: 999px;
    font-weight: 760;
}

.brand.mini {
    min-height: 0;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-strong), var(--orange));
    font-size: 13px;
    letter-spacing: 0;
}

.nav-island {
    justify-self: center;
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 7px;
    border-radius: 999px;
}

.nav-island a {
    padding: 13px 17px;
    border-radius: 999px;
    color: #304058;
    font-weight: 680;
    transition: background 180ms ease, color 180ms ease;
}

.nav-island a:hover {
    color: #0f2238;
    background: rgba(255, 255, 255, 0.72);
}

.site-search {
    display: flex;
    align-items: center;
    gap: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transition: max-width 240ms ease, background 240ms ease;
    max-width: 44px;
}

.site-search.is-open {
    max-width: 250px;
    background: rgba(255, 255, 255, 0.82);
}

.nav-icon,
.account-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
}

.nav-icon span {
    position: relative;
    width: 15px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.nav-icon span::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 2px;
    right: -6px;
    bottom: -3px;
    background: currentColor;
    transform: rotate(45deg);
    border-radius: 999px;
}

.site-search input {
    width: 190px;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 14px 0 0;
    background: transparent;
}

.account-menu {
    position: relative;
    pointer-events: auto;
}

.account-button {
    background: var(--glass);
    box-shadow: 0 18px 45px rgba(59, 104, 143, 0.12);
}

.account-glyph,
.account-glyph::before {
    display: block;
    border: 2px solid currentColor;
}

.account-glyph {
    width: 18px;
    height: 10px;
    border-radius: 10px 10px 8px 8px;
    border-top: 0;
    transform: translateY(5px);
}

.account-glyph::before {
    content: "";
    width: 9px;
    height: 9px;
    margin: -14px auto 0;
    border-radius: 50%;
}

.account-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    min-width: 180px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.account-dropdown.is-open {
    display: grid;
}

.account-dropdown a {
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 750;
}

.account-dropdown a:hover {
    background: #eef8ff;
}

.cart-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 8px 10px 8px 18px;
    border-radius: 999px;
    color: var(--ink);
    cursor: pointer;
}

.cart-button strong {
    display: grid;
    min-width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--ink);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 26px;
    align-items: center;
    min-height: 100vh;
    padding: 150px max(24px, calc((100vw - 1180px) / 2)) 74px;
    overflow: hidden;
}

.marquee {
    position: absolute;
    top: 96px;
    left: 0;
    display: flex;
    width: max-content;
    color: rgba(23, 32, 51, 0.06);
    font-size: clamp(76px, 12vw, 180px);
    font-weight: 900;
    line-height: 0.9;
    white-space: nowrap;
    animation: marquee 26s linear infinite;
    pointer-events: none;
}

.marquee span {
    padding-right: 28px;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    color: #2c80b5;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 20px;
    font-size: clamp(38px, 5.8vw, 76px);
    line-height: 0.94;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(28px, 3.8vw, 48px);
    line-height: 1;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 8px;
    font-size: 19px;
    line-height: 1.1;
}

p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.hero-copy p {
    max-width: 560px;
}

.hero-actions,
.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 790;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue-strong), var(--orange-strong));
    box-shadow: 0 18px 38px rgba(255, 138, 61, 0.24);
}

.button-ghost,
.tiny {
    color: #183048;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(76, 125, 166, 0.18);
}

.tiny {
    min-height: 40px;
    padding: 0 15px;
    font-size: 14px;
}

.hero-carousel {
    position: relative;
    height: min(640px, 68vh);
    min-height: 440px;
    transform: rotate(-9deg);
}

.hero-carousel::before {
    content: "";
    position: absolute;
    inset: 12% 16%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(158, 216, 255, 0.44), rgba(255, 178, 107, 0.18), transparent 70%);
    filter: blur(8px);
}

.hero-carousel img {
    position: absolute;
    width: clamp(154px, 17vw, 250px);
    aspect-ratio: 1;
    object-fit: contain;
    filter: drop-shadow(0 28px 28px rgba(48, 89, 130, 0.2));
    opacity: 0;
    animation: diagonalProduct 16s ease-in-out infinite;
    animation-delay: calc(var(--i) * -2s);
}

.hero-carousel img:nth-child(1),
.hero-carousel img:nth-child(5) { left: 8%; top: 8%; }
.hero-carousel img:nth-child(2),
.hero-carousel img:nth-child(6) { left: 50%; top: 12%; }
.hero-carousel img:nth-child(3),
.hero-carousel img:nth-child(7) { left: 22%; top: 44%; }
.hero-carousel img:nth-child(4),
.hero-carousel img:nth-child(8) { left: 62%; top: 50%; }

@keyframes diagonalProduct {
    0%, 100% { opacity: 0; transform: translate3d(-28px, 38px, 0) scale(0.86) rotate(8deg); }
    15%, 46% { opacity: 1; transform: translate3d(0, 0, 0) scale(1) rotate(8deg); }
    62% { opacity: 0; transform: translate3d(34px, -42px, 0) scale(1.08) rotate(8deg); }
}

.section,
.shop-band,
.contact-band,
.site-footer,
.fallback-page {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.section {
    padding: 78px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
    gap: 32px;
    align-items: end;
    margin-bottom: 28px;
}

.section-heading p {
    margin-bottom: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.62);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.product-media {
    display: grid;
    aspect-ratio: 1;
    place-items: center;
    padding: 26px;
    background:
        linear-gradient(rgba(67, 139, 191, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(67, 139, 191, 0.08) 1px, transparent 1px),
        rgba(255, 255, 255, 0.5);
    background-size: 26px 26px;
}

.product-media img {
    width: 88%;
    height: 88%;
    object-fit: contain;
    filter: drop-shadow(0 18px 20px rgba(38, 81, 120, 0.18));
    transition: transform 220ms ease;
}

.product-card:hover .product-media img {
    transform: translateY(-6px) scale(1.04);
}

.product-info {
    display: grid;
    gap: 18px;
    min-height: 216px;
    padding: 22px;
}

.product-info span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #2d86bc;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-info p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.45;
}

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

.product-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ghost-tiny {
    background: rgba(255, 255, 255, 0.52);
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: -8px 0 24px;
}

.filter-pill {
    min-height: 36px;
    padding: 0 13px;
    border: 1px solid rgba(76, 125, 166, 0.18);
    border-radius: 999px;
    color: #304058;
    background: rgba(255, 255, 255, 0.58);
    font-weight: 760;
    cursor: pointer;
}

.filter-pill.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--blue-strong), var(--orange-strong));
}

.product-buy strong {
    font-size: 20px;
}

.shop-band,
.contact-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin-top: 36px;
    padding: 44px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(158, 216, 255, 0.28), rgba(255, 178, 107, 0.18));
    box-shadow: var(--shadow);
}

.contact-band {
    margin-bottom: 80px;
}

.contact-cards {
    justify-content: flex-end;
}

.contact-cards a {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    padding: 0 20px;
    border: 1px solid rgba(76, 125, 166, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    font-weight: 760;
}

.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
}

.cart-drawer.is-open {
    display: block;
}

.cart-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(232, 244, 255, 0.68);
    backdrop-filter: blur(10px);
}

.cart-panel {
    position: absolute;
    top: 16px;
    right: 16px;
    bottom: 16px;
    display: flex;
    width: min(760px, calc(100% - 32px));
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 24px 80px rgba(43, 89, 130, 0.24);
    overflow: auto;
}

.cart-panel__head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
}

.icon-button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #eef8ff;
    cursor: pointer;
}

.cart-items {
    display: grid;
    gap: 8px;
    max-height: 260px;
    overflow: auto;
}

.cart-item {
    display: grid;
    grid-template-columns: 66px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.cart-item img {
    width: 66px;
    height: 66px;
    object-fit: contain;
}

.cart-item h3 {
    margin: 0 0 5px;
    font-size: 15px;
}

.cart-item p {
    margin: 0;
    font-size: 13px;
}

.qty-controls {
    display: flex;
    gap: 4px;
    align-items: center;
}

.qty-controls button {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: #eef8ff;
    cursor: pointer;
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 18px;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 14px;
    align-items: start;
}

.cart-totals {
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.cart-totals p {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    font-size: 14px;
}

.checkout-form {
    display: grid;
    gap: 12px;
}

.checkout-form.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.checkout-form .wide {
    grid-column: span 3;
}

.checkout-form label {
    display: grid;
    gap: 7px;
    color: #2f3d50;
    font-size: 14px;
    font-weight: 750;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 13px 14px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
    resize: vertical;
}

.pretty-check {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center;
    gap: 10px !important;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
}

.pretty-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pretty-check span {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 1px solid rgba(56, 168, 239, 0.42);
    border-radius: 8px;
    background: #fff;
}

.pretty-check input:checked + span {
    background: linear-gradient(135deg, var(--blue-strong), var(--orange-strong));
}

.pretty-check input:checked + span::after {
    content: "";
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
}

.product-modal.is-open {
    display: block;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(233, 246, 255, 0.72);
    backdrop-filter: blur(12px);
}

.modal-card {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
    gap: 24px;
    width: min(920px, calc(100% - 32px));
    max-height: calc(100vh - 40px);
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 28px 80px rgba(43, 89, 130, 0.24);
    transform: translate(-50%, -50%);
    overflow: auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
}

.modal-media {
    display: grid;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 24px;
    background:
        radial-gradient(circle at center, rgba(54, 152, 222, 0.14) 1px, transparent 1.35px),
        linear-gradient(135deg, rgba(158, 216, 255, 0.24), rgba(255, 178, 107, 0.16), rgba(255, 255, 255, 0.78));
    background-size: 24px 24px, auto;
}

.modal-media img {
    width: 82%;
    height: 82%;
    object-fit: contain;
    filter: drop-shadow(0 22px 24px rgba(38, 81, 120, 0.18));
}

.modal-copy {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 12px 48px 12px 0;
}

.modal-meta,
.share-icons,
.support-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modal-meta span,
.modal-meta strong,
.share-icons a,
.support-links a {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 780;
}

.share-row {
    display: grid;
    gap: 10px;
}

.share-icons {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 220ms ease, opacity 220ms ease;
}

.share-row.is-open .share-icons {
    max-height: 120px;
    opacity: 1;
}

.account-page {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 150px 0 80px;
}

.account-hero {
    max-width: 760px;
    margin-bottom: 30px;
}

.auth-grid,
.customer-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.customer-panels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.auth-card,
.customer-panel {
    display: grid;
    gap: 14px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.auth-card label,
.customer-panel label {
    display: grid;
    gap: 7px;
    font-weight: 750;
}

.auth-card input,
.customer-panel textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 13px 14px;
    background: rgba(255, 255, 255, 0.82);
}

.customer-panel dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

.customer-panel dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.customer-panel dd {
    margin: -6px 0 6px;
    font-weight: 740;
}

.order-list {
    display: grid;
    gap: 10px;
}

.order-list div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.66);
}

.form-message {
    margin: 0;
    font-size: 14px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 28px 0 42px;
    border-top: 1px solid var(--line);
}

.site-footer p {
    margin: 0;
    font-size: 14px;
}

.fallback-page {
    padding-top: 160px;
}

@media (max-width: 920px) {
    .site-header {
        grid-template-columns: 1fr auto auto;
    }

    .nav-island {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        overflow-x: auto;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 186px;
    }

    .hero-carousel {
        height: 430px;
        min-height: 0;
    }

    .section-heading,
    .shop-band,
    .contact-band {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .auth-grid,
    .customer-panels {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-cards {
        justify-content: flex-start;
    }

    .cart-layout,
    .modal-card {
        grid-template-columns: 1fr;
    }

    .checkout-form.compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .checkout-form .wide {
        grid-column: span 2;
    }
}

@media (max-width: 620px) {
    .site-header {
        top: 12px;
        width: calc(100% - 20px);
        gap: 8px;
    }

    .brand {
        padding-right: 12px;
    }

    .brand span:last-child,
    .cart-button span {
        display: none;
    }

    .nav-island {
        justify-content: flex-start;
        min-height: 48px;
        padding: 4px;
    }

    .nav-island a {
        padding: 10px 13px;
        font-size: 14px;
    }

    .hero {
        min-height: auto;
        padding: 154px 18px 48px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }

    .hero-carousel {
        height: 340px;
        transform: rotate(-7deg);
    }

    .hero-carousel img {
        width: 150px;
    }

    .product-grid,
    .auth-grid,
    .customer-panels,
    .checkout-form.compact {
        grid-template-columns: 1fr;
    }

    .checkout-form .wide {
        grid-column: span 1;
    }

    .cart-panel {
        padding: 18px;
    }

    .cart-item {
        grid-template-columns: 54px 1fr;
    }

    .qty-controls {
        grid-column: 2;
    }

    .modal-copy {
        padding-right: 0;
    }

    .shop-band,
    .contact-band {
        padding: 28px;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
