:root {
    --navy: #071b32;
    --navy-2: #12314f;
    --teal: #0093a6;
    --teal-dark: #006d7b;
    --ink: #162033;
    --body: #344054;
    --muted: #667085;
    --subtle: #8a97a8;
    --line: #d9e3ec;
    --line-soft: #edf2f6;
    --surface: #ffffff;
    --soft: #f7fafc;
    --soft-teal: #eaf8fa;
    --success: #16835b;
    --warning: #a16000;
    --radius: 8px;
    --shadow: 0 16px 40px rgba(7, 27, 50, .07);
    --container: 1180px;
    --gap: 22px;
    font-family: "Roboto", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--body);
    background: #fff;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.58;
    font-weight: 400;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button, .btn, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, strong { color: var(--navy); }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }

.site-header {
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
}

.mainbar {
    display: grid;
    grid-template-columns: 190px minmax(280px, 1fr) 290px;
    gap: 30px;
    align-items: center;
    padding: 26px 0 20px;
}

.logo {
    color: var(--navy);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

.logo span { color: var(--teal); }

.search {
    display: flex;
    position: relative;
    min-width: 0;
}

.search input {
    width: 100%;
    height: 50px;
    border: 1px solid var(--line);
    border-radius: var(--radius) 0 0 var(--radius);
    padding: 0 18px;
    color: var(--ink);
    font-weight: 400;
    outline: none;
}

.search input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0, 147, 166, .12); }

.search button {
    width: 62px;
    border: 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    color: #fff;
    background: var(--navy);
    cursor: pointer;
    display: grid;
    place-items: center;
}

.search button svg,
.socials svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.autocomplete {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 62px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: none;
}

.autocomplete.is-open { display: block; }
.autocomplete a { display: block; padding: 12px 14px; border-bottom: 1px solid var(--line-soft); }
.autocomplete a:hover { background: var(--soft); }

.quick-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: center;
    font-size: 14px;
}

.quick-nav a {
    color: var(--navy);
    font-weight: 700;
    line-height: 1.2;
}

.account-menu {
    position: relative;
}

.account-menu button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-weight: 800;
    cursor: pointer;
    padding: 0;
}

.account-menu img,
.account-menu button > span,
.profile-photo img,
.profile-photo span,
.review-head img,
.review-head > span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-grid;
    place-items: center;
    background: var(--soft-teal);
    color: var(--teal-dark);
    font-weight: 800;
}

.profile-photo {
    display: grid;
    margin: 16px 0 22px;
}

.profile-photo img,
.profile-photo span {
    width: min(220px, 100%);
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    object-fit: cover;
    font-size: 54px;
}

.account-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: 190px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    z-index: 30;
}

.account-menu.is-open .account-dropdown { display: block; }
.account-dropdown a { display: block; padding: 10px; border-radius: 6px; }
.account-dropdown a:hover { background: var(--soft-teal); color: var(--teal-dark); }

.quick-nav span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 400;
    margin-top: 3px;
}

.quick-nav .cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}

.cart-badge {
    display: inline-grid !important;
    place-items: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: var(--teal);
    color: #fff !important;
    border-radius: 999px;
    font-size: 12px !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

.categorybar {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 12px;
    padding: 0 0 18px;
}

.categorybar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    border-radius: var(--radius);
    color: var(--navy-2);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    padding: 6px 8px;
}

.categorybar a:hover,
.categorybar .is-accent {
    color: var(--teal-dark);
    background: var(--soft-teal);
}

.cat-icon {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1px solid rgba(7, 27, 50, .08);
    background: #0093a6;
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .72);
}

.categorybar a:nth-child(1) .cat-icon { background: #0093a6; }
.categorybar a:nth-child(2) .cat-icon { background: #3b82f6; }
.categorybar a:nth-child(3) .cat-icon { background: #7c3aed; }
.categorybar a:nth-child(4) .cat-icon { background: #ef9f24; }
.categorybar a:nth-child(5) .cat-icon { background: #0f766e; }
.categorybar a:nth-child(6) .cat-icon { background: #e11d48; }
.categorybar a:nth-child(7) .cat-icon { background: #16a34a; }
.categorybar a:nth-child(8) .cat-icon { background: #64748b; }
.categorybar a:nth-child(9) .cat-icon { background: #06b6d4; }

.notice {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.notice.success { background: #effbf4; border-color: #bce7ca; color: #125f38; }
.notice.error { background: #fff2f2; border-color: #ffd0d0; color: #8a1f1f; }

.hero {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    overflow: hidden;
    margin-top: 28px;
    border-radius: 12px;
    background: linear-gradient(90deg, #fff 0%, #fff 40%, #eef5f6 100%);
    min-height: 420px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.hero-copy {
    padding: 58px 40px;
    align-self: center;
}

.eyebrow {
    color: var(--teal-dark);
    font-weight: 800;
    letter-spacing: 0;
    font-size: 13px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.04;
    margin: 16px 0 18px;
    letter-spacing: 0;
    color: var(--navy);
    font-weight: 800;
}

.hero p,
.page-title p {
    color: var(--body);
    max-width: 540px;
    margin-bottom: 0;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: var(--radius);
    border: 1px solid var(--navy);
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
}

.btn.primary { background: var(--navy); color: #fff; }
.btn.primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.btn.secondary { background: #fff; color: var(--navy); }
.btn.secondary:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn.full { width: 100%; margin-top: 12px; }

.mini-benefits {
    display: flex;
    gap: 18px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 14px;
    flex-wrap: wrap;
}

.section { padding: 34px 0; }

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 18px;
}

.section-head h2,
.page-title h1 {
    font-size: 30px;
    line-height: 1.16;
    color: var(--navy);
    margin-bottom: 6px;
    font-weight: 800;
}

.section-head a {
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
}

.soft-band {
    background: #effbfc;
    border-block: 1px solid #d7eef2;
    margin-top: 18px;
}

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

.product-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(7, 27, 50, .04);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #bfd2df;
}

.product-image {
    position: relative;
    aspect-ratio: 1 / .86;
    background: var(--soft);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 58%;
}

.product-image span {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 7px 9px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .92);
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    overflow-wrap: anywhere;
    box-shadow: 0 8px 18px rgba(7, 27, 50, .08);
}

.product-body { padding: 14px; }

.product-name {
    display: block;
    min-height: 42px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
}

.product-body p {
    color: var(--muted);
    font-size: 13px;
    min-height: 38px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-body span {
    color: var(--subtle);
    font-size: 12px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.price-row strong {
    font-size: 20px;
    color: var(--navy);
    font-weight: 800;
}

.price-row button {
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-top: 28px;
    overflow: hidden;
}

.benefits article { padding: 22px; border-right: 1px solid var(--line); }
.benefits article:last-child { border-right: 0; }
.benefits strong { display: block; font-weight: 700; margin-bottom: 4px; }
.benefits span,
.footer p,
.footer a,
.safe-box,
small { color: var(--muted); }

.footer {
    margin-top: 26px;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 34px;
    padding: 38px 0 34px;
    align-items: start;
}

.footer-grid > div { min-width: 130px; flex: .9 1 150px; }
.footer-grid > div:first-child { flex: 1.45 1 280px; }
.footer-grid > div:last-child { flex: 1.1 1 240px; }

.footer h3 {
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer a {
    display: block;
    margin: 8px 0;
    font-size: 14px;
}

.footer a:hover { color: var(--teal-dark); }

.socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.socials a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    margin: 0;
}

.socials a:hover { background: var(--teal-dark); color: #fff; }
.socials svg { width: 18px; height: 18px; }
.socials svg path,
.socials svg rect,
.socials svg circle { stroke: currentColor; }

.newsletter { display: flex; }
.newsletter input {
    min-width: 0;
    flex: 1;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius) 0 0 var(--radius);
    padding: 0 12px;
}
.newsletter button {
    width: 44px;
    border: 0;
    background: var(--teal);
    color: #fff;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    color: #d9e6ef;
    background: var(--navy);
    width: 100%;
    max-width: none;
    padding-inline: max(20px, calc((100% - var(--container)) / 2));
    font-size: 14px;
}

.page-title { padding: 30px 0 18px; }
.page-title span,
.breadcrumb {
    color: var(--muted);
    font-size: 13px;
}

.filters {
    display: grid;
    grid-template-columns: 1fr 190px 190px auto;
    gap: 14px;
    margin-bottom: 24px;
}

input, select, textarea {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    background: #fff;
    color: var(--ink);
    width: 100%;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0, 147, 166, .12);
}

textarea { min-height: 130px; resize: vertical; }
.catalog-grid { grid-template-columns: repeat(4, 1fr); }

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 34px;
    align-items: start;
}

.gallery,
.buy-box,
.panel,
.order-summary,
.account-sidebar {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 6px 20px rgba(7, 27, 50, .04);
}

.gallery {
    padding: 18px;
    position: relative;
    display: grid;
    gap: 18px;
}

.product-main-image {
    position: relative;
    margin: 0;
}

.product-main-image > img {
    width: 100%;
    aspect-ratio: 1 / .72;
    object-fit: cover;
    border-radius: var(--radius);
}

.badge,
.status {
    display: inline-flex;
    padding: 6px 10px;
    border: 0;
    border-radius: 999px;
    background: #fff7e7;
    color: var(--warning);
    font-weight: 700;
    font-size: 13px;
}

.gallery .badge { position: absolute; top: 28px; left: 28px; }

.thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 14px 0;
}

.thumbs button {
    aspect-ratio: 1.45 / 1;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

.thumbs img { width: 100%; height: 100%; object-fit: cover; }

.buy-box { padding: 26px; }
.buy-box h1 {
    color: var(--navy);
    font-size: 36px;
    line-height: 1.16;
    margin: 10px 0 10px;
    font-weight: 800;
}

.stars { color: #f5b21a; margin-bottom: 12px; font-weight: 700; }
.stars span { color: var(--muted); font-weight: 400; }

.product-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    margin-top: 18px;
    line-height: 1.1;
}

.option-grid,
.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 18px 0;
}

label {
    display: grid;
    gap: 8px;
    font-weight: 700;
    color: var(--navy);
    font-size: 14px;
}

.upload-box,
.art-guidance,
.freight-card,
.safe-box {
    border: 1px dashed #9ab7c3;
    border-radius: var(--radius);
    padding: 16px;
    background: #fbfdfe;
}

.art-guidance {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: start;
    margin-top: 18px;
}

.art-guidance p { margin: 4px 0 0; color: var(--muted); line-height: 1.5; }
.art-guidance input[type="file"] {
    border-style: dashed;
    background: #fff;
}

.delivery-note {
    border: 1px solid #c8e7ee;
    border-radius: var(--radius);
    padding: 12px 14px;
    background: #f4fbfd;
    color: var(--text);
    font-size: 14px;
    line-height: 1.45;
}

.freight-card div { display: flex; gap: 12px; margin-top: 10px; }
.freight-card { margin-top: 2px; }
.freight-results {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px !important;
    margin-top: 12px !important;
}
.freight-results p {
    display: grid;
    gap: 2px;
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
}
.freight-results span { color: var(--muted); }

.cart-art {
    display: grid;
    grid-column: 2 / 4;
    gap: 8px;
    margin-top: -4px;
    padding: 10px 12px;
    border: 1px solid #d8e6ec;
    border-radius: var(--radius);
    background: #fbfdfe;
    width: min(100%, 560px);
    font-size: 13px;
}

.cart-art form,
.summary-shipping,
.summary-shipping-options,
.order-upload-form {
    display: grid;
    gap: 10px;
}

.cart-art input[type="file"] {
    padding: 8px;
    min-height: 38px;
    font-size: 13px;
}
.cart-art-form {
    grid-template-columns: minmax(250px, 1fr) auto;
    align-items: center;
}
.summary-shipping,
.summary-shipping-options {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}
.fulfillment {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 18px 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.3;
}

.tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.tabs article { padding: 22px; border-right: 1px solid var(--line); }
.tabs article:last-child { border-right: 0; }
.tabs h3 { font-size: 17px; font-weight: 800; }
.tabs p { margin-bottom: 0; }

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 24px;
    align-items: start;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 24px;
    color: var(--muted);
}

.steps span {
    border-top: 3px solid var(--line);
    padding-top: 10px;
    text-align: center;
}

.steps .active {
    border-color: var(--teal);
    color: var(--navy);
    font-weight: 800;
}

.panel,
.order-summary { padding: 22px; }

.cart-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) 160px 96px 80px;
    gap: 14px;
    align-items: start;
    border-top: 1px solid var(--line);
    padding: 20px 0;
}

.cart-item img {
    width: 96px;
    height: 78px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line-soft);
}

.cart-info {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.cart-info > strong {
    color: var(--navy);
    font-size: 16px;
    line-height: 1.25;
}

.cart-info p {
    margin: 0;
    max-width: 360px;
    color: var(--body);
    line-height: 1.45;
}

.cart-info small {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin-top: 4px;
    line-height: 1.3;
}

.cart-info small span {
    display: inline-flex;
    color: var(--muted);
}

.cart-price {
    justify-self: end;
    padding-top: 12px;
    color: var(--navy);
    white-space: nowrap;
}

.qty-form { display: flex; gap: 8px; align-items: center; }
.qty-form input {
    width: 58px;
    min-height: 42px;
    text-align: center;
    padding-inline: 8px;
}
.qty-form button,
.coupon-form button {
    min-height: 42px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
    padding: 0 14px;
    cursor: pointer;
    font-weight: 700;
}

.cart-remove {
    justify-self: end;
    padding-top: 12px;
}

.link-button {
    background: transparent;
    border: 0;
    color: var(--teal-dark);
    cursor: pointer;
    font-weight: 700;
}

.split-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
    gap: 16px;
}

.order-summary { position: sticky; top: 146px; }
.order-summary p,
.total {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
}

.total strong {
    font-size: 28px;
    color: var(--navy);
    font-weight: 800;
}

.coupon-form { display: flex; gap: 10px; margin: 16px 0; }
.form-stack { display: grid; gap: 18px; }

.payment-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.payment-options label {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 500;
}

.confirmation { padding: 60px 0; }
.center { text-align: center; max-width: 640px; margin: auto; }
.success-mark {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #def8e8;
    color: var(--success);
    font-weight: 800;
}

.next-steps { display: grid; gap: 8px; margin: 20px 0; color: var(--muted); }
.auth-page { min-height: 480px; display: grid; place-items: center; padding-top: 34px; }
.auth-card { max-width: 430px; width: 100%; display: grid; gap: 16px; }

.password-field {
    display: grid;
    grid-template-columns: 1fr 78px;
    gap: 8px;
}

.password-field button {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--navy);
    font-weight: 700;
    cursor: pointer;
}

.account-layout,
.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 26px;
    padding-top: 30px;
}

.account-sidebar { padding: 18px; position: sticky; top: 146px; }
.account-sidebar a,
.account-sidebar strong {
    display: block;
    padding: 12px;
    border-radius: var(--radius);
}
.account-sidebar a:hover { background: var(--soft-teal); color: var(--teal-dark); }

.stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 18px 0;
}

.stats article,
.quick-cards a {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 18px;
}

.stats strong {
    font-size: 32px;
    color: var(--navy);
    display: block;
    font-weight: 800;
}

.stats span { color: var(--muted); }

.quick-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.quick-cards a {
    font-weight: 800;
    color: var(--navy);
    min-height: 86px;
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.address { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.address.active { border-color: var(--teal); background: #f7fdfe; }
.orders-list {
    display: grid;
    gap: 12px;
}

.order-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px 122px;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.order-row:hover {
    border-color: #9cced7;
    box-shadow: 0 14px 34px rgba(7, 27, 50, .08);
    transform: translateY(-1px);
}

.order-row h2 {
    margin: 8px 0 4px;
    font-size: 20px;
    line-height: 1.25;
}

.order-row p,
.order-row-meta span {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.order-row-main {
    min-width: 0;
}

.order-row-main p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-row-meta {
    display: grid;
    gap: 4px;
    justify-items: end;
    text-align: right;
}

.order-row-meta strong {
    font-size: 20px;
    line-height: 1.2;
}

.order-row-action {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--teal-dark);
    font-weight: 800;
}

.muted-link {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--teal-dark);
    font-weight: 800;
}

.order-detail-total {
    display: inline-flex;
    align-items: center;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    font-size: 24px;
}

.order-card { display: grid; grid-template-columns: 1fr auto; gap: 16px; margin-bottom: 16px; }
.order-detail-card {
    margin-bottom: 20px;
}

.order-description {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    color: var(--muted);
}
.order-description p { margin: 0; }
.timeline {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    color: var(--muted);
    border-top: 2px solid #ccebd8;
    padding-top: 12px;
}

.timeline span {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.timeline strong {
    color: var(--navy);
    font-size: 12px;
}

.timeline small { font-size: 12px; }

.order-updates {
    grid-column: 1 / -1;
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: #fbfdfe;
}

.order-updates h3 {
    margin: 0 0 2px;
    font-size: 16px;
    line-height: 1.25;
}

.order-updates article {
    display: grid;
    gap: 6px;
    padding: 12px 0;
    border-top: 1px solid var(--line-soft);
}

.order-updates article:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.order-updates strong {
    display: block;
    font-size: 14px;
    line-height: 1.25;
}

.order-updates small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.order-updates p {
    margin: 0;
    color: var(--body);
    line-height: 1.5;
    overflow-wrap: break-word;
}

.order-detail-grid {
    display: grid;
    grid-template-columns: 1fr .72fr;
    gap: 18px;
    margin-bottom: 20px;
}

.order-detail-box {
    padding: 20px;
}

.order-detail-box h2 {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 1.25;
}

.account-order-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--line-soft);
}

.account-order-item:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.account-order-item small {
    display: block;
    color: var(--muted);
}

.account-order-item span {
    color: var(--navy);
    font-weight: 800;
    white-space: nowrap;
}

.order-money-list {
    display: grid;
    gap: 12px;
    margin: 0 0 18px;
}

.order-money-list div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--line-soft);
    padding-bottom: 10px;
}

.order-money-list dt {
    color: var(--muted);
    font-weight: 700;
}

.order-money-list dd {
    margin: 0;
    color: var(--navy);
    font-weight: 800;
}

.file-link {
    display: inline-flex;
    margin: 0 0 10px;
    color: var(--teal-dark);
    font-weight: 800;
}

.order-files,
.order-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.order-files span,
.order-files a {
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fbfdfe;
    color: var(--muted);
    font-size: 13px;
}

.order-upload-form {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    align-items: end;
}

.content-page { padding-bottom: 40px; }
.editorial { max-width: 840px; }
.editorial p { font-size: 17px; line-height: 1.72; color: var(--body); }
.editorial p:last-child { margin-bottom: 0; }

.contact-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 24px;
    align-items: start;
}

.contact-lines {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.contact-lines p {
    border-top: 1px solid var(--line);
    padding-top: 12px;
}

.consent-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--body);
    font-weight: 500;
}
.consent-line input { width: auto; margin-top: 5px; }

.payment-icon {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border-radius: 6px;
    background: var(--soft-teal);
    color: var(--teal-dark);
    font-weight: 800;
}

.auth-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(7, 27, 50, .35);
    padding: 24px;
    place-items: center;
}

.auth-modal.is-open { display: grid; }
.auth-modal-card {
    width: min(440px, 100%);
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.reviews-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 44px) / 3);
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.reviews-carousel::-webkit-scrollbar { display: none; }
.review-card {
    scroll-snap-align: start;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    background: #fff;
    min-height: 210px;
}
.review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.review-head small { display: block; }
.review-card p { margin-bottom: 0; }
.carousel-actions { display: flex; gap: 8px; }
.carousel-actions button {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    cursor: pointer;
    font-size: 22px;
}

.btn.danger,
.mini-action.danger {
    border-color: #f1c8c3;
    background: #fff7f6;
    color: #9a251d;
}

.responsive-table { overflow-x: auto; }
.admin-table { padding: 14px; }
.admin-table table {
    min-width: 760px;
    border-collapse: separate;
    border-spacing: 0 8px;
}
.admin-table th {
    padding: 10px 14px;
    border-bottom: 1px solid var(--line);
}
.admin-table td {
    background: #fff;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    vertical-align: middle;
}
.admin-table td:first-child {
    border-left: 1px solid var(--line-soft);
    border-radius: var(--radius) 0 0 var(--radius);
    width: 70px;
}
.admin-table td:last-child {
    border-right: 1px solid var(--line-soft);
    border-radius: 0 var(--radius) var(--radius) 0;
    width: 230px;
}
.wide-field { grid-column: 1 / -1; }
.admin-field-label {
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
}
.check-row { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--muted); }
.check-row input { width: auto; }
.table-actions { display: flex; gap: 8px; align-items: center; white-space: nowrap; }
.table-actions a { color: var(--teal-dark); font-weight: 700; }
.mini-action {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--teal-dark);
    font-weight: 800;
    cursor: pointer;
}
.mini-action.danger { color: #9a251d; }

.product-admin-form {
    gap: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.product-admin-form > .btn.primary {
    justify-self: end;
    min-width: 180px;
}

.product-admin-sections {
    display: grid;
    gap: 18px;
}

.admin-product-section {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: linear-gradient(180deg, #fff 0%, #fbfdfe 100%);
    box-shadow: 0 12px 34px rgba(7, 27, 50, .05);
    overflow: hidden;
}

.admin-product-section-head {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: start;
    padding: 20px 22px;
    border-bottom: 1px solid var(--line-soft);
    background: #f8fcfd;
}

.admin-product-section-head > span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--soft-teal);
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 800;
}

.admin-product-section-head h2,
.mini-section-head h3 {
    margin: 0 0 4px;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
}

.admin-product-section-head p,
.mini-section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.admin-product-section-body {
    padding: 22px;
}

.admin-product-section-body.form-grid {
    margin: 0;
}

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

.product-admin-form .admin-field {
    align-content: start;
    padding: 0;
}

.product-admin-form input,
.product-admin-form select,
.product-admin-form textarea {
    min-height: 48px;
    border-color: #cfdce7;
    background: #fff;
    font-weight: 500;
}

.product-admin-form textarea {
    min-height: 150px;
}

.product-admin-form input[type="file"] {
    min-height: 96px;
    padding: 22px;
    border-style: dashed;
    border-color: #95bfcb;
    background: #f7fdfe;
    color: var(--navy-2);
    cursor: pointer;
}

.admin-order-detail {
    display: grid;
    gap: 18px;
}

.admin-order-hero {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f3fbfc 100%);
}

.admin-order-hero h2 {
    margin: 4px 0 6px;
    font-size: 28px;
    line-height: 1.15;
}

.admin-order-hero p,
.admin-order-panel-head p,
.admin-file-list small,
.admin-comment small,
.admin-order-items small {
    color: var(--muted);
}

.admin-order-total {
    min-width: 180px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    text-align: right;
}

.admin-order-total span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.admin-order-total strong {
    display: block;
    font-size: 26px;
    line-height: 1.15;
}

.admin-order-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.admin-order-card {
    padding: 18px;
}

.admin-order-card h3,
.admin-order-workspace h3 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.25;
}

.admin-order-card dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.admin-order-card dl div {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.admin-order-card dt {
    color: var(--subtle);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.admin-order-card dd {
    margin: 0;
    color: var(--ink);
    font-weight: 500;
    overflow-wrap: break-word;
    word-break: normal;
}

.admin-order-card a {
    color: var(--teal-dark);
    font-weight: 800;
}

.admin-order-workspace {
    padding: 22px;
}

.admin-order-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line-soft);
}

.admin-order-panel-head h3,
.admin-order-panel-head p {
    margin: 0;
}

.admin-order-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.admin-order-form label,
.admin-order-upload,
.admin-comment-form {
    display: grid;
    gap: 8px;
}

.admin-order-form label span {
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
}

.admin-order-form input,
.admin-order-form select,
.admin-order-upload input,
.admin-order-upload select,
.admin-comment-form textarea,
.admin-comment textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #cfdce7;
    border-radius: var(--radius);
    padding: 11px 13px;
    background: #fff;
    color: var(--ink);
    font-weight: 500;
}

.admin-order-form .btn {
    align-self: end;
    min-height: 46px;
}

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

.admin-order-items article,
.admin-file-list article,
.admin-comment {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: #fff;
}

.admin-order-items p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.admin-order-two-columns {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 18px;
    align-items: start;
}

.admin-order-upload {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    margin-bottom: 16px;
    padding: 12px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: #fbfdfe;
}

.admin-order-upload label {
    display: grid;
    gap: 6px;
}

.admin-order-upload label span,
.admin-upload-file span {
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.admin-upload-file {
    grid-column: 1 / -1;
}

.admin-file-list,
.admin-comment-list {
    display: grid;
    gap: 10px;
}

.admin-file-list article > div,
.admin-comment > div,
.admin-order-items article > div {
    min-width: 0;
}

.admin-file-list a {
    color: var(--navy);
    overflow-wrap: anywhere;
}

.admin-comment-form {
    margin-bottom: 16px;
}

.admin-comment-form textarea,
.admin-comment textarea {
    min-height: 94px;
    resize: vertical;
}

.admin-comment {
    display: grid;
    grid-template-columns: 1fr;
}

.admin-comment > div,
.admin-comment p,
.admin-comment form:first-of-type,
.admin-history-delete {
    grid-column: 1 / -1;
}

.admin-comment p {
    margin: 0;
    color: var(--body);
}

.admin-comment-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.admin-history-delete {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.product-admin-form .check-row {
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #cfdce7;
    border-radius: var(--radius);
    background: #fff;
    color: var(--navy);
    font-weight: 700;
}

.product-admin-form .check-row input {
    width: 18px;
    height: 18px;
    accent-color: var(--teal);
}

.publish-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 22px;
}

.current-assets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.current-assets article {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: #fff;
}

.current-assets img {
    width: 84px;
    height: 66px;
    object-fit: cover;
    border-radius: 7px;
    border: 1px solid var(--line);
}

.current-assets strong {
    display: block;
    margin-bottom: 3px;
    color: var(--navy);
    font-size: 14px;
}

.current-assets small {
    display: block;
    overflow-wrap: anywhere;
    line-height: 1.35;
}

.file-chip {
    display: inline-grid;
    place-items: center;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 7px;
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.mini-section-head {
    margin-bottom: 12px;
}

.admin-gallery {
    padding: 16px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: #fff;
}

.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.admin-gallery-grid label {
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: #fbfdfe;
}

.admin-gallery-grid img {
    width: 100%;
    aspect-ratio: 1.2 / 1;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.variation-builder {
    display: grid;
    gap: 16px;
    padding: 16px;
    border: 1px solid #cfe5eb;
    border-radius: var(--radius);
    background: #f7fdfe;
}

.variation-builder-head,
.variation-group-title,
.variation-option-row,
.variation-option-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
}

.variation-builder-head span {
    color: var(--muted);
    font-weight: 500;
    line-height: 1.45;
}

.variation-group {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid #cfdce7;
    border-radius: var(--radius);
    background: #fff;
}

.variation-option-head,
.variation-option-row {
    grid-template-columns: minmax(180px, 1fr) minmax(130px, 180px) auto;
}

.variation-option-row {
    padding: 10px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: #fbfdfe;
}

.variation-option-head {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.admin-order-board {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 12px 0 20px;
}

.admin-order-board article {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 6px 20px rgba(7, 27, 50, .04);
}

.admin-order-board strong {
    display: block;
    color: var(--navy);
    font-size: 26px;
    line-height: 1;
    margin-bottom: 6px;
}

.account-files-table { padding: 14px; }

.payment-callout {
    display: grid;
    gap: 12px;
    margin: 20px auto;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fbfdfe;
    text-align: left;
}

.payment-callout h2 { margin: 0; font-size: 20px; }
.payment-callout .btn { width: fit-content; }
.pix-qrcode {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 10px;
}

.cookie-consent {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    display: none;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.cookie-consent.is-visible { display: grid; }
.cookie-consent p { margin: 0; color: var(--muted); line-height: 1.45; }
.cookie-consent .actions { display: flex; gap: 10px; }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
th, td { text-align: left; padding: 14px; border-bottom: 1px solid var(--line); }
th { color: var(--navy); font-weight: 800; }
.empty { border: 1px dashed var(--line); border-radius: var(--radius); padding: 24px; color: var(--muted); background: #fbfdfe; }

@media (max-width: 1100px) {
    .product-grid { grid-template-columns: repeat(4, 1fr); }
    .mainbar { grid-template-columns: 170px 1fr 260px; gap: 20px; }
}

@media (max-width: 980px) {
    .mainbar { grid-template-columns: 1fr; gap: 16px; }
    .quick-nav { grid-template-columns: repeat(3, max-content); justify-content: space-between; }
    .categorybar { display: flex; overflow-x: auto; padding-bottom: 14px; }
    .categorybar a { white-space: nowrap; padding: 0 12px; }
    .hero,
    .product-detail,
    .checkout-grid,
    .account-layout,
    .admin-layout,
    .two-col,
    .contact-grid { grid-template-columns: 1fr; }
    .hero img { min-height: 280px; order: -1; }
    .hero-copy { padding: 30px; }
    .hero h1 { font-size: 40px; }
    .product-grid,
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits,
    .stats,
    .quick-cards,
    .tabs,
    .payment-options,
    .order-description,
    .order-detail-grid,
    .admin-order-board,
    .admin-order-summary-grid,
    .admin-order-form,
    .admin-order-two-columns { grid-template-columns: repeat(2, 1fr); }
    .footer-grid,
    .footer-grid.has-account { flex-wrap: wrap; }
    .reviews-carousel { grid-auto-columns: calc((100% - 22px) / 2); }
    .order-summary,
    .account-sidebar { position: static; }
    .cart-item { grid-template-columns: 84px minmax(0, 1fr) auto; }
    .cart-item img { width: 84px; height: 72px; }
    .cart-info { grid-column: 2 / -1; }
    .qty-form { grid-column: 2; }
    .cart-item > strong,
    .cart-remove { grid-column: 3; }
    .cart-art { grid-column: 2 / -1; }
    .product-admin-form .form-grid,
    .current-assets,
    .publish-grid { grid-template-columns: 1fr; }
    .admin-product-section-head { grid-template-columns: 1fr; }
    .admin-order-upload { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .container { width: min(100% - 24px, var(--container)); }
    .logo { font-size: 30px; }
    .quick-nav { font-size: 12px; gap: 8px; }
    .hero { margin-top: 18px; }
    .hero h1 { font-size: 34px; }
    .product-grid,
    .catalog-grid,
    .benefits,
    .stats,
    .quick-cards,
    .tabs,
    .option-grid,
    .form-grid,
    .order-row,
    .order-detail-grid,
    .admin-order-summary-grid,
    .admin-order-form,
    .admin-order-two-columns,
    .fulfillment,
    .steps { grid-template-columns: 1fr; }
    .footer-grid,
    .footer-grid.has-account { flex-direction: column; }
    .filters { grid-template-columns: 1fr; }
    .footer-bottom { display: grid; gap: 8px; }
    .section-head { align-items: start; flex-direction: column; }
    .freight-card div,
    .coupon-form,
    .split-actions { flex-direction: column; align-items: stretch; }
    .art-guidance,
    .order-upload-form,
    .cookie-consent { grid-template-columns: 1fr; }
    .cart-item {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 12px;
    }
    .cart-item img { width: 72px; height: 62px; }
    .cart-info { grid-column: 2; }
    .cart-art { grid-column: 1 / -1; }
    .qty-form,
    .cart-price,
    .cart-remove {
        grid-column: 1 / -1;
        justify-self: stretch;
        padding-top: 0;
    }
    .order-row-main p {
        white-space: normal;
    }
    .order-row-meta {
        justify-items: start;
        text-align: left;
    }
    .order-row-action {
        width: 100%;
    }
    .admin-order-hero,
    .admin-order-items article,
    .admin-file-list article {
        display: grid;
        text-align: left;
    }
    .admin-order-total {
        width: 100%;
        text-align: left;
    }
    .cart-price { text-align: right; }
    .cart-art-form { grid-template-columns: 1fr; }
    .variation-builder-head,
    .variation-group-title,
    .variation-option-row,
    .variation-option-head { grid-template-columns: 1fr; }
    .freight-results,
    .reviews-carousel,
    .order-description,
    .admin-order-board { grid-template-columns: 1fr; grid-auto-columns: 100%; }
}
