:root {
    --green: #2fb344;
    --green-dark: #16842c;
    --ink: #111827;
    --muted: #667085;
    --line: #e6e9ee;
    --surface: #ffffff;
    --soft: #f4f5f7;
    --dark: #061522;
    --warning: #fff7e6;
    --warning-line: #ffd88a;
    --danger: #fff1f2;
    --danger-line: #fecdd3;
    --radius: 8px;
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: #fff;
}

body {
    font-size: 14px;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(100% - 32px, 1180px);
    margin-inline: auto;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20;
}

.header-top {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: max-content;
}

.brand-logo {
    width: 220px;
    height: auto;
    display: block;
}

.footer-logo {
    width: 210px;
    filter: brightness(1.35);
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 3px solid #d4f3da;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.brand-name {
    display: block;
    font-size: 38px;
    line-height: .8;
    font-weight: 800;
    color: #4a4f55;
    letter-spacing: 0;
}

.brand-tag {
    display: block;
    color: #7cc343;
    font-size: 13px;
    text-align: center;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex: 1;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.nav-link {
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--green-dark);
    border-color: var(--green);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-chevron {
    width: 10px;
    height: 7px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .15s ease;
}

.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown:focus-within .nav-dropdown-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    width: 240px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 32px rgba(16, 24, 40, .14);
    display: grid;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
    z-index: 50;
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    inset: -14px 0 auto;
    height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-status {
    padding: 10px 12px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: none;
}

.nav-dropdown-menu a {
    padding: 10px 12px;
    border-radius: 6px;
    color: #344054;
    font-size: 13px;
    font-weight: 800;
    text-transform: none;
}

.nav-dropdown-menu a:hover {
    background: #eefaf0;
    color: var(--green-dark);
}

.mobile-menu-toggle,
.mobile-menu-panel {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
}

.icon-action,
.wallet-pill,
.avatar-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 999px;
    color: #344054;
}

.icon-action {
    gap: 6px;
    position: relative;
}

.wallet-pill {
    gap: 8px;
    padding: 0 12px;
    border: 1px solid var(--green);
    color: var(--green-dark);
}

.avatar-link {
    width: 38px;
    background: var(--soft);
}

.icon-box {
    width: 32px;
    height: 28px;
    border: 2px solid var(--green);
    border-radius: 6px;
    display: grid;
    place-items: center;
    color: var(--green-dark);
    font-size: 11px;
}

.icon-box svg,
.cart-icon svg {
    width: 19px;
    height: 19px;
    display: block;
    fill: currentColor;
}

.wallet-icon {
    background: var(--green);
    color: #fff;
}

.cart-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--soft);
    color: #344054;
}

.cart-badge {
    position: absolute;
    top: 1px;
    right: -6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 11px;
}

.header-search-row {
    display: grid;
    grid-template-columns: 285px 1fr;
    gap: 24px;
    padding-bottom: 16px;
}

.category-trigger {
    height: 44px;
    border-radius: 5px;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
    font-weight: 900;
    text-transform: uppercase;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 22px;
    height: 3px;
    border-radius: 3px;
    background: #fff;
    content: "";
}

.hamburger::before {
    transform: translateY(-7px);
}

.hamburger::after {
    transform: translateY(4px);
}

.search-bar {
    display: grid;
    grid-template-columns: 1fr 142px;
    height: 44px;
}

.search-bar input,
.field-input,
.search-bar button,
.btn,
.filter-panel select,
.toolbar select {
    border: 1px solid var(--line);
    outline: none;
}

.search-bar input {
    padding: 0 18px;
    border-radius: 5px 0 0 5px;
}

.search-bar button {
    border-radius: 0 5px 5px 0;
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    font-weight: 900;
    text-transform: uppercase;
}

.page-section,
.section {
    padding: 28px 0;
}

.narrow {
    max-width: 820px;
}

.hero-slider {
    width: 100%;
    aspect-ratio: 2048 / 1234;
    background: #000;
    overflow: hidden;
    position: relative;
}

.hero-banner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity .6s ease-in-out;
}

.hero-banner.active {
    opacity: 1;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.65);
    color: #fff;
    background: rgba(0,0,0,.5);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
    background: rgba(0,0,0,.8);
}

.hero-arrow.previous {
    left: 20px;
}

.hero-arrow.next {
    right: 20px;
}

.hero-dots {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #fff;
    background: rgba(0,0,0,.45);
    cursor: pointer;
}

.hero-dot.active {
    background: #fff;
}

@media (max-width: 600px) {
    .hero-arrow {
        width: 34px;
        height: 34px;
        font-size: 28px;
    }

    .hero-arrow.previous {
        left: 8px;
    }

    .hero-arrow.next {
        right: 8px;
    }

    .hero-dots {
        bottom: 10px;
    }
}

.page-hero {
    background: #e9ebee;
    border-radius: 16px;
    padding: 30px 34px;
    margin: 14px 0 24px;
}

.page-hero.centered {
    text-align: center;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    text-transform: uppercase;
}

.page-hero p {
    margin: 6px 0 0;
    color: #394150;
}

.section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
}

.section-title.with-action {
    justify-content: space-between;
    text-align: left;
}

.section-title h2 {
    margin: 0;
    font-size: 20px;
    text-transform: uppercase;
    border-bottom: 3px solid var(--green);
}

.compact-title {
    margin-bottom: 12px;
}

.service-grid,
.product-grid,
.category-grid,
.category-feature-grid,
.benefit-grid,
.skeleton-grid {
    display: grid;
    gap: 24px;
}

.service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid.compact {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.category-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.category-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.skeleton-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.product-card,
.category-card,
.category-feature,
.account-card,
.summary-card,
.filter-panel,
.config-panel,
.product-info-panel,
.checkout-block {
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: var(--radius);
}

.service-card,
.product-card,
.category-card,
.category-feature {
    overflow: hidden;
}

.service-media,
.product-media,
.category-media,
.category-feature-media,
.cart-image,
.product-gallery {
    background: #e7e7e7;
}

.service-media,
.product-media,
.category-media {
    aspect-ratio: 4 / 3;
}

.service-body,
.product-body,
.category-card-footer,
.category-feature > div:last-child {
    padding: 16px;
}

.service-icon {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-weight: 800;
}

.service-body h3,
.product-body h2,
.category-card h2 {
    margin: 8px 0 4px;
    font-size: 16px;
}

.product-card {
    position: relative;
}

.product-body {
    position: relative;
}

.product-body p,
.service-body p,
.category-feature p,
.benefit-grid p,
.footer-copy {
    color: var(--muted);
}

.product-body strong {
    color: var(--green-dark);
    display: block;
    margin: 8px 0;
}

.wish-button {
    position: absolute;
    top: -128px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--green-dark);
}

.category-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-card-footer a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--green);
    color: var(--green);
    display: grid;
    place-items: center;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    padding: 28px 0;
}

.home-story-section {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 48px;
    align-items: start;
    padding: 20px 0 36px;
}

.about-panel,
.workflow-panel {
    min-width: 0;
}

.home-section-heading {
    margin-bottom: 18px;
}

.home-section-heading.centered {
    text-align: center;
}

.home-section-heading h2 {
    display: inline-block;
    margin: 0;
    font-size: 19px;
    font-weight: 900;
    text-transform: uppercase;
    border-bottom: 3px solid var(--green);
    letter-spacing: 0;
}

.about-panel p {
    max-width: 520px;
    margin: 0 0 14px;
    color: #364152;
    font-weight: 650;
    line-height: 1.55;
}

.about-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.about-stat {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 8px;
    align-items: center;
    min-height: 48px;
}

.about-stat strong {
    color: var(--green-dark);
    font-size: 14px;
    line-height: 1;
}

.about-stat small {
    grid-column: 2;
    color: #475467;
    font-weight: 700;
    line-height: 1.1;
}

.round-icon {
    grid-row: span 2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #b7e3c0;
    display: grid;
    place-items: center;
    color: var(--green);
    font-weight: 900;
}

.workflow-map {
    position: relative;
    min-height: 260px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 112px 118px;
    gap: 28px 18px;
    align-items: start;
    padding-top: 4px;
}

.workflow-map::before,
.workflow-map::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.workflow-map::before {
    left: 10%;
    right: 10%;
    top: 46px;
    height: 2px;
    background-image: repeating-linear-gradient(
        to right,
        #d7dde6 0,
        #d7dde6 5px,
        transparent 5px,
        transparent 9px
    );
}

.workflow-map::after {
    left: 50%;
    top: 46px;
    height: 124px;
    width: 2px;
    transform: translateX(-1px);
    background-image: repeating-linear-gradient(
        to bottom,
        #d7dde6 0,
        #d7dde6 5px,
        transparent 5px,
        transparent 9px
    );
}

.workflow-item {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 4px;
    text-align: center;
    font-size: 12px;
}

.workflow-item strong {
    color: var(--green-dark);
    font-size: 12px;
    line-height: 1.2;
}

.workflow-item small {
    max-width: 150px;
    color: #4b5565;
    font-weight: 600;
    line-height: 1.25;
}

.workflow-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green);
    color: #fff;
    border: 4px solid #daf4df;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 8px;
}

.workflow-icon svg {
    width: 17px;
    height: 17px;
    display: block;
    fill: currentColor;
}

.workflow-item.top-left {
    grid-column: 1;
    grid-row: 1;
}

.workflow-item.top-right {
    grid-column: 3;
    grid-row: 1;
}

.workflow-item.top-end {
    grid-column: 5;
    grid-row: 1;
}

.workflow-item.bottom-left {
    grid-column: 2;
    grid-row: 2;
    padding-top: 12px;
}

.workflow-item.bottom-right {
    grid-column: 4;
    grid-row: 2;
    padding-top: 12px;
}

.why-section {
    padding: 20px 0 26px;
}

.metric-row,
.steps-grid,
.feature-strip {
    display: grid;
    gap: 16px;
}

.metric-row {
    grid-template-columns: repeat(3, 1fr);
}

.steps-grid {
    grid-template-columns: repeat(2, 1fr);
}

.steps-grid span,
.metric-row span {
    border-left: 3px solid var(--green);
    padding: 12px;
    background: #fbfcfd;
}

.benefit-grid {
    align-items: start;
    column-gap: 34px;
}

.benefit-grid .benefit-item {
    position: relative;
    display: grid;
    grid-template-columns: 62px 1fr;
    column-gap: 18px;
    min-height: 122px;
    padding: 0 26px 0 0;
    border: 0;
    background: transparent;
}

.benefit-grid .benefit-item:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: -17px;
    width: 1px;
    background: #c9d0da;
}

.benefit-icon {
    grid-row: span 2;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 2px solid #b7e8c4;
    border-radius: 50%;
    color: var(--green);
    background: #fff;
}

.benefit-icon svg {
    width: 25px;
    height: 25px;
    display: block;
    fill: currentColor;
}

.benefit-item strong {
    align-self: end;
    text-transform: uppercase;
    font-size: 15px;
}

.benefit-grid .benefit-item p {
    margin: 6px 0 0;
    color: #475467;
    font-weight: 600;
    line-height: 1.45;
}

.feature-strip {
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    padding: 18px 0;
    text-align: center;
}

.feature-strip div {
    display: grid;
    gap: 2px;
}

.feature-strip span {
    color: var(--green);
    font-weight: 800;
}

.feature-icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    margin-inline: auto;
    color: var(--green);
}

.feature-icon svg {
    width: 34px;
    height: 34px;
    display: block;
    fill: currentColor;
}

.breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
}

.breadcrumbs a {
    color: #344054;
}

.breadcrumbs strong {
    color: var(--ink);
}

.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0 24px;
    gap: 16px;
}

.toolbar > div {
    display: flex;
    gap: 18px;
    align-items: center;
}

.toolbar select {
    border-radius: 6px;
    padding: 8px 28px 8px 10px;
    background: #f6f7f9;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 30px;
}

.filter-panel {
    padding: 16px;
    align-self: start;
}

.filter-header,
.filter-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-header a,
.filter-clear {
    color: var(--green-dark);
    font-size: 12px;
}

.filter-clear {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.filter-empty {
    margin: 16px 0 4px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.filter-group {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.filter-title {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0 0 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.check-row,
.radio-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    color: #394150;
}

.product-detail-layout,
.checkout-layout,
.cart-layout,
.account-layout {
    display: grid;
    gap: 28px;
}

.product-detail-layout {
    grid-template-columns: 1.05fr .95fr;
}

.checkout-layout,
.cart-layout {
    grid-template-columns: 1fr 330px;
}

.account-layout {
    grid-template-columns: 245px 1fr;
}

.config-panel,
.product-info-panel,
.summary-card,
.account-card,
.checkout-block {
    padding: 18px;
}

.config-step {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.config-step h2,
.checkout-block h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    font-size: 16px;
    text-transform: uppercase;
}

.config-step h2 span,
.checkout-block h2 span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green);
    color: #fff;
    font-size: 12px;
}

.two-column,
.dynamic-grid,
.upload-choice-grid,
.account-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field-block {
    display: grid;
    gap: 7px;
}

.field-block > span {
    font-weight: 700;
    color: #475467;
}

.field-input {
    width: 100%;
    min-height: 42px;
    border-radius: 6px;
    padding: 10px 12px;
    background: #fff;
}

textarea.field-input {
    min-height: 78px;
    resize: vertical;
    margin-bottom: 12px;
}

.quantity-control {
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    max-width: 180px;
}

.quantity-control button,
.quantity-control input {
    border: 0;
    min-height: 38px;
    text-align: center;
    background: #fff;
}

.quantity-control button {
    background: #f8fafc;
}

.option-stack {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 8px 10px;
}

.upload-choice-grid button {
    min-height: 68px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 6px;
    color: var(--green-dark);
    font-weight: 800;
}

.upload-choice-grid small {
    display: block;
    color: var(--muted);
    font-weight: 600;
}

.amount-box {
    display: grid;
    gap: 8px;
    padding: 14px;
    margin-bottom: 16px;
    background: #eff0f2;
    border-radius: 8px;
}

.amount-box span,
.summary-row,
.summary-product {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.amount-box .total,
.summary-row.grand {
    font-weight: 900;
    color: var(--green-dark);
}

.product-gallery {
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
}

.spec-grid div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
}

.spec-grid dt {
    color: var(--muted);
}

.spec-grid dd {
    margin: 0;
    font-weight: 700;
}

.prose-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
}

.cart-line {
    display: grid;
    grid-template-columns: 210px 1fr 170px;
    gap: 22px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.cart-image {
    border-radius: 8px;
    aspect-ratio: 4 / 3;
}

.cart-line h2 {
    margin: 0 0 8px;
    font-size: 18px;
}

.delivery-note,
.text-green {
    color: var(--green-dark);
}

.design-status {
    background: #eefaf0;
    color: var(--green-dark);
    padding: 10px 12px;
    border-radius: 5px;
    margin-top: 12px;
    max-width: 360px;
}

.cart-line-actions {
    display: grid;
    gap: 14px;
    align-content: start;
}

.summary-card {
    align-self: start;
    position: sticky;
    top: 120px;
}

.summary-card h2 {
    margin-top: 0;
}

.summary-row,
.summary-product {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.checkout-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 14px 0 24px;
    padding: 0;
    list-style: none;
}

.checkout-progress li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    border-bottom: 2px dotted #ccd2dc;
    padding-bottom: 8px;
}

.checkout-progress span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #e5e7eb;
}

.checkout-progress .is-active {
    color: var(--green-dark);
}

.checkout-progress .is-active span {
    background: var(--green);
    color: #fff;
}

.payment-note {
    background: #edf0f3;
    padding: 18px;
    border-radius: 6px;
    margin-top: 12px;
}

.track-form {
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 12px;
    margin-bottom: 24px;
}

.account-sidebar {
    display: grid;
    gap: 6px;
    align-self: start;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px;
}

.account-sidebar a,
.account-sidebar .account-nav-button {
    padding: 12px 14px;
    border-radius: 6px;
    color: #475467;
    font-weight: 700;
}

.account-sidebar a.active,
.account-sidebar a:hover,
.account-sidebar .account-nav-button:hover {
    background: #eef0f2;
    color: var(--green-dark);
}

.account-sidebar .account-nav-button {
    width: 100%;
    border: 0;
    border-top: 1px solid var(--line);
    margin-top: 4px;
    padding-top: 14px;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.account-sidebar .account-nav-button:focus-visible,
.account-sidebar a:focus-visible {
    outline: 3px solid rgba(47, 179, 68, .22);
    outline-offset: 1px;
}

.account-content {
    display: grid;
    gap: 24px;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

.btn {
    min-height: 42px;
    border-radius: 6px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    cursor: pointer;
}

.btn-primary {
    border-color: var(--green);
    background: var(--green);
    color: #fff;
}

.btn-primary:hover {
    background: var(--green-dark);
}

.btn-outline {
    background: #fff;
    color: var(--green-dark);
    border-color: #b7e3c0;
}

.btn-small {
    min-height: 32px;
    padding-inline: 14px;
    font-size: 12px;
}

.full {
    width: 100%;
}

.link-button {
    border: 0;
    background: transparent;
    color: var(--green-dark);
    padding: 0;
    text-align: left;
    font-weight: 800;
}

.btn:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.alert,
.status-panel,
.empty-state {
    border-radius: 8px;
    padding: 18px;
}

.alert {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 16px 0;
}

.alert-warning,
.status-warning {
    background: var(--warning);
    border: 1px solid var(--warning-line);
}

.alert-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.status-danger {
    background: var(--danger);
    border: 1px solid var(--danger-line);
}

.status-panel {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 16px 0;
}

.status-panel h2,
.empty-state h2,
.empty-state h1 {
    margin: 0 0 6px;
}

.status-panel p,
.empty-state p {
    margin: 0;
    color: var(--muted);
}

.status-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    font-weight: 900;
}

.empty-state {
    text-align: center;
    background: #f9fafb;
    border: 1px solid var(--line);
}

.empty-state.compact {
    text-align: left;
}

.skeleton-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
}

.skeleton-media,
.skeleton-line {
    background: linear-gradient(90deg, #eceff3, #f7f8fa, #eceff3);
    background-size: 200% 100%;
    animation: shimmer 1.6s infinite linear;
    border-radius: 6px;
}

.skeleton-media {
    aspect-ratio: 4 / 3;
    margin-bottom: 14px;
}

.skeleton-line {
    height: 12px;
    margin: 8px 0;
}

.w-70 {
    width: 70%;
}

.w-40 {
    width: 40%;
}

@keyframes shimmer {
    from { background-position: 200% 0; }
    to { background-position: -200% 0; }
}

.site-footer {
    margin-top: 36px;
    background: var(--dark);
    color: #d9e2ec;
    padding: 28px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.1fr .8fr 1.2fr;
    gap: 32px;
}

.brand-footer .brand-name {
    color: #fff;
}

.site-footer h2 {
    margin: 0 0 12px;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 4px;
}

.footer-links a:hover {
    color: #fff;
}

.social-row {
    display: flex;
    gap: 10px;
}

.social-row span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.24);
    display: grid;
    place-items: center;
    font-size: 11px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.15);
    margin-top: 22px;
    padding-top: 14px;
    font-size: 12px;
}

#blazor-error-ui {
    background: #fff3cd;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, .2);
    display: none;
    left: 0;
    padding: .75rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: .75rem;
    top: .5rem;
}

@media (max-width: 1100px) {
    .header-top,
    .nav-links {
        flex-wrap: wrap;
    }

    .header-search-row,
    .product-detail-layout,
    .checkout-layout,
    .cart-layout,
    .account-layout,
    .catalog-layout,
    .home-story-section,
    .split-section {
        grid-template-columns: 1fr;
    }

    .summary-card {
        position: static;
    }

    .service-grid,
    .product-grid,
    .product-grid.compact,
    .category-grid,
    .category-feature-grid,
    .benefit-grid,
    .skeleton-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 20px, 1180px);
    }

    .header-top {
        min-height: 62px;
        padding-block: 9px;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .nav-links { display: none; }
    .brand { min-width: 0; flex: 1; }
    .brand-logo { width: clamp(118px, 39vw, 150px); }
    .header-actions { flex: 0 0 auto; gap: 5px; }
    .desktop-order-action,
    .desktop-wallet-action { display: none; }

    .header-actions .cart-icon,
    .header-actions .avatar-link {
        width: 36px;
        height: 36px;
        min-height: 36px;
    }

    .header-actions .cart-badge { top: -2px; right: -3px; }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        padding: 0;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
        color: var(--ink);
        display: inline-grid;
        place-items: center;
        cursor: pointer;
    }

    .mobile-menu-toggle:hover { border-color: var(--green); color: var(--green-dark); }

    .mobile-menu-toggle:focus-visible,
    .mobile-menu-panel a:focus-visible,
    .mobile-services summary:focus-visible {
        outline: 3px solid rgba(47, 179, 68, .28);
        outline-offset: 2px;
    }

    .mobile-menu-icon {
        width: 20px;
        height: 16px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .mobile-menu-icon span {
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
        transition: transform .18s ease, opacity .18s ease;
        transform-origin: center;
    }

    .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon span:first-child { transform: translateY(7px) rotate(45deg); }
    .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon span:nth-child(2) { opacity: 0; }
    .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon span:last-child { transform: translateY(-7px) rotate(-45deg); }

    .header-search-row { display: block; padding-bottom: 10px; }
    .category-trigger,
    .hide-sm { display: none; }

    .search-bar {
        grid-template-columns: minmax(0, 1fr) 84px;
        height: 42px;
        gap: 0;
    }

    .search-bar input,
    .search-bar button { min-width: 0; min-height: 42px; }
    .search-bar input { padding-inline: 12px; border-radius: 6px 0 0 6px; font-size: 12px; }
    .search-bar button { border-radius: 0 6px 6px 0; font-size: 12px; }
    .mobile-menu-panel {
        max-height: calc(100vh - 114px);
        margin-bottom: 10px;
        padding: 7px;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: #fff;
        box-shadow: 0 14px 30px rgba(16, 24, 40, .14);
        overflow-y: auto;
        overscroll-behavior: contain;
        animation: mobile-menu-in .16s ease-out;
    }

    .mobile-menu-panel:not([hidden]) { display: block; }
    .mobile-menu-panel[hidden] { display: none; }

    .mobile-menu-link,
    .mobile-services summary,
    .mobile-menu-account-links a {
        min-height: 44px;
        padding: 10px 12px;
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: 800;
        cursor: pointer;
    }

    .mobile-menu-link:hover,
    .mobile-services summary:hover,
    .mobile-menu-account-links a:hover { background: #eefaf0; color: var(--green-dark); }
    .mobile-menu-link-primary { background: var(--green); color: #fff; }
    .mobile-menu-link-primary:hover { background: var(--green-dark); color: #fff; }

    .mobile-services summary { list-style: none; }
    .mobile-services summary::-webkit-details-marker { display: none; }
    .mobile-services summary svg {
        width: 11px;
        height: 8px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform .15s ease;
    }
    .mobile-services[open] summary svg { transform: rotate(180deg); }

    .mobile-service-links {
        margin: 0 8px 6px 18px;
        padding-left: 10px;
        border-left: 2px solid #d9f1dd;
        display: grid;
    }

    .mobile-service-links a,
    .mobile-menu-status {
        min-height: 42px;
        padding: 10px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        color: #344054;
        font-weight: 700;
    }
    .mobile-service-links a:hover { background: var(--soft); color: var(--green-dark); }
    .mobile-menu-status { color: var(--muted); }

    .mobile-menu-account-links {
        margin-top: 6px;
        padding-top: 6px;
        border-top: 1px solid var(--line);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    .mobile-menu-account-links a {
        min-width: 0;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 2px;
    }

    .mobile-wallet-balance {
        color: var(--green-dark);
        font-size: 11px;
        white-space: nowrap;
    }

    @keyframes mobile-menu-in {
        from { opacity: 0; transform: translateY(-5px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .service-grid,
    .product-grid,
    .product-grid.compact,
    .category-grid,
    .category-feature-grid,
    .benefit-grid,
    .skeleton-grid,
    .footer-grid,
    .two-column,
    .dynamic-grid,
    .upload-choice-grid,
    .account-grid,
    .prose-columns,
    .feature-strip,
    .metric-row,
    .about-stat-row,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .workflow-map {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        min-height: 0;
        gap: 16px;
    }

    .workflow-map::before,
    .workflow-map::after {
        display: none;
    }

    .workflow-item,
    .workflow-item.top-left,
    .workflow-item.top-right,
    .workflow-item.top-end,
    .workflow-item.bottom-left,
    .workflow-item.bottom-right {
        grid-column: auto;
        grid-row: auto;
    }

    .benefit-grid .benefit-item,
    .benefit-grid .benefit-item:first-child {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding-top: 18px;
    }

    .benefit-grid .benefit-item:not(:first-child)::before {
        display: none;
    }

    .cart-line {
        grid-template-columns: 1fr;
    }

    .checkout-progress {
        grid-template-columns: 1fr 1fr;
    }

    .toolbar,
    .cart-header,
    .footer-bottom,
    .status-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .toolbar > div {
        flex-wrap: wrap;
    }

    .track-form {
        grid-template-columns: 1fr;
    }
}

/* Commerce authentication */
.auth-page {
    display: grid;
    place-items: start center;
}

.auth-card {
    width: min(100%, 760px);
    padding: clamp(24px, 5vw, 48px);
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(16, 24, 40, .08);
}

.auth-card-narrow { width: min(100%, 520px); }
.auth-heading { margin-bottom: 24px; }
.auth-heading h1, .auth-success h1 { margin: 4px 0 8px; }
.auth-heading p, .auth-success p { color: var(--muted); }
.auth-card form { display: grid; gap: 18px; }
.auth-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.auth-form-grid .full-span { grid-column: 1 / -1; }
.auth-switch { margin: 0; text-align: center; color: var(--muted); }
.form-note { padding: 12px 14px; border-radius: 8px; background: var(--soft); color: var(--muted); font-size: 14px; }
.auth-success { text-align: center; }
.auth-success-icon { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center; background: var(--green); color: #fff; font-size: 28px; font-weight: 800; }
.receipt-grid { margin: 24px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; text-align: left; }
.receipt-grid > div { padding: 14px; border: 1px solid var(--line); border-radius: 8px; }
.receipt-grid dt { color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.receipt-grid dd { margin: 5px 0 0; font-weight: 700; overflow-wrap: anywhere; }
.header-logout { white-space: nowrap; }
.mobile-menu-account-links button { min-height: 44px; padding: 10px 12px; text-align: left; font-weight: 800; }

@media (max-width: 720px) {
    .auth-card { padding: 22px 16px; }
    .auth-form-grid, .receipt-grid { grid-template-columns: 1fr; }
    .auth-form-grid .full-span { grid-column: auto; }
}


/* Customer wallet */
.wallet-section-tabs {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f6f7f8;
}

.wallet-section-tab {
    min-height: 44px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #475467;
    font-weight: 800;
    cursor: pointer;
}

.wallet-section-tab span {
    display: inline-flex;
    min-width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    border-radius: 999px;
    background: #e2e8f0;
    font-size: 12px;
}

.wallet-section-tab.active {
    background: #fff;
    color: var(--green-dark);
    box-shadow: 0 1px 4px rgba(15, 23, 42, .1);
}

.wallet-section-tab.active span {
    color: #fff;
    background: var(--green);
}

.wallet-section-tab:focus-visible {
    outline: 3px solid rgba(47, 179, 68, .22);
}

.wallet-request-tab-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.wallet-request-tab-grid > .alert {
    grid-column: 1 / -1;
}

.wallet-tab-panel {
    grid-column: 1 / -1;
}

.account-content:has(> .wallet-balance-card) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.wallet-balance-card,
.wallet-history-card,
.account-content:has(> .wallet-balance-card) > .alert,
.account-content:has(> .wallet-balance-card) > .status-panel,
.account-content:has(> .wallet-balance-card) > .skeleton-grid {
    grid-column: 1 / -1;
}

.wallet-action-card {
    height: 100%;
    border-top: 3px solid var(--green);
}

.wallet-refund-card {
    border-top-color: #64748b;
}

.wallet-action-card h2 {
    margin: 4px 0 8px;
}

.wallet-card-kicker {
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.wallet-action-card .wallet-topup-form {
    grid-template-columns: 1fr;
    align-items: stretch;
}

.wallet-action-card .btn {
    width: 100%;
}

.wallet-history-card > h2 {
    margin-bottom: 6px;
}

.wallet-balance-card {
    display: grid;
    gap: 6px;
    padding: 24px;
    border-radius: var(--radius);
    color: #fff;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.wallet-balance-card span {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.wallet-balance-card strong {
    font-size: clamp(28px, 5vw, 42px);
}

.wallet-balance-card small {
    color: rgba(255, 255, 255, .82);
}

.wallet-topup-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr)) auto;
    align-items: end;
    gap: 16px;
    margin-top: 18px;
}

.wallet-file-input {
    padding: 7px 10px;
}

.wallet-selected-file {
    grid-column: 1 / -1;
    color: #475467;
    font-size: 13px;
}

.wallet-status {
    display: inline-flex;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.status-pending {
    color: #854d0e;
    background: #fef3c7;
}

.status-approved {
    color: #166534;
    background: #dcfce7;
}

.status-rejected {
    color: #991b1b;
    background: #fee2e2;
}

.wallet-credit {
    color: #15803d;
    font-weight: 800;
}

.wallet-debit {
    color: #b42318;
    font-weight: 800;
}

.wallet-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 16px;
}

.wallet-checkout-balance {
    margin-left: auto;
}

.radio-row.is-disabled {
    opacity: .6;
}

.alert-success {
    color: #166534;
    background: #ecfdf3;
    border: 1px solid #a7f3d0;
}

@media (max-width: 760px) {
    .wallet-section-tabs,
    .wallet-request-tab-grid {
        grid-template-columns: 1fr;
    }

    .wallet-topup-form {
        grid-template-columns: 1fr;
    }

    .wallet-pagination {
        justify-content: space-between;
    }
}

/* My Orders */
.orders-content {
    min-width: 0;
}

.orders-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.orders-toolbar h2,
.order-list-card h2 {
    margin: 0;
}

.orders-toolbar p {
    margin: 6px 0 0;
    color: #667085;
}

.orders-list {
    display: grid;
    gap: 14px;
}

.order-list-card {
    padding: 0;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.order-list-card.is-expanded {
    border-color: #86d79a;
    box-shadow: 0 8px 24px rgba(22, 101, 52, .08);
}

.order-list-summary {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(110px, auto) auto;
    align-items: center;
    gap: 24px;
    padding: 22px 24px;
}

.order-main-info {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 6px 12px;
}

.order-main-info h2 {
    grid-column: 1 / -1;
    font-size: 20px;
}

.order-date {
    grid-column: 1 / -1;
    color: #667085;
    font-size: 13px;
}

.order-status-pill {
    grid-column: 1;
    justify-self: start;
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.order-summary-value {
    display: grid;
    gap: 4px;
    text-align: right;
}

.order-summary-value span {
    color: #667085;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.order-summary-value strong {
    font-size: 20px;
}

.order-track-button {
    min-width: 118px;
}

.order-tracking-panel {
    padding: 22px 24px 24px;
    border-top: 1px solid var(--border);
    background: #fbfdfb;
}

.order-status-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.order-status-item {
    display: grid;
    gap: 7px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
}

.order-status-item span {
    color: #667085;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.order-status-success {
    color: #15803d;
}

.order-status-warning {
    color: #a16207;
}

.order-status-danger {
    color: #b42318;
}

.order-lines-wrap {
    margin-top: 22px;
}

.order-lines-wrap h3 {
    margin: 0 0 12px;
    font-size: 17px;
}

.order-lines-table th:last-child,
.order-lines-table td:last-child {
    text-align: right;
}

.orders-empty-state {
    display: grid;
    justify-items: start;
    gap: 8px;
    padding: 34px;
}

.orders-empty-state h2,
.orders-empty-state p {
    margin: 0;
}

.orders-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #667085;
    font-size: 14px;
}

.orders-pagination > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 760px) {
    .orders-toolbar,
    .orders-pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .orders-toolbar .btn {
        width: 100%;
    }

    .order-list-summary {
        grid-template-columns: 1fr auto;
        gap: 16px;
        padding: 18px;
    }

    .order-main-info {
        grid-column: 1 / -1;
    }

    .order-summary-value {
        text-align: left;
    }

    .order-status-grid {
        grid-template-columns: 1fr;
    }

    .order-tracking-panel {
        padding: 18px;
    }

    .orders-pagination > div {
        justify-content: space-between;
    }
}

/* Ecommerce finishing choices and post-order artwork slots */
.finishing-option-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; }
.finishing-option { display: flex; gap: 10px; align-items: flex-start; padding: 14px; border: 1px solid #dfe5ea; border-radius: 8px; cursor: pointer; background: #fff; }
.finishing-option.is-selected { border-color: #28b447; background: #f3fff6; }
.finishing-option span { display: grid; gap: 3px; }
.finishing-option small { color: #5c6873; font-weight: 500; }
.artwork-after-order-note { background: #f7fbf7; border-left: 4px solid #28b447; }
.artwork-requirements-row td { background: #fbfcfd; }
.artwork-requirements { display: grid; gap: 14px; padding: 10px 0; }
.artwork-requirement { border: 1px solid #dde4e9; border-radius: 8px; padding: 14px; background: #fff; }
.artwork-requirement-heading { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 10px; }
.artwork-slots { display: grid; gap: 9px; }
.artwork-slot { display: grid; grid-template-columns: minmax(220px, 1fr) minmax(220px, auto); gap: 10px; align-items: center; padding: 11px; border: 1px dashed #cbd4da; border-radius: 7px; }
.artwork-slot.is-complete { border-style: solid; border-color: #83cd94; background: #f5fff7; }
.artwork-slot > div { display: grid; gap: 3px; }
.artwork-slot span, .artwork-slot-note { color: #66717b; font-size: .88rem; }
.artwork-locked { color: #168535 !important; font-weight: 700; }
.artwork-upload-message { grid-column: 1 / -1; color: #394650; }
@media (max-width: 720px) { .artwork-slot { grid-template-columns: 1fr; } }