@font-face {
    font-family: "Young Serif";
    src: url("../fonts/young-serif/YoungSerif-Regular.ttf") format("truetype");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

:root {
    --bg: #fff9fb;
    --card: #ffffff;
    --ink: #2d2430;
    --muted: #746674;
    --line: #ead8df;
    --rose: #f42f83;
    --rose-soft: #ffe0ea;
    --gold: #d9961a;
    --green: #6f9b42;
    --green-soft: #e9f3e1;
    --danger: #b6425b;
    --shadow: 0 18px 52px rgba(117, 67, 85, 0.14);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #fffaf7 0%, #fff1f6 54%, #f7fbf1 100%);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
}

.public-store-copy h1,
.public-product-summary h1,
.product-detail-heading h2,
.public-product-not-found h1,
.page-admin .topbar h1,
.admin-heading h2 {
    font-family: "Young Serif", Georgia, serif;
    font-weight: 400;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes softFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        opacity: 0.55;
    }

    50% {
        opacity: 0.9;
    }
}

.animate-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.animate-in.is-visible,
.no-js .animate-in {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 110ms;
}

.delay-2 {
    transition-delay: 220ms;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 244px;
    padding: 22px 16px;
    border-right: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(18px);
    overflow-y: auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-weight: 900;
}

.brand img {
    width: 170px;
    height: 48px;
    object-fit: contain;
    object-position: left center;
}

.sidebar nav {
    display: grid;
    gap: 8px;
}

.sidebar nav a {
    min-height: 42px;
    padding: 11px 13px;
    border-radius: 8px;
    color: var(--muted);
    font-weight: 700;
}

.sidebar nav a:hover,
.sidebar nav a.is-active {
    background: var(--rose-soft);
    color: var(--rose);
}

.mobile-app-bar,
.menu-backdrop,
.drawer-close {
    display: none;
}

.menu-backdrop[hidden] {
    display: none;
}

.main-shell {
    width: calc(100% - 244px);
    margin-left: 244px;
    padding: 28px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

.eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--rose);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

h1 {
    margin-bottom: 0;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1;
}

h2 {
    margin-bottom: 12px;
    font-size: clamp(1.45rem, 3vw, 2.3rem);
    line-height: 1.08;
}

h3 {
    margin-bottom: 8px;
}

p,
span,
small,
li {
    color: var(--muted);
    line-height: 1.55;
}

.account-pill,
.panel,
.metric-card,
.hero-panel,
.product-card,
.recommendation-card,
.storefront-hero {
    border: 1px solid rgba(234, 216, 223, 0.92);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.account-pill {
    min-width: 220px;
    padding: 12px 14px;
    display: grid;
    gap: 3px;
}

.account-pill a {
    width: max-content;
    margin-top: 4px;
    color: var(--rose);
    font-size: 0.88rem;
    font-weight: 900;
}

.flash-list {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.public-flash {
    width: min(920px, calc(100% - 40px));
    margin: 18px auto 0;
}

.flash-message {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(117, 67, 85, 0.1);
}

.flash-message.error {
    border-color: rgba(182, 66, 91, 0.28);
    background: #fff3f6;
    color: var(--danger);
}

.flash-message.success {
    border-color: rgba(111, 155, 66, 0.26);
    background: var(--green-soft);
    color: #416524;
}

.hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
    gap: 24px;
    align-items: center;
    min-height: 280px;
    padding: 26px;
    margin-bottom: 18px;
}

.hero-panel img {
    width: 100%;
    max-height: 230px;
    object-fit: contain;
}

.metric-grid,
.card-grid,
.split-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

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

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

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

.metric-card,
.panel,
.product-card,
.recommendation-card,
.storefront-hero {
    padding: 20px;
}

.metric-card {
    min-height: 138px;
    display: grid;
    align-content: space-between;
}

.metric-card strong {
    color: var(--ink);
    font-size: 1.8rem;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.stack,
.table-list,
.timeline,
.form-grid {
    display: grid;
    gap: 12px;
}

.order-row,
.material-row,
.table-row,
.timeline-item {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(120px, 0.9fr);
    gap: 14px;
    align-items: center;
    min-height: 66px;
    padding: 14px;
    border-radius: 8px;
    background: #fff7fa;
}

.table-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
}

progress {
    width: 100%;
    height: 10px;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    background: #efdbe3;
}

progress::-webkit-progress-bar {
    background: #efdbe3;
}

progress::-webkit-progress-value {
    background: linear-gradient(90deg, var(--rose), var(--gold));
}

.material-row.is-low,
.danger-text {
    color: var(--danger);
}

.success-text {
    color: var(--green);
}

.primary-button,
.text-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border: 0;
    border-radius: 8px;
    font-weight: 900;
}

.primary-button {
    background: var(--rose);
    color: #fff;
    cursor: pointer;
}

.text-link {
    color: var(--rose);
}

.product-image {
    aspect-ratio: 4 / 3;
    margin-bottom: 14px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(244, 47, 131, 0.18), rgba(217, 150, 26, 0.18)),
        url("../../img/icone.png") center / contain no-repeat,
        #fff3f7;
}

dl {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
}

dl div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
}

dt {
    color: var(--muted);
}

dd {
    margin: 0;
    font-weight: 900;
}

label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 800;
}

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

textarea {
    resize: vertical;
}

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

.full-field {
    grid-column: span 2;
}

.customer-workspace {
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
}

.customer-summary {
    min-height: 220px;
    align-self: start;
}

.customer-summary h2 {
    color: var(--rose);
    font-size: clamp(2.8rem, 7vw, 5.6rem);
}

.customer-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr) minmax(170px, auto);
}

.row-actions {
    display: grid;
    justify-items: end;
    gap: 7px;
}

.row-actions form {
    margin: 0;
}

.danger-button {
    min-height: 34px;
    padding: 7px 10px;
    border: 1px solid rgba(182, 66, 91, 0.24);
    border-radius: 8px;
    background: #fff3f6;
    color: var(--danger);
    cursor: pointer;
    font-weight: 900;
}

.empty-state {
    padding: 20px;
    border: 1px dashed var(--line);
    border-radius: 8px;
    background: #fff8fb;
}

.empty-state p {
    margin-bottom: 0;
}

body:not(.public-body) {
    background:
        radial-gradient(circle at top right, rgba(244, 47, 131, 0.08), transparent 34rem),
        #fbf8fa;
}

body:not(.public-body) .sidebar {
    width: 248px;
    padding: 22px 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 12px 0 36px rgba(117, 67, 85, 0.06);
}

body:not(.public-body) .brand {
    margin-bottom: 28px;
}

body:not(.public-body) .brand img {
    width: 174px;
    height: 46px;
}

body:not(.public-body) .sidebar nav a {
    min-height: 40px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #746674;
    font-size: 0.95rem;
}

body:not(.public-body) .main-shell {
    width: calc(100% - 248px);
    margin-left: 248px;
    padding: 28px 30px 42px;
}

body:not(.public-body) .topbar {
    align-items: center;
    margin-bottom: 22px;
}

body:not(.public-body) .topbar h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    letter-spacing: 0;
}

body:not(.public-body) .account-pill {
    min-width: 210px;
    border-color: rgba(234, 216, 223, 0.76);
    box-shadow: 0 14px 34px rgba(117, 67, 85, 0.08);
}

.customer-page {
    display: grid;
    gap: 18px;
}

.customer-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 22px;
    border: 1px solid rgba(234, 216, 223, 0.9);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 240, 246, 0.86)),
        #fff;
    box-shadow: 0 18px 44px rgba(117, 67, 85, 0.08);
}

.customer-hero h2 {
    margin-bottom: 8px;
    font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.customer-hero p {
    max-width: 680px;
    margin-bottom: 0;
}

.customer-stat {
    min-width: 154px;
    padding: 16px;
    border-radius: 8px;
    background: var(--ink);
}

.customer-stat span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    font-weight: 800;
}

.customer-stat strong {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-size: 2.45rem;
    line-height: 1;
}

.customer-layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.45fr) minmax(0, 0.55fr);
    gap: 18px;
    align-items: start;
}

.customer-form-card,
.customer-list-card {
    padding: 22px;
    box-shadow: 0 16px 42px rgba(117, 67, 85, 0.08);
}

.customer-form-card .panel-header,
.customer-list-card .panel-header {
    margin-bottom: 16px;
}

.customer-form-card h2,
.customer-list-card h2 {
    font-size: 1.35rem;
}

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

.customer-form label {
    gap: 6px;
    color: #352b36;
    font-size: 0.86rem;
    font-weight: 850;
}

.customer-form input,
.customer-form select,
.customer-form textarea {
    min-height: 40px;
    padding: 9px 10px;
    border-color: #ead8df;
    background: #fff;
    font-size: 0.92rem;
    font-weight: 650;
    transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}

.customer-form textarea {
    min-height: 74px;
}

.customer-form input:focus,
.customer-form select:focus,
.customer-form textarea:focus {
    border-color: rgba(244, 47, 131, 0.48);
    box-shadow: 0 0 0 3px rgba(244, 47, 131, 0.1);
    outline: none;
}

.form-section-tabs {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    padding: 4px;
    border: 1px solid rgba(234, 216, 223, 0.92);
    border-radius: 999px;
    background: rgba(255, 248, 251, 0.82);
    overflow-x: auto;
    scrollbar-width: none;
}

.form-section-tabs::-webkit-scrollbar {
    display: none;
}

.form-section-tabs a {
    flex: 0 0 auto;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    color: #5f5362;
    font-size: 0.82rem;
    font-weight: 900;
    transition: background 160ms var(--ease), color 160ms var(--ease), box-shadow 160ms var(--ease), transform 160ms var(--ease);
}

.form-section-tabs a:hover,
.form-section-tabs a:focus-visible {
    background: #fff;
    color: var(--rose);
    box-shadow: 0 10px 22px rgba(117, 67, 85, 0.1);
    transform: translateY(-1px);
    outline: none;
}

.form-section {
    grid-column: 1 / -1;
    min-width: 0;
    margin: 0;
    padding: 16px;
    border: 1px solid rgba(234, 216, 223, 0.92);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 251, 0.78)),
        #fff;
    scroll-margin-top: 132px;
}

.form-section legend {
    padding: 0 8px;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 950;
}

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

.form-section-grid .full-field {
    grid-column: 1 / -1;
}

.form-submit-bar {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
}

.form-submit-bar .primary-button {
    min-width: min(100%, 280px);
}

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

.customer-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) minmax(180px, 0.9fr) minmax(120px, auto) auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(234, 216, 223, 0.82);
    border-radius: 8px;
    background: #fff;
    transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.customer-card:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 47, 131, 0.28);
    box-shadow: 0 16px 34px rgba(117, 67, 85, 0.1);
}

.customer-avatar {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--rose), var(--gold));
    color: #fff;
    font-weight: 950;
}

.customer-main,
.customer-meta,
.customer-value,
.customer-actions {
    display: grid;
    gap: 3px;
}

.customer-main strong {
    color: var(--ink);
    font-size: 0.98rem;
}

.customer-main span,
.customer-main small,
.customer-meta span,
.customer-meta small,
.customer-value span {
    color: var(--muted);
    font-size: 0.84rem;
}

.customer-value {
    justify-items: end;
}

.customer-value strong {
    color: var(--ink);
    font-size: 0.98rem;
}

.customer-actions {
    justify-items: end;
}

.customer-actions form {
    margin: 0;
}

.icon-action {
    min-height: 30px;
    padding: 6px 9px;
    border: 1px solid rgba(234, 216, 223, 0.9);
    border-radius: 8px;
    background: #fff;
    color: var(--rose);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1;
}

.icon-action.danger {
    color: var(--danger);
}

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

.product-hero {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 241, 0.88)),
        #fff;
}

.product-stats {
    display: flex;
    gap: 10px;
}

.product-stats div {
    min-width: 128px;
    padding: 14px;
    border-radius: 8px;
    background: var(--ink);
}

.product-stats span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 800;
}

.product-stats strong {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
}

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

.product-form-card {
    padding: 22px;
    box-shadow: 0 16px 42px rgba(117, 67, 85, 0.08);
}

.product-form-card h2 {
    font-size: 1.35rem;
}

.product-form select {
    min-height: 40px;
    padding: 9px 10px;
    border-color: #ead8df;
    background: #fff;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 650;
}

.product-image-field small {
    color: var(--muted);
    font-size: 0.78rem;
}

.product-form-preview {
    width: 100%;
    height: 150px;
    border: 1px solid var(--line);
    border-radius: 8px;
    object-fit: cover;
}

.toggle-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff8fb;
}

.toggle-row label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.toggle-row input {
    width: 20px;
    min-width: 20px;
    min-height: 20px;
    accent-color: var(--rose);
}

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

.product-admin-card {
    overflow: hidden;
    padding: 0;
    box-shadow: 0 16px 42px rgba(117, 67, 85, 0.08);
}

.product-admin-image {
    height: 130px;
    background:
        linear-gradient(135deg, rgba(244, 47, 131, 0.18), rgba(217, 150, 26, 0.16)),
        url("../../img/icone.png") center / 92px no-repeat,
        #fff3f7;
}

.product-admin-image.has-photo {
    background: #fff3f7;
}

.product-admin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-admin-content {
    display: grid;
    gap: 12px;
    padding: 16px;
}

.product-admin-top,
.product-admin-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-admin-top span,
.product-admin-top small {
    font-size: 0.8rem;
    font-weight: 900;
}

.product-admin-top span {
    color: var(--rose);
}

.product-admin-top small {
    padding: 5px 8px;
    border-radius: 8px;
    background: var(--green-soft);
    color: #416524;
}

.product-admin-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.18rem;
}

.product-admin-card p {
    margin: 0;
    font-size: 0.9rem;
}

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

.product-admin-metrics div {
    padding: 10px;
    border-radius: 8px;
    background: #fff8fb;
}

.product-admin-metrics span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
}

.product-admin-metrics strong {
    color: var(--ink);
    font-size: 0.92rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.product-tags span {
    padding: 6px 8px;
    border-radius: 8px;
    background: #fff3f7;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.product-admin-actions form {
    margin: 0;
}

.material-page {
    display: grid;
    gap: 18px;
}

.material-hero {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 251, 0.9)),
        #fff;
}

.material-list {
    display: grid;
    gap: 14px;
}

.material-admin-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px;
    box-shadow: 0 16px 42px rgba(117, 67, 85, 0.08);
    transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.material-admin-card:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 47, 131, 0.28);
    box-shadow: 0 20px 48px rgba(117, 67, 85, 0.12);
}

.material-admin-card.is-low {
    border-color: rgba(182, 66, 91, 0.26);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 243, 246, 0.96)),
        #fff;
}

.material-admin-card.is-low .product-admin-top small {
    background: #fff0f4;
    color: var(--danger);
}

.material-swatch {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(117, 67, 85, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(0, 0, 0, 0.1)),
        var(--swatch);
    box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.18), 0 12px 24px rgba(117, 67, 85, 0.12);
}

.material-admin-main {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.material-admin-main h3,
.material-admin-main p {
    margin: 0;
}

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

.order-hero {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 241, 0.88)),
        #fff;
}

.order-stats div {
    min-width: 156px;
}

.order-stats strong {
    font-size: clamp(1.25rem, 2vw, 2rem);
}

.order-layout {
    display: grid;
    grid-template-columns: minmax(390px, 0.46fr) minmax(0, 0.54fr);
    gap: 18px;
    align-items: start;
}

.order-form-card {
    position: sticky;
    top: 18px;
}

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

.order-summary-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background:
        radial-gradient(circle at 90% 20%, rgba(244, 47, 131, 0.12), transparent 14rem),
        #fff;
}

.order-summary-card .eyebrow {
    margin-bottom: 0;
}

.order-summary-card div {
    display: grid;
    justify-items: end;
    gap: 2px;
}

.order-summary-card strong {
    color: var(--ink);
    font-size: 1.35rem;
}

.order-card {
    padding: 16px;
    box-shadow: 0 16px 42px rgba(117, 67, 85, 0.08);
    transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.order-card:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 47, 131, 0.28);
    box-shadow: 0 20px 48px rgba(117, 67, 85, 0.12);
}

.order-card-main {
    display: grid;
    gap: 12px;
}

.order-card h3,
.order-card p {
    margin: 0;
}

.order-card progress {
    height: 8px;
}

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

.order-empty-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.production-page {
    display: grid;
    gap: 18px;
}

.production-hero {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 249, 244, 0.88)),
        #fff;
}

.production-stats {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.production-stats div {
    min-width: 128px;
}

.production-stats strong {
    font-size: clamp(1.4rem, 2vw, 2rem);
}

.production-layout {
    display: grid;
    grid-template-columns: minmax(390px, 0.46fr) minmax(0, 0.54fr);
    gap: 18px;
    align-items: start;
}

.production-form-card {
    position: sticky;
    top: 18px;
}

.production-list {
    display: grid;
    gap: 14px;
}

.production-card {
    padding: 16px;
    box-shadow: 0 16px 42px rgba(117, 67, 85, 0.08);
    transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.production-card:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 47, 131, 0.28);
    box-shadow: 0 20px 48px rgba(117, 67, 85, 0.12);
}

.production-card.is-late {
    border-color: rgba(182, 66, 91, 0.26);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 243, 246, 0.96)),
        #fff;
}

.production-card.is-late .product-admin-top small {
    background: #fff0f4;
    color: var(--danger);
}

.production-card-main {
    display: grid;
    gap: 12px;
}

.production-card h3,
.production-card p {
    margin: 0;
}

.production-card progress {
    height: 8px;
}

.production-checklist {
    display: grid;
    gap: 7px;
}

.production-checklist span {
    position: relative;
    min-height: 30px;
    padding: 7px 9px 7px 28px;
    border-radius: 8px;
    background: #fff8fb;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.production-checklist span::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rose), var(--gold));
}

.reports-page {
    display: grid;
    gap: 18px;
}

.reports-hero {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(246, 251, 241, 0.88)),
        #fff;
}

.reports-period {
    min-width: 178px;
}

.reports-period strong {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

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

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

.report-panel {
    padding: 18px;
    box-shadow: 0 16px 42px rgba(117, 67, 85, 0.08);
}

.report-panel h2 {
    font-size: 1.22rem;
}

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

.report-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 62px;
    padding: 12px;
    border: 1px solid rgba(234, 216, 223, 0.72);
    border-radius: 8px;
    background: #fff8fb;
}

.report-row > div {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.report-row strong {
    color: var(--ink);
}

.report-row span {
    font-size: 0.84rem;
}

.report-row.danger-row {
    border-color: rgba(182, 66, 91, 0.22);
    background: #fff3f6;
}

.report-row.danger-row > strong {
    color: var(--danger);
}

.finance-page {
    display: grid;
    gap: 18px;
}

.finance-hero {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(246, 251, 241, 0.9)),
        #fff;
}

.finance-stats {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.finance-stats div {
    min-width: 144px;
}

.finance-stats strong {
    font-size: clamp(1.15rem, 2vw, 1.8rem);
}

.finance-layout {
    display: grid;
    grid-template-columns: minmax(370px, 0.42fr) minmax(0, 0.58fr);
    gap: 18px;
    align-items: start;
}

.finance-form-card {
    position: sticky;
    top: 18px;
}

.finance-list {
    display: grid;
    gap: 14px;
}

.finance-summary-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    box-shadow: 0 16px 42px rgba(117, 67, 85, 0.08);
}

.finance-summary-card .eyebrow {
    margin-bottom: 0;
}

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

.finance-summary-grid div {
    padding: 12px;
    border-radius: 8px;
    background: #fff8fb;
}

.finance-summary-grid span {
    display: block;
    margin-bottom: 4px;
    font-size: 0.8rem;
    font-weight: 800;
}

.finance-summary-grid strong {
    color: var(--ink);
    font-size: 1.16rem;
}

.finance-card {
    padding: 16px;
    box-shadow: 0 16px 42px rgba(117, 67, 85, 0.08);
    transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.finance-card:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 47, 131, 0.28);
    box-shadow: 0 20px 48px rgba(117, 67, 85, 0.12);
}

.finance-card.is-income {
    border-left: 4px solid var(--green);
}

.finance-card.is-expense {
    border-left: 4px solid var(--danger);
}

.finance-card-main {
    display: grid;
    gap: 12px;
}

.finance-card h3,
.finance-card p {
    margin: 0;
}

.finance-card-bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    background: #fff8fb;
}

.finance-card-bottom strong {
    color: var(--ink);
    font-size: 1.15rem;
}

.finance-card.is-income .finance-card-bottom strong {
    color: var(--green);
}

.finance-card.is-expense .finance-card-bottom strong {
    color: var(--danger);
}

.showcase-admin-page {
    display: grid;
    gap: 18px;
}

.showcase-admin-hero {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 244, 249, 0.9)),
        #fff;
}

.showcase-share-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 20px;
    align-items: center;
    padding: 22px;
    box-shadow: 0 16px 42px rgba(117, 67, 85, 0.08);
}

.showcase-share-panel h2 {
    font-size: 1.55rem;
}

.showcase-share-panel p {
    margin-bottom: 0;
}

.inline-link {
    min-height: auto;
    padding: 0;
    display: inline;
}

.showcase-share-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    gap: 10px;
}

.showcase-share-box input {
    min-width: 0;
    background: #fff8fb;
    font-weight: 800;
}

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

.showcase-preview-card {
    overflow: hidden;
    padding: 0;
    box-shadow: 0 16px 42px rgba(117, 67, 85, 0.08);
}

.showcase-preview-card img,
.showcase-preview-placeholder {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.showcase-preview-placeholder {
    background:
        linear-gradient(135deg, rgba(244, 47, 131, 0.18), rgba(217, 150, 26, 0.16)),
        url("../../img/icone.png") center / 82px no-repeat,
        #fff3f7;
}

.showcase-preview-card > div {
    display: grid;
    gap: 6px;
    padding: 14px;
}

.showcase-preview-card span {
    color: var(--rose);
    font-size: 0.78rem;
    font-weight: 900;
}

.showcase-preview-card h3,
.showcase-preview-card strong {
    margin: 0;
    color: var(--ink);
}

.profile-page {
    display: grid;
    gap: 18px;
}

.profile-hero {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 244, 249, 0.9)),
        #fff;
}

.profile-stat {
    min-width: 240px;
}

.profile-stat strong {
    font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.profile-layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.48fr) minmax(0, 0.52fr);
    gap: 18px;
    align-items: start;
}

.profile-preview-card {
    display: grid;
    gap: 14px;
    padding: 22px;
    box-shadow: 0 16px 42px rgba(117, 67, 85, 0.08);
}

.profile-preview-card img {
    width: 180px;
    max-height: 72px;
    object-fit: contain;
    object-position: left center;
}

.profile-logo-preview {
    width: 180px;
    max-width: 100%;
    max-height: 86px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff8fb;
    object-fit: contain;
    object-position: left center;
}

.profile-preview-card h2,
.profile-preview-card p {
    margin: 0;
}

.profile-preview-card .primary-button {
    width: max-content;
}

.recommendation-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
    gap: 18px;
    align-items: stretch;
    margin-bottom: 18px;
    padding: 24px;
    border: 1px solid rgba(234, 216, 223, 0.86);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 242, 247, 0.9)),
        #fff;
    box-shadow: 0 18px 48px rgba(117, 67, 85, 0.09);
}

.recommendation-hero h2 {
    max-width: 820px;
    margin-bottom: 10px;
    font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.recommendation-hero p {
    max-width: 760px;
    margin-bottom: 0;
}

.recommendation-hero-card {
    display: grid;
    align-content: center;
    justify-items: start;
    min-height: 150px;
    padding: 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, #2d2430, #4c1730);
    box-shadow: 0 18px 42px rgba(117, 67, 85, 0.18);
}

.recommendation-hero-card strong {
    color: #fff;
    font-size: clamp(2.4rem, 6vw, 4rem);
    line-height: 1;
}

.recommendation-hero-card span {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

.recommendation-layout {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin-bottom: 18px;
}

.filter-panel {
    position: sticky;
    top: 22px;
    padding: 18px;
    border: 1px solid rgba(234, 216, 223, 0.86);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 48px rgba(117, 67, 85, 0.08);
}

.filter-panel form,
.filter-group {
    display: grid;
    gap: 14px;
}

.filter-group {
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.filter-group strong {
    color: var(--ink);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    position: relative;
    display: inline-flex;
    gap: 0;
    font-weight: 900;
    cursor: pointer;
}

.filter-chip input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.filter-chip span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 11px;
    border: 1px solid rgba(234, 216, 223, 0.95);
    border-radius: 999px;
    background: #fff;
    color: var(--muted);
    transition: color 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.filter-chip input:checked + span {
    border-color: rgba(244, 47, 131, 0.36);
    background: var(--rose-soft);
    color: var(--rose);
}

.filter-chip:hover span {
    transform: translateY(-1px);
    border-color: rgba(244, 47, 131, 0.24);
}

.filter-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    padding-top: 4px;
}

.filter-actions .ghost-button {
    border-color: var(--line);
    background: #fff;
    color: var(--rose);
}

.recommendation-results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.recommendation-card-expanded {
    display: grid;
    gap: 12px;
    min-height: 100%;
    padding: 18px;
    border-top: 4px solid var(--rose);
    box-shadow: 0 16px 42px rgba(117, 67, 85, 0.08);
    transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.recommendation-card-expanded:hover {
    transform: translateY(-3px);
    border-top-color: var(--gold);
    box-shadow: 0 22px 54px rgba(117, 67, 85, 0.14);
}

.recommendation-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.recommendation-card > span,
.recommendation-card-top span {
    color: var(--rose);
    font-weight: 900;
}

.recommendation-card-top strong {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 9px;
    border-radius: 999px;
    background: #fff4f8;
    color: var(--gold);
    font-size: 0.85rem;
}

.recommendation-card-expanded h3 {
    margin-bottom: 0;
    font-size: 1.32rem;
}

.recommendation-card-expanded p {
    margin-bottom: 0;
}

.recommendation-specs,
.recommendation-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
}

.recommendation-specs div,
.recommendation-metrics div {
    display: grid;
    gap: 2px;
    padding: 10px;
    border: 1px solid rgba(234, 216, 223, 0.72);
    border-radius: 8px;
    background: #fff8fb;
}

.recommendation-specs dt,
.recommendation-metrics dt {
    font-size: 0.76rem;
    font-weight: 800;
}

.recommendation-specs dd,
.recommendation-metrics dd {
    font-size: 0.94rem;
}

.recommendation-reason {
    padding: 12px;
    border-left: 4px solid var(--rose);
    border-radius: 8px;
    background: #fff7fa;
    color: var(--ink);
    font-weight: 800;
}

.source-link {
    width: max-content;
    color: var(--rose);
    font-weight: 900;
}

.material-estimate-panel {
    margin-top: 8px;
}

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

.compact-result {
    margin-top: 16px;
}

.compact-result span {
    display: block;
    margin-top: 8px;
}

.result-panel h2 {
    color: var(--rose);
}

.chip-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.chip-cloud span {
    padding: 9px 12px;
    border-radius: 8px;
    background: var(--green-soft);
    color: var(--ink);
    font-weight: 700;
}

.storefront-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.storefront-hero img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    margin-bottom: 12px;
}

.public-product .primary-button {
    width: 100%;
    margin-top: 12px;
}

.storefront-public-header {
    background: rgba(255, 255, 255, 0.9);
}

.public-store {
    background: #fff8fb;
}

.public-store-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
    gap: 34px;
    align-items: center;
    min-height: 560px;
    padding: 70px max(22px, calc((100vw - 1180px) / 2));
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 78% 18%, rgba(244, 47, 131, 0.28), transparent 26rem),
        linear-gradient(180deg, #171119 0%, #271421 100%);
}

.public-store-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 96px 96px;
    pointer-events: none;
}

.public-store-hero > * {
    position: relative;
    z-index: 1;
}

.public-store-copy {
    display: grid;
    justify-items: start;
}

.public-store-copy img {
    width: 170px;
    max-height: 64px;
    margin-bottom: 18px;
    object-fit: contain;
    object-position: left center;
}

.public-store-copy h1 {
    max-width: 760px;
    margin-bottom: 16px;
    color: #fff;
    font-size: clamp(3.2rem, 8vw, 6.8rem);
    line-height: 0.9;
}

.public-store-copy p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

.public-store-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 8px 0 24px;
}

.public-store-meta span {
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 800;
}

.public-store-panel {
    display: grid;
    gap: 10px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(18px);
}

.public-store-panel strong {
    color: #fff;
    font-size: 2rem;
}

.public-store-panel span {
    min-height: 42px;
    padding: 11px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

.public-store-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 70px 0;
}

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

.public-store-card {
    overflow: hidden;
    border: 0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(117, 67, 85, 0.1);
    transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.public-store-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 58px rgba(117, 67, 85, 0.15);
}

.public-store-card img,
.public-store-image-fallback {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.public-store-image-fallback {
    background:
        linear-gradient(135deg, rgba(244, 47, 131, 0.2), rgba(217, 150, 26, 0.16)),
        url("../../img/icone.png") center / 94px no-repeat,
        #fff3f7;
}

.public-store-card-body {
    display: grid;
    gap: 12px;
    padding: 16px;
}

.public-store-card h3,
.public-store-card p {
    margin: 0;
}

.public-store-price {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.public-store-price strong {
    color: var(--ink);
    font-size: 1.3rem;
}

.public-store-card .primary-button {
    width: 100%;
}

.public-store-empty {
    max-width: 760px;
}

.public-body {
    background:
        radial-gradient(circle at top left, rgba(255, 224, 234, 0.9), transparent 34rem),
        linear-gradient(135deg, #fffaf7 0%, #fff1f6 52%, #f7fbf1 100%);
}

.public-home {
    background: #fff8fb;
}

.public-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 14px 28px;
    border-bottom: 1px solid rgba(234, 216, 223, 0.78);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
}

.public-home .public-header {
    border-bottom-color: rgba(255, 255, 255, 0.08);
    background: rgba(18, 16, 21, 0.82);
}

.public-brand {
    display: flex;
    align-items: center;
    gap: 0;
    color: var(--ink);
    font-weight: 900;
}

.public-home .public-brand,
.public-home .public-header nav a:not(.primary-button) {
    color: #fff;
}

.public-home .public-brand span {
    color: #fff;
}

.public-brand img {
    width: 156px;
    height: 44px;
    object-fit: contain;
    object-position: left center;
}

.public-header nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.public-header nav a:not(.primary-button) {
    min-height: 40px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--muted);
    font-weight: 800;
    transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.public-header nav a:hover {
    background: var(--rose-soft);
    color: var(--rose);
    transform: translateY(-1px);
}

.stitch-landing {
    background: #fff8fb;
    overflow: hidden;
}

.stitch-hero,
.stitch-section,
.stitch-product-band {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.stitch-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 42px;
    align-items: center;
    min-height: 700px;
    padding: 78px max(20px, calc((100vw - 1180px) / 2)) 84px;
    color: #fff;
    width: 100%;
    overflow: hidden;
    background:
        radial-gradient(circle at 75% 20%, rgba(244, 47, 131, 0.32), transparent 28rem),
        radial-gradient(circle at 18% 30%, rgba(217, 150, 26, 0.2), transparent 24rem),
        linear-gradient(180deg, #161017 0%, #21111b 100%);
}

.stitch-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(21, 16, 23, 0.22), rgba(21, 16, 23, 0.02)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 110px);
    pointer-events: none;
}

.stitch-hero::after {
    content: "";
    position: absolute;
    right: 11%;
    top: 18%;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: rgba(244, 47, 131, 0.22);
    filter: blur(82px);
    animation: pulseGlow 5.2s ease-in-out infinite;
    pointer-events: none;
}

.stitch-hero > * {
    position: relative;
    z-index: 1;
}

.stitch-hero-copy h1 {
    max-width: 760px;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
    font-size: clamp(3.6rem, 9vw, 7.8rem);
    line-height: 0.88;
}

.stitch-hero-copy h2 {
    max-width: 620px;
    margin-bottom: 18px;
    color: #ffd7e5;
    font-size: clamp(1.35rem, 2.6vw, 2.05rem);
    line-height: 1.12;
}

.stitch-hero-copy p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
}

.stitch-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 16px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffd9e6;
    font-weight: 900;
}

.stitch-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-proof span {
    min-height: 34px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

.ghost-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 900;
    transition: border-color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.primary-button,
.secondary-button {
    transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover {
    transform: translateY(-2px);
}

.primary-button:hover {
    box-shadow: 0 14px 34px rgba(244, 47, 131, 0.32);
}

.ghost-button:hover {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.14);
}

.stitch-showcase {
    position: relative;
    min-height: 520px;
    animation: softFloat 7s ease-in-out infinite;
}

.showcase-card {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1));
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(22px);
}

.showcase-card.main {
    position: absolute;
    inset: 36px 32px auto 0;
    min-height: 390px;
    padding: 22px;
}

.window-dots {
    display: flex;
    gap: 7px;
    margin-bottom: 16px;
}

.window-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
}

.showcase-topline,
.showcase-task,
.showcase-metrics {
    display: grid;
    gap: 12px;
}

.showcase-topline {
    grid-template-columns: 1fr auto;
    align-items: center;
    margin-bottom: 18px;
}

.showcase-card span,
.showcase-card small {
    color: rgba(255, 255, 255, 0.76);
}

.showcase-card strong {
    color: #fff;
}

.showcase-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 14px;
}

.showcase-metrics article,
.showcase-task,
.showcase-summary {
    padding: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.showcase-metrics strong {
    display: block;
    margin-top: 6px;
    color: #fff;
    font-size: 2rem;
}

.showcase-task {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    margin-bottom: 10px;
}

.showcase-task progress {
    grid-column: span 2;
}

.showcase-summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
    margin-top: 12px;
}

.showcase-summary small {
    grid-column: span 2;
}

.showcase-card.floating {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.showcase-card.floating.catalog {
    right: 0;
    bottom: 54px;
    width: min(290px, 78%);
}

.showcase-card.floating.ai {
    left: 28px;
    bottom: 0;
    display: grid;
    width: min(310px, 80%);
}

.showcase-card.floating {
    animation: softFloat 6.4s ease-in-out infinite;
}

.showcase-card.floating.ai {
    animation-delay: 900ms;
}

.showcase-card.floating img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.stitch-section {
    padding: 76px 0;
}

.feature-section {
    position: relative;
    padding-top: 88px;
}

.feature-section::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0 calc(50% - 50vw);
    background:
        radial-gradient(circle at 13% 12%, rgba(244, 47, 131, 0.08), transparent 22rem),
        radial-gradient(circle at 86% 32%, rgba(111, 155, 66, 0.1), transparent 22rem),
        #fff8fb;
}

.stitch-section-title {
    max-width: 800px;
    margin-bottom: 28px;
}

.stitch-section-title h2 {
    margin-bottom: 12px;
    color: var(--ink);
    max-width: 780px;
}

.stitch-section-title p {
    max-width: 680px;
    font-size: 1.02rem;
}

.stitch-section .stitch-pill,
.stitch-product-band .stitch-pill {
    border-color: rgba(244, 47, 131, 0.15);
    background: #fff;
    color: var(--rose);
}

.stitch-feature-grid,
.stitch-roadmap {
    display: grid;
    gap: 16px;
}

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

.stitch-feature-grid article,
.stitch-roadmap article {
    min-height: 210px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(117, 67, 85, 0.1);
}

.stitch-feature-grid article {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: start;
    transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.stitch-feature-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--rose), var(--gold));
}

.stitch-feature-grid article:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 56px rgba(117, 67, 85, 0.16);
    border-color: rgba(244, 47, 131, 0.28);
}

.feature-icon {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #fff3f7;
}

.feature-icon::before,
.feature-icon::after {
    content: "";
    position: absolute;
    border-radius: 999px;
}

.feature-icon.clients::before {
    width: 12px;
    height: 12px;
    left: 9px;
    top: 9px;
    background: var(--rose);
    box-shadow: 12px 0 0 var(--gold);
}

.feature-icon.clients::after {
    left: 8px;
    right: 8px;
    bottom: 10px;
    height: 7px;
    background: rgba(244, 47, 131, 0.24);
}

.feature-icon.products::before {
    inset: 11px 9px 10px;
    border: 3px solid var(--rose);
    border-top-color: var(--gold);
}

.feature-icon.production::before {
    left: 10px;
    top: 10px;
    width: 22px;
    height: 22px;
    border: 3px solid var(--gold);
}

.feature-icon.production::after {
    left: 17px;
    top: 17px;
    width: 8px;
    height: 8px;
    background: var(--rose);
}

.feature-icon.pricing::before {
    left: 11px;
    top: 8px;
    width: 18px;
    height: 26px;
    border-radius: 6px;
    background: var(--rose);
}

.feature-icon.pricing::after {
    left: 15px;
    right: 15px;
    top: 15px;
    height: 3px;
    background: #fff;
    box-shadow: 0 7px 0 #fff;
}

.feature-icon.yarn::before {
    left: 9px;
    top: 9px;
    width: 24px;
    height: 24px;
    border: 4px solid var(--rose);
    box-shadow: inset 0 0 0 4px rgba(217, 150, 26, 0.35);
}

.feature-icon.storefront::before {
    left: 9px;
    top: 13px;
    width: 24px;
    height: 18px;
    border-radius: 5px;
    background: var(--rose);
}

.feature-icon.storefront::after {
    left: 8px;
    top: 9px;
    width: 26px;
    height: 7px;
    border-radius: 8px 8px 3px 3px;
    background: var(--gold);
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 34px;
    margin-bottom: 22px;
    border-radius: 8px;
    background: #fff3f7;
    color: var(--gold);
    font-weight: 900;
}

.stitch-feature-grid strong,
.stitch-roadmap strong {
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 1.12rem;
}

.stitch-feature-grid p {
    margin-bottom: 0;
}

.stitch-product-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 30px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 85% 10%, rgba(244, 47, 131, 0.24), transparent 20rem),
        #171119;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.stitch-product-band:hover {
    transform: translateY(-3px);
    box-shadow: 0 32px 88px rgba(0, 0, 0, 0.22);
}

.stitch-product-band h2,
.stitch-product-band p {
    color: #fff;
}

.stitch-product-band p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.76);
}

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

.roadmap-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--rose);
    font-size: 0.82rem;
    font-weight: 900;
}

.install-app-banner {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    width: min(440px, calc(100% - 32px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(234, 216, 223, 0.92);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(117, 67, 85, 0.2);
    transform: translateY(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.install-app-banner[hidden] {
    display: none;
}

.install-app-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.install-app-banner strong {
    display: block;
    margin-bottom: 3px;
    color: var(--ink);
}

.install-app-banner span {
    font-size: 0.9rem;
}

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

.is-standalone-app body:not(.public-body) .sidebar {
    padding-top: calc(16px + env(safe-area-inset-top));
}

.production-landing {
    background:
        linear-gradient(180deg, #fff8fb 0%, #ffffff 44%, #fff8fb 100%);
}

.production-landing .stitch-hero,
.production-landing .stitch-section,
.production-landing .stitch-product-band,
.landing-proof-band,
.final-cta {
    width: min(1180px, calc(100% - 40px));
}

.production-landing .stitch-hero {
    width: 100%;
}

.production-hero {
    min-height: 660px;
    padding-top: 74px;
    padding-bottom: 48px;
    background:
        linear-gradient(115deg, rgba(21, 16, 23, 0.96) 0%, rgba(34, 17, 28, 0.96) 52%, rgba(43, 24, 30, 0.96) 100%),
        #171119;
}

.production-hero::after {
    display: none;
}

.production-hero .stitch-hero-copy h1 {
    font-size: clamp(3.8rem, 9vw, 8.2rem);
}

.production-hero .stitch-hero-copy h2 {
    max-width: 760px;
    color: #fff;
}

.production-hero .stitch-hero-copy p {
    max-width: 690px;
}

.production-showcase .showcase-card.main {
    position: relative;
    inset: auto;
    min-height: 386px;
}

.production-showcase {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-content: center;
}

.production-showcase .showcase-card.floating.catalog {
    position: static;
    width: auto;
}

.production-showcase .showcase-card.floating.ai {
    position: static;
    width: auto;
}

.production-showcase .showcase-card.floating {
    min-height: 82px;
    padding: 14px;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.26);
    animation: none;
}

.production-showcase .showcase-card.floating.ai,
.production-showcase .showcase-card.floating.catalog {
    grid-row: 2;
}

.production-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.production-showcase .showcase-card.main {
    grid-column: 1 / -1;
}

.landing-proof-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: -42px auto 26px;
    position: relative;
    z-index: 2;
}

.landing-proof-band div {
    display: grid;
    gap: 4px;
    min-height: 128px;
    padding: 22px;
    border: 1px solid rgba(234, 216, 223, 0.86);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 48px rgba(117, 67, 85, 0.12);
}

.landing-proof-band strong {
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
}

.landing-proof-band span {
    font-weight: 800;
}

.production-landing .feature-section::before {
    background:
        linear-gradient(180deg, #fff8fb 0%, #fff 48%, #fff8fb 100%);
}

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

.production-feature-grid article {
    min-height: 238px;
}

.feature-icon.finance::before {
    left: 10px;
    top: 9px;
    width: 22px;
    height: 24px;
    border-radius: 6px;
    background: var(--green);
}

.feature-icon.finance::after {
    left: 14px;
    top: 17px;
    width: 14px;
    height: 3px;
    background: #fff;
    box-shadow: 0 6px 0 #fff;
}

.feature-icon.reports::before {
    left: 10px;
    bottom: 9px;
    width: 5px;
    height: 16px;
    border-radius: 4px;
    background: var(--rose);
    box-shadow: 9px -7px 0 var(--gold), 18px -12px 0 var(--green);
}

.feature-icon.profile::before {
    left: 13px;
    top: 9px;
    width: 16px;
    height: 16px;
    background: var(--rose);
}

.feature-icon.profile::after {
    left: 9px;
    right: 9px;
    bottom: 9px;
    height: 9px;
    border-radius: 9px 9px 5px 5px;
    background: rgba(217, 150, 26, 0.72);
}

.workflow-section {
    padding-top: 44px;
}

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

.workflow-steps article {
    display: grid;
    align-content: start;
    min-height: 230px;
    padding: 22px;
    border: 1px solid rgba(234, 216, 223, 0.86);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(117, 67, 85, 0.08);
}

.workflow-steps article span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #2d2430;
    color: #fff;
    font-weight: 900;
}

.workflow-steps article strong {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 1.1rem;
}

.workflow-steps article p {
    margin-bottom: 0;
}

.storefront-section {
    align-items: stretch;
    margin-top: 16px;
}

.storefront-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.ghost-button.subtle {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.13);
}

.storefront-mini-preview {
    display: grid;
    align-content: center;
    gap: 8px;
    min-width: min(320px, 100%);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.storefront-mini-preview img {
    width: 178px;
    max-height: 58px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 14px;
}

.storefront-mini-preview strong {
    color: #fff;
    font-size: 1.28rem;
}

.storefront-mini-preview span {
    color: rgba(255, 255, 255, 0.76);
}

.storefront-mini-preview small {
    width: max-content;
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--rose);
    color: #fff;
    font-weight: 900;
}

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

.decision-panel {
    min-height: 360px;
    padding: 28px;
    border: 1px solid rgba(234, 216, 223, 0.88);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(117, 67, 85, 0.09);
}

.decision-panel.highlight {
    background:
        linear-gradient(135deg, rgba(255, 248, 251, 0.92), rgba(247, 251, 241, 0.9)),
        #fff;
}

.decision-panel h2 {
    max-width: 520px;
}

.decision-panel ul {
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.decision-panel li {
    position: relative;
    padding-left: 22px;
    font-weight: 800;
}

.decision-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--rose);
}

.production-roadmap {
    padding-top: 44px;
}

.final-cta {
    display: grid;
    justify-items: center;
    margin: 24px auto 82px;
    padding: 44px 24px;
    border: 1px solid rgba(234, 216, 223, 0.9);
    border-radius: 8px;
    background:
        linear-gradient(135deg, #2d2430, #511b35),
        #2d2430;
    text-align: center;
    box-shadow: 0 24px 72px rgba(117, 67, 85, 0.2);
}

.final-cta h2 {
    max-width: 760px;
    color: #fff;
}

.final-cta p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.76);
}

.final-cta .stitch-pill {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    color: #ffd9e6;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .animate-in {
        opacity: 1;
        transform: none;
    }
}

.landing {
    overflow: hidden;
}

.landing-hero,
.landing-section,
.landing-band {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.landing-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    gap: 36px;
    align-items: center;
    min-height: calc(100vh - 82px);
    padding: 44px 0 64px;
}

.landing-copy h1 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 0.92;
}

.landing-copy p {
    max-width: 680px;
    font-size: 1.12rem;
}

.landing-actions,
.landing-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.secondary-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-weight: 900;
}

.landing-badges span {
    padding: 8px 11px;
    border-radius: 8px;
    background: var(--green-soft);
    color: var(--ink);
    font-weight: 800;
}

.landing-preview {
    padding: 22px;
    border: 1px solid rgba(234, 216, 223, 0.92);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
}

.landing-preview img {
    width: 100%;
    max-height: 240px;
    object-fit: contain;
    margin-bottom: 16px;
}

.preview-card,
.preview-row {
    padding: 14px;
    border-radius: 8px;
    background: #fff7fa;
}

.preview-card {
    display: grid;
    gap: 4px;
    margin-bottom: 10px;
}

.preview-card strong {
    color: var(--rose);
    font-size: 2.2rem;
}

.preview-row {
    display: grid;
    gap: 8px;
}

.landing-section {
    padding: 72px 0;
}

.section-title {
    max-width: 760px;
    margin-bottom: 22px;
}

.feature-grid,
.roadmap-public {
    display: grid;
    gap: 16px;
}

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

.feature-grid article,
.roadmap-public article,
.auth-card {
    border: 1px solid rgba(234, 216, 223, 0.92);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.feature-grid article,
.roadmap-public article {
    min-height: 178px;
    padding: 20px;
}

.feature-grid strong,
.roadmap-public strong {
    display: block;
    margin-bottom: 9px;
    color: var(--ink);
    font-size: 1.08rem;
}

.landing-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 28px;
    border-radius: 8px;
    background: var(--ink);
    box-shadow: var(--shadow);
}

.landing-band h2,
.landing-band p {
    color: #fff;
}

.landing-band p {
    max-width: 760px;
    opacity: 0.82;
}

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

.roadmap-public article > span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border-radius: 8px;
    background: var(--rose-soft);
    color: var(--rose);
    font-weight: 900;
}

.public-footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
}

.public-footer a {
    color: var(--rose);
    font-weight: 900;
}

.auth-shell {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 158px);
    padding: 40px 20px;
}

.auth-card {
    width: min(100%, 520px);
    padding: 28px;
}

.register-card {
    width: min(100%, 820px);
}

.auth-intro {
    margin-bottom: 22px;
}

.auth-intro img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    margin-bottom: 14px;
}

.auth-intro h1 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.auth-form {
    display: grid;
    gap: 13px;
}

.auth-form.two-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-form.two-cols button,
.auth-form.two-cols .text-link {
    grid-column: span 2;
}

@media (max-width: 1080px) {
    .sidebar {
        position: static;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 14px;
        overflow-x: auto;
    }

    .sidebar nav {
        grid-auto-flow: column;
        grid-auto-columns: max-content;
    }

    .main-shell {
        width: 100%;
        margin-left: 0;
    }

    body:not(.public-body) .sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        width: 248px;
        display: block;
        overflow-x: hidden;
        overflow-y: auto;
    }

    body:not(.public-body) .sidebar nav {
        display: grid;
        grid-auto-flow: row;
        grid-auto-columns: auto;
    }

    body:not(.public-body) .main-shell {
        width: calc(100% - 248px);
        margin-left: 248px;
    }

    .metric-grid,
    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reports-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .showcase-preview-grid,
    .public-store-grid,
    .recommendation-results-grid,
    .production-feature-grid,
    .workflow-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .recommendation-layout,
    .estimator-form,
    .decision-section {
        grid-template-columns: 1fr;
    }

    .filter-panel {
        position: static;
    }
}

@media (max-width: 720px) {
    .main-shell {
        padding: 18px;
    }

    .topbar,
    .panel-header,
    .storefront-hero,
    .public-header,
    .landing-band,
    .stitch-product-band,
    .public-footer {
        display: grid;
    }

    .hero-panel,
    .landing-hero,
    .feature-grid,
    .roadmap-public,
    .stitch-feature-grid,
    .stitch-roadmap,
    .landing-proof-band,
    .production-feature-grid,
    .workflow-steps,
    .metric-grid,
    .card-grid,
    .split-grid,
    .order-row,
    .material-row,
    .table-row,
    .customer-row,
    .customer-workspace,
    .timeline-item {
        grid-template-columns: 1fr;
    }

    .hero-panel img {
        max-height: 170px;
    }

    .account-pill {
        min-width: 0;
    }

    .two-cols-form {
        grid-template-columns: 1fr;
    }

    .full-field {
        grid-column: span 1;
    }

    .row-actions {
        justify-items: start;
    }

    .public-header nav,
    .landing-actions,
    .landing-badges {
        width: 100%;
    }

    .public-header nav {
        overflow-x: auto;
    }

    .public-home .public-header {
        align-items: start;
    }

    .public-header nav {
        flex-wrap: wrap;
        overflow-x: visible;
        gap: 7px;
    }

    .public-header nav a:not(.primary-button) {
        min-height: 34px;
        padding: 7px 9px;
        font-size: 0.9rem;
    }

    .public-brand img {
        width: 132px;
        height: 40px;
    }

    .auth-form.two-cols {
        grid-template-columns: 1fr;
    }

    .auth-form.two-cols button,
    .auth-form.two-cols .text-link {
        grid-column: span 1;
    }

    .stitch-showcase {
        min-height: 560px;
    }

    .stitch-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 44px;
    }

    .production-hero {
        min-height: auto;
        padding-bottom: 54px;
    }

    .production-hero .stitch-hero-copy h1 {
        font-size: clamp(3.4rem, 20vw, 5.3rem);
    }

    .landing-proof-band {
        margin-top: 18px;
    }

    .recommendation-hero,
    .recommendation-results-grid,
    .recommendation-specs,
    .recommendation-metrics,
    .filter-actions {
        grid-template-columns: 1fr;
    }

    .showcase-card.main {
        inset: 0 0 auto 0;
    }

    .showcase-card.floating.catalog {
        right: 0;
        bottom: 70px;
    }

    .showcase-card.floating.ai {
        left: 0;
    }

    .production-showcase .showcase-card.floating.catalog {
        bottom: 64px;
    }

    .production-showcase .showcase-card.floating.ai {
        bottom: 0;
    }

    .public-home {
        background: #fff8fb;
    }

    .public-home .animate-in {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .public-home .public-header {
        position: sticky;
        top: 0;
        z-index: 30;
        display: flex;
        grid-template-columns: none;
        gap: 8px;
        align-items: center;
        padding: 9px 12px;
        border-bottom-color: rgba(234, 216, 223, 0.88);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 10px 28px rgba(117, 67, 85, 0.08);
    }

    .public-home .public-brand {
        width: auto;
        min-width: 0;
        justify-content: flex-start;
    }

    .public-home .public-brand img {
        width: 126px;
        height: 38px;
    }

    .public-home .public-header nav {
        display: flex;
        justify-content: flex-end;
        width: auto;
        min-width: 0;
        gap: 6px;
        overflow: visible;
    }

    .public-home .public-header nav a {
        min-width: 0;
        min-height: 38px;
        padding: 8px 10px;
        border-radius: 999px;
        text-align: center;
        font-size: 0.78rem;
        line-height: 1.05;
        white-space: nowrap;
    }

    .public-home .public-header nav a:nth-child(-n + 3) {
        display: none;
    }

    .public-home .public-header nav a:not(.primary-button) {
        border: 1px solid rgba(234, 216, 223, 0.72);
        background: #fff;
        color: #5f5362;
    }

    .public-home .public-header nav .primary-button {
        min-height: 38px;
        padding-inline: 12px;
    }

    .production-landing .stitch-hero,
    .production-landing .stitch-section,
    .production-landing .stitch-product-band,
    .landing-proof-band,
    .final-cta {
        width: min(100% - 28px, 640px);
    }

    .stitch-hero.production-hero {
        width: 100%;
        min-height: auto;
        padding: 30px 14px 28px;
        gap: 22px;
        background:
            linear-gradient(180deg, rgba(23, 17, 25, 0.98) 0%, rgba(49, 23, 39, 0.98) 100%),
            #171119;
    }

    .stitch-hero::before {
        background:
            linear-gradient(180deg, rgba(21, 16, 23, 0.18), rgba(21, 16, 23, 0)),
            repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 80px);
    }

    .stitch-hero-copy {
        max-width: 520px;
        margin: 0 auto;
    }

    .stitch-pill {
        min-height: 28px;
        margin-bottom: 10px;
        padding: 6px 9px;
        font-size: 0.72rem;
    }

    .production-hero .stitch-hero-copy h1 {
        margin-bottom: 8px;
        font-size: clamp(2.7rem, 12vw, 3.45rem);
        line-height: 0.94;
    }

    .production-hero .stitch-hero-copy h2 {
        margin-bottom: 10px;
        font-size: clamp(1.05rem, 5vw, 1.34rem);
        line-height: 1.12;
    }

    .production-hero .stitch-hero-copy p {
        font-size: 0.91rem;
        line-height: 1.48;
    }

    .stitch-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 16px;
    }

    .stitch-actions .primary-button,
    .stitch-actions .ghost-button {
        width: 100%;
        min-height: 46px;
    }

    .hero-proof {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
        margin-top: 14px;
    }

    .hero-proof span {
        min-height: 32px;
        padding: 7px 8px;
        border-radius: 8px;
        font-size: 0.72rem;
        line-height: 1.15;
    }

    .stitch-showcase,
    .production-showcase {
        width: min(100%, 420px);
        min-height: auto;
        margin: 0 auto;
        animation: none;
    }

    .showcase-card.main,
    .production-showcase .showcase-card.main {
        position: relative;
        inset: auto;
        min-height: auto;
        padding: 12px;
    }

    .window-dots {
        margin-bottom: 10px;
    }

    .showcase-topline {
        margin-bottom: 10px;
    }

    .showcase-metrics {
        gap: 8px;
        margin-bottom: 8px;
    }

    .showcase-metrics article,
    .showcase-task,
    .showcase-summary {
        padding: 10px;
    }

    .showcase-metrics strong {
        font-size: 1.18rem;
    }

    .showcase-card.main .showcase-task + .showcase-task,
    .showcase-summary {
        display: none;
    }

    .showcase-card.floating.catalog,
    .production-showcase .showcase-card.floating.catalog {
        display: none;
    }

    .showcase-card.floating.ai,
    .production-showcase .showcase-card.floating.ai {
        display: none;
    }

    .landing-proof-band {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin: 14px auto 8px;
    }

    .landing-proof-band div {
        min-height: 98px;
        padding: 13px 10px;
        border-radius: 10px;
    }

    .landing-proof-band strong {
        font-size: 1.45rem;
    }

    .landing-proof-band span {
        font-size: 0.74rem;
        line-height: 1.25;
    }

    .stitch-section {
        padding: 42px 0;
    }

    .feature-section {
        padding-top: 38px;
    }

    .stitch-section-title {
        margin-bottom: 18px;
    }

    .stitch-section-title h2 {
        margin-bottom: 8px;
        font-size: clamp(1.7rem, 8vw, 2.35rem);
        line-height: 1.05;
    }

    .stitch-section-title p {
        font-size: 0.96rem;
        line-height: 1.5;
    }

    .production-feature-grid,
    .stitch-feature-grid {
        gap: 10px;
    }

    .stitch-feature-grid article,
    .stitch-roadmap article {
        min-height: auto;
        padding: 16px;
        border-radius: 10px;
        box-shadow: 0 12px 28px rgba(117, 67, 85, 0.08);
    }

    .feature-icon {
        right: 14px;
        top: 14px;
        width: 34px;
        height: 34px;
    }

    .feature-number {
        margin-bottom: 16px;
    }

    .stitch-feature-grid strong,
    .stitch-roadmap strong {
        font-size: 1.02rem;
    }

    .stitch-feature-grid p,
    .stitch-roadmap p,
    .workflow-steps article p,
    .decision-panel p,
    .decision-panel li {
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .workflow-section,
    .production-roadmap {
        padding-top: 28px;
    }

    .workflow-steps {
        gap: 10px;
    }

    .workflow-steps article {
        min-height: auto;
        padding: 16px;
        border-radius: 10px;
    }

    .workflow-steps article span {
        width: 32px;
        height: 32px;
        margin-bottom: 12px;
    }

    .stitch-product-band {
        gap: 18px;
        padding: 18px;
        border-radius: 12px;
    }

    .stitch-product-band h2,
    .decision-panel h2,
    .final-cta h2 {
        font-size: clamp(1.65rem, 8vw, 2.2rem);
        line-height: 1.08;
    }

    .storefront-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .storefront-mini-preview {
        min-width: 0;
        padding: 16px;
        border-radius: 10px;
    }

    .storefront-mini-preview img {
        width: 150px;
    }

    .decision-section {
        gap: 12px;
    }

    .decision-panel {
        min-height: auto;
        padding: 18px;
        border-radius: 10px;
    }

    .decision-panel ul {
        gap: 8px;
        margin-top: 14px;
    }

    .final-cta {
        margin: 10px auto 52px;
        padding: 24px 18px;
        border-radius: 12px;
    }

    .storefront-mini-preview {
        min-width: 0;
    }

    body:not(.public-body) .sidebar {
        width: 100%;
        box-shadow: none;
    }

    body:not(.public-body) .main-shell {
        width: 100%;
        margin-left: 0;
        padding: 18px;
    }

    .customer-hero,
    .customer-layout,
    .customer-form,
    .customer-card,
    .product-layout,
    .product-grid,
    .material-admin-card,
    .order-layout,
    .order-summary-card,
    .production-layout,
    .reports-grid,
    .reports-metrics,
    .report-row,
    .finance-layout,
    .finance-summary-grid,
    .showcase-share-panel,
    .showcase-share-box,
    .showcase-preview-grid,
    .profile-layout,
    .public-store-hero,
    .public-store-grid {
        grid-template-columns: 1fr;
    }

    .order-form-card,
    .production-form-card,
    .finance-form-card {
        position: static;
    }

    .customer-stat,
    .product-stats,
    .customer-value,
    .customer-actions {
        justify-items: start;
    }

    .product-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .customer-card {
        align-items: start;
    }
}

@media (max-width: 860px) {
    html {
        scroll-padding-top: 96px;
    }

    body:not(.public-body) {
        min-width: 0;
        padding-bottom: env(safe-area-inset-bottom);
        background:
            radial-gradient(circle at top right, rgba(244, 47, 131, 0.08), transparent 22rem),
            #fff8fb;
    }

    body:not(.public-body) .animate-in {
        opacity: 1;
        transform: none;
        transition: none;
    }

    body:not(.public-body).menu-open {
        overflow: hidden;
    }

    .mobile-app-bar {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 70;
        height: calc(66px + env(safe-area-inset-top));
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: calc(10px + env(safe-area-inset-top)) 14px 10px;
        border-bottom: 1px solid rgba(234, 216, 223, 0.92);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 12px 32px rgba(117, 67, 85, 0.1);
        backdrop-filter: blur(18px);
    }

    .mobile-app-brand {
        display: inline-flex;
        align-items: center;
        min-width: 0;
    }

    .mobile-app-brand img {
        width: 146px;
        height: 44px;
        object-fit: contain;
        object-position: left center;
    }

    .mobile-menu-toggle {
        width: 46px;
        height: 46px;
        display: inline-grid;
        place-items: center;
        gap: 0;
        padding: 12px;
        border: 1px solid rgba(244, 47, 131, 0.18);
        border-radius: 14px;
        background: #fff8fb;
        box-shadow: 0 10px 22px rgba(117, 67, 85, 0.1);
        transition: opacity 160ms var(--ease), transform 160ms var(--ease);
    }

    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
        display: block;
        border-radius: 999px;
        background: var(--ink);
        transition: transform 180ms var(--ease), opacity 180ms var(--ease);
    }

    body.menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    body.menu-open .mobile-app-bar .mobile-menu-toggle {
        opacity: 0;
        pointer-events: none;
        transform: scale(0.92);
    }

    .menu-backdrop {
        position: fixed;
        inset: 0;
        z-index: 75;
        display: block;
        background: rgba(45, 36, 48, 0.42);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms var(--ease);
    }

    .menu-backdrop.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    body:not(.public-body) .sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 80;
        width: min(322px, 86vw);
        max-width: none;
        height: 100dvh;
        display: grid;
        grid-template-rows: auto minmax(0, 1fr);
        gap: 16px;
        padding: calc(16px + env(safe-area-inset-top)) 16px 18px;
        border-right: 1px solid rgba(234, 216, 223, 0.92);
        border-bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 24px 0 48px rgba(45, 36, 48, 0.18);
        backdrop-filter: blur(18px);
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(-106%);
        visibility: hidden;
        transition: transform 220ms var(--ease), visibility 220ms var(--ease);
    }

    body.menu-open:not(.public-body) .sidebar {
        transform: translateX(0);
        visibility: visible;
    }

    body:not(.public-body) .sidebar-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    body:not(.public-body) .brand {
        height: 42px;
        margin: 0;
    }

    body:not(.public-body) .brand img {
        width: 150px;
        height: 42px;
    }

    .drawer-close {
        width: 42px;
        height: 42px;
        position: relative;
        flex: 0 0 auto;
        display: inline-grid;
        place-items: center;
        border: 1px solid rgba(234, 216, 223, 0.92);
        border-radius: 12px;
        background: #fff8fb;
    }

    .drawer-close::before,
    .drawer-close::after {
        content: "";
        position: absolute;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: var(--ink);
    }

    .drawer-close::before {
        transform: rotate(45deg);
    }

    .drawer-close::after {
        transform: rotate(-45deg);
    }

    body:not(.public-body) .sidebar nav {
        display: grid;
        grid-auto-flow: row;
        grid-auto-columns: auto;
        gap: 8px;
        overflow: visible;
        padding-bottom: 0;
    }

    body:not(.public-body) .sidebar nav a {
        min-height: 46px;
        display: flex;
        align-items: center;
        padding: 12px 13px;
        border: 1px solid rgba(234, 216, 223, 0.72);
        border-radius: 12px;
        background: #fff;
        white-space: normal;
    }

    body:not(.public-body) .sidebar nav a.is-active {
        border-color: rgba(244, 47, 131, 0.24);
        background: var(--rose);
        color: #fff;
        box-shadow: 0 10px 24px rgba(244, 47, 131, 0.24);
    }

    body:not(.public-body) .main-shell {
        width: 100%;
        margin-left: 0;
        padding: calc(82px + env(safe-area-inset-top)) 14px 28px;
    }

    body:not(.public-body) .topbar {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 16px;
    }

    body:not(.public-body) .topbar h1 {
        font-size: clamp(1.9rem, 10vw, 3.1rem);
        line-height: 0.96;
    }

    body:not(.public-body) .account-pill {
        width: 100%;
        min-width: 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 2px 12px;
        padding: 12px;
    }

    body:not(.public-body) .account-pill span {
        grid-column: 1;
    }

    body:not(.public-body) .account-pill a {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: center;
        min-width: 56px;
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 0;
        border-radius: 999px;
        background: rgba(244, 47, 131, 0.08);
    }

    .panel,
    .metric-card,
    .hero-panel,
    .product-card,
    .recommendation-card,
    .storefront-hero,
    .customer-form-card,
    .customer-list-card,
    .product-form-card,
    .order-form-card,
    .production-form-card,
    .finance-form-card,
    .report-panel {
        box-shadow: 0 12px 30px rgba(117, 67, 85, 0.08);
    }

    .primary-button,
    .secondary-button,
    .ghost-button,
    .danger-button,
    .icon-action,
    .text-link,
    .source-link {
        min-height: 44px;
    }

    .inline-link {
        min-height: auto;
    }

    input,
    select,
    textarea {
        min-height: 46px;
        font-size: 16px;
    }

    .customer-form input,
    .customer-form textarea,
    .product-form select,
    .product-form input,
    .product-form textarea,
    .order-form-card input,
    .order-form-card select,
    .order-form-card textarea,
    .production-form-card input,
    .production-form-card select,
    .production-form-card textarea,
    .finance-form-card input,
    .finance-form-card select,
    .finance-form-card textarea,
    .profile-layout input,
    .profile-layout textarea {
        min-height: 46px;
        font-size: 16px;
    }

    .customer-layout,
    .product-layout,
    .order-layout,
    .production-layout,
    .finance-layout,
    .profile-layout,
    .recommendation-layout {
        gap: 14px;
    }

    .order-form-card,
    .production-form-card,
    .finance-form-card,
    .filter-panel {
        position: static;
    }

    .customer-form,
    .two-cols-form,
    .auth-form.two-cols {
        grid-template-columns: 1fr;
    }

    .form-section-tabs {
        position: sticky;
        top: calc(76px + env(safe-area-inset-top));
        z-index: 12;
        margin: 0 -2px 2px;
        padding: 5px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 12px 28px rgba(117, 67, 85, 0.1);
        backdrop-filter: blur(16px);
    }

    .form-section-tabs a {
        min-height: 42px;
        padding: 9px 13px;
        scroll-snap-align: start;
    }

    .form-section {
        padding: 14px;
        scroll-margin-top: 124px;
    }

    .form-section-grid {
        grid-template-columns: 1fr;
    }

    .form-section-grid .full-field {
        grid-column: span 1;
    }

    .form-submit-bar {
        z-index: 10;
        display: grid;
        padding: 10px;
        border: 1px solid rgba(234, 216, 223, 0.92);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 16px 34px rgba(117, 67, 85, 0.15);
        backdrop-filter: blur(18px);
    }

    .form-submit-bar .primary-button {
        width: 100%;
        min-height: 48px;
    }

    .full-field,
    .auth-form.two-cols button,
    .auth-form.two-cols .text-link {
        grid-column: span 1;
    }

    .product-stats,
    .finance-stats,
    .production-stats,
    .order-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .product-stats div,
    .finance-stats div,
    .production-stats div,
    .order-stats div {
        min-width: 0;
    }

    .showcase-share-box {
        grid-template-columns: 1fr;
    }

    .showcase-share-box input {
        min-height: 48px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.92rem;
    }

    .showcase-share-box .secondary-button,
    .showcase-share-box .primary-button,
    .empty-state .text-link {
        width: 100%;
    }

    .recommendation-hero h2 {
        color: var(--ink);
        font-size: clamp(1.7rem, 10vw, 2.5rem);
    }

    .recommendation-hero p {
        color: var(--muted);
    }

    .recommendation-card-expanded h3 {
        font-size: 1.22rem;
    }

    .install-app-banner {
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        grid-template-columns: 1fr;
    }

    .install-app-actions {
        display: grid;
        grid-template-columns: 1fr auto;
    }
}

@media (max-width: 560px) {
    body:not(.public-body) .main-shell {
        padding-left: 12px;
        padding-right: 12px;
    }

    body:not(.public-body) .sidebar nav a {
        min-height: 38px;
        padding: 9px 11px;
        font-size: 0.9rem;
    }

    .panel,
    .metric-card,
    .product-card,
    .recommendation-card,
    .customer-form-card,
    .customer-list-card,
    .product-form-card,
    .order-card,
    .production-card,
    .finance-card,
    .report-panel {
        padding: 16px;
    }

    .hero-panel,
    .customer-hero,
    .product-hero,
    .material-hero,
    .order-hero,
    .production-hero,
    .reports-hero,
    .finance-hero,
    .showcase-admin-hero,
    .profile-hero,
    .recommendation-hero {
        padding: 16px;
    }

    .metric-grid,
    .reports-metrics,
    .finance-summary-grid,
    .recommendation-specs,
    .recommendation-metrics {
        grid-template-columns: 1fr;
    }

    .product-stats,
    .finance-stats,
    .production-stats,
    .order-stats {
        grid-template-columns: 1fr 1fr;
    }

    .form-section-tabs {
        top: calc(76px + env(safe-area-inset-top));
        gap: 6px;
    }

    .form-section-tabs a {
        min-height: 40px;
        padding: 9px 12px;
        font-size: 0.78rem;
    }

    .form-section {
        padding: 12px;
        border-radius: 8px;
    }

    .form-section legend {
        font-size: 0.9rem;
    }

    .customer-card {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 12px;
    }

    .customer-meta,
    .customer-value,
    .customer-actions {
        grid-column: 2;
        justify-items: start;
    }

    .product-grid,
    .showcase-preview-grid,
    .public-store-grid,
    .recommendation-results-grid {
        grid-template-columns: 1fr;
    }

    .product-admin-top,
    .product-admin-actions,
    .finance-card-bottom,
    .order-summary-card {
        display: grid;
        justify-items: start;
    }

    .product-admin-metrics {
        grid-template-columns: 1fr;
    }

    .material-admin-card {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .material-swatch {
        width: 52px;
        height: 52px;
    }

    .report-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .filter-options,
    .chip-cloud,
    .product-tags,
    .order-empty-actions {
        gap: 7px;
    }

    .filter-chip span,
    .chip-cloud span,
    .product-tags span {
        min-height: 34px;
    }

    .auth-shell {
        min-height: calc(100vh - 110px);
        padding: 24px 12px;
    }

    .auth-card,
    .register-card {
        padding: 20px;
    }

    .install-app-banner {
        width: calc(100% - 24px);
        padding: 12px;
    }
}

/* Product pages, galleries, SEO editor and platform administration */
::selection {
    background: var(--rose);
    color: #fff;
}

:focus-visible {
    outline: 3px solid rgba(244, 47, 131, 0.36);
    outline-offset: 3px;
}

html {
    scrollbar-color: var(--rose) #fff1f6;
    scrollbar-width: thin;
}

html::-webkit-scrollbar {
    width: 11px;
    height: 11px;
}

html::-webkit-scrollbar-track {
    background: #fff1f6;
}

html::-webkit-scrollbar-thumb {
    border: 3px solid #fff1f6;
    border-radius: 999px;
    background: var(--rose);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.public-product-page {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    padding: 34px 0 84px;
}

.product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.product-breadcrumb a {
    color: var(--rose);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.public-product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

.product-gallery {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    min-width: 0;
}

.product-gallery-main {
    grid-column: 2;
    grid-row: 1;
    overflow: hidden;
    min-height: 540px;
    border-radius: 14px;
    background: #fff1f6;
    box-shadow: 0 24px 66px rgba(117, 67, 85, 0.18);
}

.product-gallery-main img,
.product-gallery-fallback {
    width: 100%;
    height: 100%;
    min-height: 540px;
    display: block;
    object-fit: cover;
}

img[data-image-fallback].is-broken {
    display: none;
}

.has-broken-image {
    position: relative;
    min-height: 180px;
    background:
        linear-gradient(135deg, rgba(244, 47, 131, 0.16), rgba(217, 150, 26, 0.12)),
        url("../../img/icone.png") center / 92px no-repeat,
        #fff3f7;
}

.product-gallery-main.has-broken-image {
    min-height: 540px;
    background:
        linear-gradient(135deg, rgba(244, 47, 131, 0.13), rgba(217, 150, 26, 0.1)),
        url("../../img/icone.png") center / 132px no-repeat,
        #fff3f7;
}

.product-gallery-thumb.has-broken-image {
    min-height: 88px;
    background-size: auto, 42px, auto;
}

.admin-product-identity.has-broken-image {
    min-height: 0;
    background: none;
}

.admin-product-identity.has-broken-image::before {
    content: "";
    width: 44px;
    height: 44px;
    display: block;
    border-radius: 9px;
    background:
        linear-gradient(135deg, rgba(244, 47, 131, 0.16), rgba(217, 150, 26, 0.12)),
        url("../../img/icone.png") center / 24px no-repeat,
        #fff3f7;
}

.product-gallery-main img {
    transition: opacity 160ms var(--ease), transform 480ms var(--ease);
}

.product-gallery-main img.is-changing {
    opacity: 0.35;
    transform: scale(0.99);
}

.product-gallery-thumbs {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    align-content: start;
    gap: 10px;
}

.product-gallery-thumb {
    width: 88px;
    height: 88px;
    overflow: hidden;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.product-gallery-thumb:hover {
    transform: translateY(-2px);
}

.product-gallery-thumb.is-active {
    border-color: var(--rose);
    box-shadow: 0 10px 28px rgba(117, 67, 85, 0.16);
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.public-product-summary {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 18px;
    padding-top: 10px;
}

.product-summary-status {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-summary-status span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--rose-soft);
    color: #a61958;
    font-size: 0.78rem;
    font-weight: 900;
}

.product-summary-status span:last-child {
    background: var(--green-soft);
    color: #416524;
}

.public-product-summary h1 {
    max-width: 14ch;
    margin: 0;
    color: var(--ink);
    font-size: clamp(2.7rem, 5vw, 5.4rem);
    letter-spacing: -0.035em;
    line-height: 0.94;
    text-wrap: balance;
}

.product-summary-description {
    max-width: 62ch;
    margin: 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.7;
}

.product-summary-price {
    display: grid;
    gap: 4px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.product-summary-price span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.product-summary-price strong {
    color: var(--ink);
    font-size: 2rem;
    font-variant-numeric: tabular-nums;
}

.product-order-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.product-share {
    display: grid;
    gap: 14px;
    padding-top: 6px;
}

.product-share h2,
.product-share p {
    margin: 0;
}

.product-share h2 {
    font-size: 1.08rem;
}

.product-share p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.88rem;
}

.product-share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.share-action {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-size: 0.8rem;
    font-weight: 850;
    cursor: pointer;
    transition: border-color 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease);
}

.share-action:hover {
    transform: translateY(-1px);
    border-color: rgba(244, 47, 131, 0.4);
    color: var(--rose);
}

.share-action-primary {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.share-action-primary:hover {
    border-color: var(--rose);
    background: var(--rose);
    color: #fff;
}

.product-detail-section,
.related-products {
    margin-top: 78px;
    padding-top: 42px;
    border-top: 1px solid var(--line);
}

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

.product-detail-heading h2 {
    max-width: 18ch;
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.8rem, 3vw, 3rem);
    letter-spacing: -0.025em;
    line-height: 1;
    text-wrap: balance;
}

.product-detail-heading p {
    max-width: 50ch;
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.product-detail-heading a {
    color: var(--rose);
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.product-detail-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    border-top: 1px solid var(--line);
}

.product-detail-list div {
    min-height: 112px;
    padding: 22px 20px 22px 0;
    border-bottom: 1px solid var(--line);
}

.product-detail-list div:not(:nth-child(3n + 1)) {
    padding-left: 20px;
    border-left: 1px solid var(--line);
}

.product-detail-list dt {
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.product-detail-list dd {
    margin: 0;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 750;
    line-height: 1.5;
}

.public-product-not-found {
    min-height: 62vh;
    display: grid;
    place-content: center;
    justify-items: start;
    max-width: 720px;
    padding: 64px 0;
}

.public-product-not-found > span {
    margin-bottom: 12px;
    color: var(--rose);
    font-weight: 900;
}

.public-product-not-found h1 {
    margin-bottom: 14px;
    color: var(--ink);
    font-size: clamp(2.8rem, 8vw, 5.6rem);
    line-height: 0.95;
}

.public-product-not-found p {
    max-width: 54ch;
    color: var(--muted);
    font-size: 1.05rem;
}

.public-store-card-image,
.related-product-image {
    display: block;
    overflow: hidden;
}

.public-store-card-image img,
.related-product-image img {
    transition: transform 420ms var(--ease);
}

.public-store-card:hover .public-store-card-image img,
.public-store-card:hover .related-product-image img {
    transform: scale(1.025);
}

.public-store-card-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.public-store-card-actions .secondary-button {
    min-height: 44px;
}

.product-gallery-editor {
    display: grid;
    gap: 16px;
}

.gallery-editor-copy {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: start;
}

.gallery-editor-copy p {
    max-width: 60ch;
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.gallery-editor-copy > span {
    flex: 0 0 auto;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--rose-soft);
    color: #a61958;
    font-size: 0.76rem;
    font-weight: 900;
}

.gallery-editor-grid,
.gallery-upload-preview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.gallery-editor-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.gallery-editor-item > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
}

.gallery-editor-item.has-broken-image {
    min-height: 0;
    background: #fff;
}

.gallery-editor-item.has-broken-image::before {
    content: "";
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    background:
        linear-gradient(135deg, rgba(244, 47, 131, 0.16), rgba(217, 150, 26, 0.12)),
        url("../../img/icone.png") center / 54px no-repeat,
        #fff3f7;
}

.gallery-editor-choice,
.gallery-editor-remove {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    padding: 8px 10px;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 800;
}

.gallery-editor-remove {
    border-top: 1px solid var(--line);
    color: var(--danger);
}

.gallery-editor-choice input,
.gallery-editor-remove input {
    width: 18px;
    min-width: 18px;
    min-height: 18px;
    accent-color: var(--rose);
}

.gallery-upload-zone {
    min-height: 126px;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 8px;
    padding: 20px;
    border: 1px dashed rgba(244, 47, 131, 0.5);
    border-radius: 12px;
    background: #fff8fb;
    text-align: center;
    cursor: pointer;
}

.gallery-upload-zone > span {
    color: var(--ink);
    font-weight: 900;
}

.gallery-upload-zone input {
    max-width: 100%;
}

.gallery-upload-preview[hidden] {
    display: none;
}

.gallery-upload-preview figure {
    overflow: hidden;
    margin: 0;
    border-radius: 10px;
    background: #fff;
}

.gallery-upload-preview img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
}

.gallery-upload-preview figcaption {
    padding: 8px;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.72rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.slug-field {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.slug-field:focus-within {
    border-color: rgba(244, 47, 131, 0.52);
    box-shadow: 0 0 0 3px rgba(244, 47, 131, 0.08);
}

.slug-field span {
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    background: #fff1f6;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.slug-field input {
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.seo-snippet-preview {
    display: grid;
    gap: 5px;
    padding: 18px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(117, 67, 85, 0.1);
}

.seo-snippet-preview span {
    overflow: hidden;
    color: #28743f;
    font-size: 0.78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.seo-snippet-preview strong {
    color: #1a0dab;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.25;
}

.seo-snippet-preview p {
    margin: 0;
    color: #4d5156;
    font-size: 0.85rem;
    line-height: 1.5;
}

.profile-seo-section {
    display: grid;
    gap: 14px;
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.profile-seo-section h3,
.profile-seo-section p {
    margin: 0;
}

.profile-seo-section p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.86rem;
}

.admin-page {
    display: grid;
    gap: 26px;
    min-width: 0;
}

.admin-heading {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    padding: 26px 28px;
    border-radius: 14px;
    background: var(--ink);
    color: #fff;
    box-shadow: 0 22px 58px rgba(45, 36, 48, 0.2);
}

.admin-heading h2 {
    margin-bottom: 8px;
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 3.4rem);
    letter-spacing: -0.03em;
    line-height: 0.98;
}

.admin-heading p {
    max-width: 66ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.55;
}

.admin-access-badge {
    flex: 0 0 auto;
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--rose);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
}

.admin-overview {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.admin-overview div {
    padding: 18px;
}

.admin-overview div + div {
    border-left: 1px solid var(--line);
}

.admin-overview dt {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 850;
}

.admin-overview dd {
    margin: 0;
    color: var(--ink);
    font-size: 1.8rem;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}

.admin-section {
    display: grid;
    gap: 16px;
    min-width: 0;
}

.admin-section-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
}

.admin-section-heading h2,
.admin-section-heading p {
    margin: 0;
}

.admin-section-heading h2 {
    color: var(--ink);
    font-size: 1.5rem;
}

.admin-section-heading p {
    margin-top: 5px;
    color: var(--muted);
}

.admin-section-heading > span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 850;
}

.admin-account-list {
    overflow: hidden;
    border: 0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(117, 67, 85, 0.08);
}

.admin-account-row {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(440px, auto);
    gap: 24px;
    align-items: center;
    padding: 18px;
}

.admin-account-row + .admin-account-row {
    border-top: 1px solid var(--line);
}

.admin-account-identity {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.admin-account-avatar {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--rose-soft);
    color: #a61958;
    font-size: 1.1rem;
    font-weight: 900;
}

.admin-account-identity h3,
.admin-account-identity p {
    margin: 0;
}

.admin-account-identity h3 {
    color: var(--ink);
    font-size: 1rem;
}

.admin-account-identity p {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.8rem;
}

.admin-account-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 7px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 750;
}

.admin-inline-form {
    display: grid;
    grid-template-columns: 128px 138px auto auto;
    gap: 9px;
    align-items: end;
}

.admin-inline-form label {
    display: grid;
    gap: 5px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 850;
}

.admin-inline-form select,
.admin-moderation-form select {
    min-height: 40px;
    padding: 8px 9px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
}

.admin-inline-form .text-link {
    align-self: center;
    white-space: nowrap;
}

.admin-product-table-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    border: 0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(117, 67, 85, 0.08);
}

.admin-product-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
}

.admin-product-table th,
.admin-product-table td {
    padding: 13px 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
}

.admin-product-table th {
    background: #fff8fb;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 900;
}

.admin-product-table tbody tr:last-child td {
    border-bottom: 0;
}

.admin-product-table td {
    color: var(--ink);
    font-size: 0.86rem;
    font-variant-numeric: tabular-nums;
}

.admin-product-identity {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.admin-product-identity > img,
.admin-product-identity > span {
    width: 44px;
    height: 44px;
    display: block;
    border-radius: 9px;
    background: var(--rose-soft);
    object-fit: cover;
}

.admin-product-identity strong,
.admin-product-identity small {
    display: block;
}

.admin-product-identity small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.72rem;
}

.admin-state {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 850;
}

.admin-state.is-active {
    background: var(--green-soft);
    color: #416524;
}

.admin-state.is-muted {
    background: #f3edf0;
    color: var(--muted);
}

.admin-moderation-form {
    display: flex;
    gap: 7px;
    align-items: center;
}

.admin-moderation-form .text-link {
    min-height: auto;
}

@media (max-width: 1120px) {
    .public-product-hero {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
        gap: 34px;
    }

    .product-gallery-main,
    .product-gallery-main img,
    .product-gallery-fallback {
        min-height: 460px;
    }

    .admin-account-row {
        grid-template-columns: 1fr;
    }

    .admin-inline-form {
        grid-template-columns: 128px 138px auto 1fr;
    }
}

@media (max-width: 820px) {
    html {
        overflow-x: hidden;
    }

    .public-product-page {
        width: min(100% - 28px, 720px);
        padding-top: 22px;
    }

    .public-product-hero {
        grid-template-columns: 1fr;
    }

    .public-product-summary {
        position: static;
        padding-top: 0;
    }

    .public-product-summary h1 {
        max-width: 18ch;
    }

    .product-detail-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail-list div:not(:nth-child(3n + 1)) {
        padding-left: 0;
        border-left: 0;
    }

    .product-detail-list div:nth-child(even) {
        padding-left: 18px;
        border-left: 1px solid var(--line);
    }

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

    .admin-overview div + div {
        border-left: 0;
    }

    .admin-overview div:not(:nth-child(3n + 1)) {
        border-left: 1px solid var(--line);
    }

    .admin-overview div:nth-child(n + 4) {
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 620px) {
    .product-gallery {
        grid-template-columns: 1fr;
    }

    .product-gallery-main {
        grid-column: 1;
        min-height: 390px;
    }

    .product-gallery-main img,
    .product-gallery-fallback {
        min-height: 390px;
    }

    .product-gallery-thumbs {
        grid-column: 1;
        grid-row: 2;
        grid-auto-flow: column;
        grid-auto-columns: 72px;
        overflow-x: auto;
        padding: 2px 2px 8px;
    }

    .product-gallery-thumb {
        width: 72px;
        height: 72px;
    }

    .public-product-summary h1 {
        font-size: clamp(2.5rem, 14vw, 4rem);
    }

    .product-detail-heading,
    .admin-heading,
    .admin-section-heading {
        display: grid;
        align-items: start;
    }

    .product-detail-list {
        grid-template-columns: 1fr;
    }

    .product-detail-list div,
    .product-detail-list div:nth-child(even) {
        min-height: auto;
        padding: 17px 0;
        border-left: 0;
    }

    .public-store-card-actions {
        grid-template-columns: 1fr;
    }

    .gallery-editor-grid,
    .gallery-upload-preview {
        grid-template-columns: 1fr;
    }

    .gallery-editor-copy {
        display: grid;
    }

    .gallery-editor-copy > span {
        justify-self: start;
    }

    .admin-heading {
        padding: 20px;
    }

    .admin-access-badge {
        justify-self: start;
    }

    .admin-overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-overview div:not(:nth-child(3n + 1)) {
        border-left: 0;
    }

    .admin-overview div:nth-child(even) {
        border-left: 1px solid var(--line);
    }

    .admin-overview div:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }

    .admin-account-row {
        padding: 14px;
    }

    .admin-inline-form {
        grid-template-columns: 1fr;
    }

    .admin-inline-form .secondary-button,
    .admin-inline-form .text-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .admin-product-table-wrap {
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .admin-product-table {
        min-width: 0;
        display: block;
    }

    .admin-product-table thead {
        display: none;
    }

    .admin-product-table tbody {
        display: grid;
        gap: 12px;
    }

    .admin-product-table tr {
        display: grid;
        overflow: hidden;
        border: 0;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 12px 30px rgba(117, 67, 85, 0.07);
    }

    .admin-product-table td,
    .admin-product-table tbody tr:last-child td {
        min-width: 0;
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 10px;
        align-items: center;
        padding: 11px 12px;
        border-bottom: 1px solid var(--line);
    }

    .admin-product-table td:last-child {
        border-bottom: 0;
    }

    .admin-product-table td::before {
        content: attr(data-label);
        color: var(--muted);
        font-size: 0.7rem;
        font-weight: 900;
        text-transform: uppercase;
    }

    .admin-product-identity {
        min-width: 0;
    }

    .admin-moderation-form {
        min-width: 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
    }
}
