:root {
    --color-primary-500: #3A8D99;
    --color-primary-600: #2F7A85;
    --color-accent-500: #E87A3A;
    --color-accent-600: #D16A30;
    --color-bg-base: #F9F7F3;
    --color-surface: #FFFFFF;
    --color-surface-muted: #FFF8EF;
    --color-text-primary: #2D3748;
    --color-text-strong: #1A202C;
    --color-text-secondary: #718096;
    --color-border: #E2E8F0;
    --color-success: #38A169;
    --color-warning: #D69E2E;
    --color-info: #3182CE;
    --color-error: #E05252;
    --gradient-primary: linear-gradient(135deg, #3A8D99 0%, #5BB8C4 100%);
    --gradient-accent: linear-gradient(120deg, #E87A3A 0%, #F2A978 100%);
    --shadow-soft: 0 20px 50px rgba(18, 36, 52, 0.08);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

body.smart-public-body {
    margin: 0;
    background: radial-gradient(circle at top left, rgba(91, 184, 196, 0.08), transparent 32%), var(--color-bg-base);
    color: var(--color-text-primary);
    font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
}

.smart-public-site {
    min-height: 100vh;
}

.smart-public-shell {
    max-width: 1220px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.smart-public-trustbar {
    background: rgba(58, 141, 153, 0.08);
    border-bottom: 1px solid rgba(58, 141, 153, 0.14);
    font-size: 13px;
    color: var(--color-primary-600);
}

.smart-public-trustbar .smart-public-shell {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: wrap;
}

.smart-public-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px) saturate(1.1);
    background: rgba(249, 247, 243, 0.82);
    border-bottom: 1px solid rgba(226, 232, 240, 0.92);
}

.smart-public-header__inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.smart-public-logo {
    display: grid;
    gap: 4px;
    text-decoration: none;
    border-bottom: 0;
}

.smart-public-logo span {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-text-strong);
}

.smart-public-logo small {
    color: var(--color-text-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.smart-public-account-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(58, 141, 153, 0.2);
    background: rgba(58, 141, 153, 0.08);
    color: var(--color-primary-600);
    text-decoration: none;
    border-bottom: 0;
    font-size: 13px;
    font-weight: 700;
}

.smart-public-account-status__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-success);
    box-shadow: 0 0 0 4px rgba(56, 161, 105, 0.12);
}

.smart-public-account-status__label {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.smart-public-nav {
    margin-left: 60px;
}

.smart-public-account-status {
    margin-left: auto;
}

.smart-public-header__actions--guest {
    margin-left: auto;
}

.smart-public-header__actions--authenticated {
    margin-left: -10px;
}

.smart-public-nav,
.smart-public-header__actions,
.smart-public-hero__actions,
.smart-public-card__actions,
.smart-public-inline-links,
.smart-public-list-meta,
.smart-public-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.smart-public-list-meta {
    justify-content: space-between;
    row-gap: 8px;
}

.smart-public-card__actions {
    position: relative;
    display: grid;
    gap: 10px;
}

.smart-public-inline-form {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    min-width: 0;
    margin: 0;
}

.smart-public-inline-form .smart-public-button {
    width: 100%;
}

.smart-public-nav a,
.smart-public-footer__links a,
.smart-public-breadcrumbs a {
    color: var(--color-text-primary);
    text-decoration: none;
    border-bottom: 0;
}

.smart-public-nav a.is-active {
    color: var(--color-primary-600);
    font-weight: 700;
}

.smart-public-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    max-width: 100%;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid transparent;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-bottom: 0;
}

.smart-public-button--primary {
    background: var(--color-accent-500);
    color: #fff;
}

.smart-public-button--secondary {
    background: var(--color-primary-500);
    color: #fff;
}

.smart-public-button--ghost {
    background: var(--color-surface);
    color: var(--color-text-primary);
    border-color: var(--color-border);
}

.smart-public-menu-toggle {
    display: none;
    min-height: 48px;
    width: 48px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text-primary);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease;
}

.smart-public-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.smart-public-menu-toggle[aria-expanded="true"] {
    border-color: rgba(58, 141, 153, 0.4);
    background: rgba(58, 141, 153, 0.08);
}

.smart-public-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.smart-public-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.smart-public-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.smart-public-mobile-menu {
    display: none;
}

.smart-public-mobile-menu__home,
.smart-public-mobile-nav {
    padding-left: 24px;
    padding-right: 24px;
}

.smart-public-mobile-menu__home {
    padding-top: 12px;
    padding-bottom: 8px;
}

.smart-public-mobile-menu__home a {
    display: block;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text-strong);
    font-weight: 700;
    border-bottom: 0;
}

.smart-public-mobile-menu__home a.is-active {
    border-color: rgba(58, 141, 153, 0.35);
    background: rgba(58, 141, 153, 0.08);
    color: var(--color-primary-600);
}

.smart-public-mobile-nav {
    display: grid;
    gap: 12px;
    padding-top: 4px;
    padding-bottom: 16px;
}

.smart-public-mobile-nav__group {
    display: grid;
    gap: 6px;
}

.smart-public-mobile-nav__title {
    font-size: 12px;
    color: var(--color-text-secondary);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0 2px 4px;
}

.smart-public-mobile-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text-primary);
    border-bottom: 0;
}

.smart-public-mobile-nav a.is-active {
    border-color: rgba(58, 141, 153, 0.35);
    background: rgba(58, 141, 153, 0.08);
    color: var(--color-primary-600);
    font-weight: 700;
}

body.smart-public-menu-open {
    overflow: hidden;
}

.smart-public-main {
    padding-bottom: 72px;
}

.smart-public-hero {
    position: relative;
    overflow: hidden;
}

.smart-public-hero--carousel {
    min-height: 0;
}

.smart-public-hero__slides {
    position: relative;
    min-height: inherit;
}

.smart-public-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.smart-public-hero__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.smart-public-hero__slide-media {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(135deg, rgba(19, 33, 45, 0.36), rgba(255, 255, 255, 0.08)), var(--hero-bg-image);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

.smart-public-hero__slide-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.64) 42%, rgba(255, 255, 255, 0.18) 100%);
}

.smart-public-hero__inner--carousel {
    position: relative;
    z-index: 1;
    min-height: 0;
    align-content: start;
}

.smart-public-hero__actions--single {
    display: flex;
    margin-top: 20px;
}

.smart-public-hero__nav {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.smart-public-hero__nav-button,
.smart-public-hero__dot {
    border: 0;
    cursor: pointer;
}

.smart-public-hero__nav-button {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(121, 130, 138, 0.78);
    color: #fff;
    font-size: 24px;
    line-height: 1;
}

.smart-public-hero__dots {
    display: flex;
    gap: 10px;
}

.smart-public-hero__dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(32, 48, 64, 0.26);
}

.smart-public-hero__dot.is-active {
    background: var(--color-primary-600);
}

.smart-public-hero--primary {
    background: linear-gradient(135deg, rgba(58, 141, 153, 0.12), rgba(255, 255, 255, 0.64) 58%, rgba(232, 122, 58, 0.10));
}

.smart-public-hero--accent {
    background: linear-gradient(135deg, rgba(232, 122, 58, 0.16), rgba(255, 255, 255, 0.58) 52%, rgba(58, 141, 153, 0.08));
}

.smart-public-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding-top: 56px;
    padding-bottom: 56px;
}

.smart-public-hero__copy {
    max-width: 165ch;
}

.smart-public-hero__cta-layer {
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    z-index: 2;
}

.smart-public-hero__actions {
    justify-content: center;
}

.smart-public-visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.smart-public-hero__copy h1,
.smart-public-hero__copy h2 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 2.25em);
    line-height: 1.05;
    color: var(--color-text-strong);
}

.smart-public-hero__copy p,
.smart-public-section-heading p,
.smart-public-card p,
.smart-public-panel p,
.smart-public-footer p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.smart-public-eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(58, 141, 153, 0.12);
    color: var(--color-primary-600);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.smart-public-content {
    display: grid;
    gap: 24px;
    padding-top: 32px;
}

.smart-public-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: var(--color-text-secondary);
    font-size: 14px;
}

.smart-public-section-heading h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3vw, 1.5em);
    color: var(--color-text-strong);
}

.smart-public-grid,
.smart-public-cards,
.smart-public-stats,
.smart-public-article-list {
    display: grid;
    gap: 18px;
}

.smart-public-grid--2,
.smart-public-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.smart-public-grid--3,
.smart-public-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.smart-public-grid--product-hero {
    grid-template-columns: minmax(0, 64fr) minmax(280px, 36fr);
    align-items: start;
}

.smart-public-grid--specs-trust,
.smart-public-grid--compact-cards {
    align-items: start;
}

.smart-public-grid--emotion-specs {
    grid-template-columns: minmax(0, 64fr) minmax(280px, 36fr);
    align-items: start;
    margin-top: 0;
    margin-bottom: 0;
}
.smart-public-grid--emotion-specs > * {
    align-self: start;
}

.smart-public-specs-trust-dev {
    background: var(--color-surface-muted);
    border-radius: var(--radius-lg);
    border: 1.5px dashed var(--color-border);
    color: var(--color-text-secondary);
    padding: 20px 0;
    text-align: center;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 0;
}

.smart-public-grid--brand-bridge {
    grid-template-columns: minmax(0, 1fr);
}

.smart-public-brand-stream-head {
    margin-top: 10px;
    margin-bottom: 14px;
    padding: 8px 12px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: var(--color-surface-muted);
    justify-content: flex-start;
    gap: 12px;
}

.smart-public-card,
.smart-public-panel,
.smart-public-stat,
.smart-public-filterbar,
.smart-public-empty {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.smart-public-card,
.smart-public-panel,
.smart-public-stat,
.smart-public-empty {
    padding: 20px;
    display: grid;
    gap: 14px;
}

.smart-public-card--compact,
.smart-public-panel--compact,
.smart-public-panel--brand-bridge {
    align-content: start;
    height: max-content;
}

.smart-public-panel--hero-side {
    padding: 16px;
    gap: 10px;
}

.smart-public-grid--product-hero .smart-public-grid--compact-cards {
    gap: 10px;
}

.smart-public-grid--product-hero .smart-public-card--compact {
    padding: 14px;
    gap: 8px;
    border-radius: 14px;
    box-shadow: none;
}

.smart-public-grid--product-hero .smart-public-card--compact p {
    line-height: 1.55;
}

.smart-public-card__actions--hero {
    gap: 8px;
    row-gap: 8px;
    margin-top: 2px;
}

.smart-public-action-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    min-width: 0;
}

.smart-public-action-row--card {
    flex-wrap: nowrap;
}

.smart-public-action-row--detail {
    flex-wrap: wrap;
}

.smart-public-action-row > .smart-public-button,
.smart-public-action-row > .smart-public-inline-form,
.smart-public-action-row > .smart-public-channel-popover {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    width: auto;
}

.smart-public-action-row--detail > .smart-public-button,
.smart-public-action-row--detail > .smart-public-inline-form,
.smart-public-action-row--detail > .smart-public-channel-popover {
    flex: 1 1 180px;
}

.smart-public-card__actions--hero .smart-public-button {
    min-height: 42px;
    padding: 0 12px;
    font-size: 13px;
}

.smart-public-channel-popover {
    position: relative;
    display: block;
    width: 100%;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
}

.smart-public-channel-popover__summary {
    width: 100%;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    min-height: 48px;
    padding: 0 18px;
    box-sizing: border-box;
    background: var(--color-surface);
    cursor: pointer;
    list-style: none;
}

.smart-public-channel-popover__summary::-webkit-details-marker,
.smart-public-channel-popover__summary::marker {
    display: none;
}

.smart-public-channel-popover__summary::after {
    content: "▾";
    margin-left: auto;
    color: var(--color-accent-500);
    transition: transform 0.2s ease;
}

.smart-public-channel-popover[open] .smart-public-channel-popover__summary::after {
    transform: rotate(180deg);
}

.smart-public-channel-popover__content {
    display: grid;
    gap: 10px;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 6;
    min-width: min(320px, calc(100vw - 48px));
    padding: 12px 16px 16px;
    background: #fff;
    border: 1px solid rgba(58, 141, 153, 0.18);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.smart-public-channel-popover__item,
.smart-public-channel-list__item {
    display: grid;
    gap: 6px;
}

.smart-public-channel-list--detail {
    width: 100%;
    border: 1px solid rgba(58, 141, 153, 0.16);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(58, 141, 153, 0.025);
}

.smart-public-channel-list__content {
    display: grid;
    gap: 10px;
    position: static;
    min-width: 0;
    padding: 10px 14px 14px;
    background: rgba(255, 255, 255, 0.88);
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.smart-public-channel-list--detail .smart-public-channel-list__content {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.smart-public-channel-list--detail .smart-public-channel-list__item {
    gap: 4px;
}

.smart-public-channel-list--detail .smart-public-button {
    min-height: 40px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(58, 141, 153, 0.08);
    color: var(--color-primary-600);
    border-color: rgba(58, 141, 153, 0.14);
}

.smart-public-channel-list--detail .smart-public-muted {
    font-size: 12px;
    opacity: 0.82;
}

.smart-public-card img,
.smart-public-visual {
    width: 100%;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(58, 141, 153, 0.10), rgba(232, 122, 58, 0.12));
    object-fit: cover;
}

.smart-public-product-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.smart-public-card--gallery {
    padding: 14px;
}

.smart-public-gallery {
    display: grid;
    gap: 12px;
}

.smart-public-gallery__main-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.smart-public-gallery__main-wrap.is-loading::after,
.smart-public-gallery__thumb.is-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(58, 141, 153, 0.10) 0%,
        rgba(58, 141, 153, 0.22) 44%,
        rgba(58, 141, 153, 0.10) 100%
    );
    background-size: 220% 100%;
    animation: smartPublicGalleryShimmer 1.15s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.smart-public-gallery__main-wrap.is-loading img,
.smart-public-gallery__thumb.is-loading img {
    opacity: 0.35;
}

.smart-public-gallery__main {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.smart-public-gallery.is-switching .smart-public-gallery__main {
    opacity: 0.82;
    transform: scale(0.992);
}

.smart-public-gallery__counter {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(26, 32, 44, 0.72);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.smart-public-gallery__badges {
    position: absolute;
    left: 10px;
    bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.smart-public-gallery__badges span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(58, 141, 153, 0.86);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.smart-public-gallery__thumbs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(76px, 92px);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
}

.smart-public-gallery__thumb {
    position: relative;
    border: 1px solid rgba(58, 141, 153, 0.2);
    border-radius: 12px;
    background: #fff;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.smart-public-gallery__thumb img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.smart-public-gallery__thumb:hover,
.smart-public-gallery__thumb:focus-visible,
.smart-public-gallery__thumb.is-active {
    border-color: var(--color-primary-500);
    box-shadow: 0 0 0 2px rgba(58, 141, 153, 0.16);
    transform: translateY(-1px);
}

.smart-public-action-hints {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.smart-public-action-hints span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(58, 141, 153, 0.24);
    background: rgba(58, 141, 153, 0.08);
    color: var(--color-primary-600);
    font-size: 12px;
    font-weight: 700;
}

.smart-public-card h3,
.smart-public-panel h3,
.smart-public-card h2 {
    margin-top: 0;
    margin-bottom: 0;
    color: var(--color-text-strong);
}

.smart-public-card p,
.smart-public-panel p {
    margin: 0;
}

.smart-public-card__media-link {
    display: block;
    border-bottom: 0;
}

.smart-public-card__title-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 0;
}

.smart-public-card__title-link:visited {
    color: inherit;
}

.smart-public-card__title-link:hover,
.smart-public-card__title-link:focus-visible {
    color: var(--color-primary-600);
    text-decoration: underline;
}

.smart-public-brand-logo {
    object-fit: contain;
    background: linear-gradient(135deg, rgba(58, 141, 153, 0.06), rgba(232, 122, 58, 0.10));
}

.smart-public-topic-cover {
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
    max-height: 380px;
}

.smart-public-topic-body {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.smart-public-topic-body > * {
    margin: 0;
    min-width: 0;
    max-width: 100%;
}

.smart-public-topic-body img,
.smart-public-topic-body video,
.smart-public-topic-body iframe,
.smart-public-topic-body canvas,
.smart-public-topic-body svg {
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: var(--radius-md);
}

.smart-public-topic-body pre,
.smart-public-topic-body table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
}

.smart-public-topic-body a {
    word-break: break-word;
}

.smart-public-markdown {
    display: grid;
    gap: 14px;
    max-width: 72ch;
    margin-left: auto;
    margin-right: auto;
}

.smart-public-markdown > * {
    margin: 0;
}

.smart-public-markdown h1,
.smart-public-markdown h2,
.smart-public-markdown h3,
.smart-public-markdown h4,
.smart-public-markdown h5,
.smart-public-markdown h6 {
    color: var(--color-text-strong);
    line-height: 1.25;
}

.smart-public-markdown ul,
.smart-public-markdown ol {
    margin: 0;
    padding-left: 22px;
}

.smart-public-markdown li + li {
    margin-top: 6px;
}

.smart-public-markdown a {
    color: var(--color-primary-600);
    word-break: break-word;
}

.smart-public-markdown blockquote {
    margin: 0;
    padding: 14px 16px;
    border-left: 4px solid rgba(58, 141, 153, 0.35);
    background: rgba(58, 141, 153, 0.08);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.smart-public-markdown code {
    padding: 2px 6px;
    border-radius: 8px;
    background: rgba(26, 32, 44, 0.08);
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.95em;
}

.smart-public-markdown pre {
    margin: 0;
    padding: 16px;
    overflow-x: auto;
    border-radius: var(--radius-md);
    background: #1f2933;
    color: #f7fafc;
}

.smart-public-markdown pre code {
    padding: 0;
    background: transparent;
    color: inherit;
}

.smart-public-markdown table {
    width: 100%;
    border-collapse: collapse;
}

.smart-public-markdown th,
.smart-public-markdown td {
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    text-align: left;
    vertical-align: top;
}

.smart-public-markdown th {
    background: rgba(58, 141, 153, 0.08);
    color: var(--color-text-strong);
}

.smart-public-markdown img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.smart-public-tag {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(58, 141, 153, 0.10);
    color: var(--color-primary-600);
    font-size: 12px;
    font-weight: 700;
}

.smart-public-filterbar {
    padding: 20px;
}

.smart-public-filterbar--primary {
    padding: 26px 24px 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 247, 243, 0.98) 100%);
    border-color: rgba(58, 141, 153, 0.18);
    box-shadow: 0 26px 70px rgba(18, 36, 52, 0.12);
}

.smart-public-filterbar--primary .smart-public-section-heading {
    margin-bottom: 14px;
}

.smart-public-filterbar--primary .smart-public-list-meta {
    margin-top: 16px;
}

.smart-public-filterbar .smart-public-list-meta {
    margin-top: 16px;
}

.smart-public-filterbar--primary .smart-public-stats--inline {
    margin-top: 14px;
}

.smart-public-filter-explorer {
    display: grid;
    gap: 16px;
}

.smart-public-filter-explorer__form {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(58, 141, 153, 0.18);
    background: linear-gradient(135deg, rgba(58, 141, 153, 0.08), rgba(255, 255, 255, 0.96) 58%, rgba(232, 122, 58, 0.10));
    box-shadow: 0 18px 48px rgba(18, 36, 52, 0.10);
    align-items: end;
}

.smart-public-filter-explorer__form > * {
    min-width: 0;
}

.smart-public-filter-explorer__field {
    min-width: 0;
}

.smart-public-filter-explorer__field--keyword {
    position: relative;
}

.smart-public-filter-explorer__field:nth-of-type(2) {
    min-width: 0;
}

.smart-public-filter-explorer__field:nth-of-type(3) {
    min-width: 0;
}

.smart-public-filter-explorer__field input,
.smart-public-filter-explorer__field select {
    width: 100%;
    min-width: 0;
    max-width: none;
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
}

.smart-public-filter-explorer__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column: span 2;
    align-self: end;
    gap: 10px;
    min-width: 0;
}

.smart-public-filter-explorer__actions .smart-public-button {
    min-width: 0;
    width: 100%;
    min-height: 50px;
    box-sizing: border-box;
}

.smart-public-filter-explorer__meta {
    margin-top: 16px;
}

.smart-public-filter-explorer__stats {
    margin-top: 0;
    gap: 8px;
}

.smart-public-filter-explorer__stats .smart-public-stat {
    background: rgba(255, 255, 255, 0.42);
    border-color: rgba(226, 232, 240, 0.58);
}

.smart-public-filter-explorer__stats .smart-public-stat strong {
    background: rgba(232, 122, 58, 0.22);
    color: var(--color-accent-600);
    font-size: clamp(16px, 1.8vw, 21px);
}

.smart-public-filter-explorer__stats .smart-public-stat span {
    background: rgba(255, 255, 255, 0.56);
    color: var(--color-text-secondary);
    font-size: 12px;
}

.smart-public-stats--inline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.smart-public-stats--inline .smart-public-stat {
    min-height: 44px;
    padding: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.64);
    border-color: rgba(226, 232, 240, 0.78);
    box-shadow: none;
    border-radius: 14px;
}

.smart-public-stats--inline .smart-public-stat strong {
    margin: 0;
    display: grid;
    place-items: center;
    min-height: 44px;
    background: rgba(232, 122, 58, 0.5);
    color: #fff;
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1;
}

.smart-public-stats--inline .smart-public-stat span {
    display: grid;
    align-content: center;
    padding: 0 12px;
    font-size: 13px;
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.72);
}

.smart-public-stats--inline .smart-public-stat > strong,
.smart-public-stats--inline .smart-public-stat > span {
    min-width: 0;
}

.smart-public-stats--inline .smart-public-muted {
    font-size: 13px;
}

.smart-public-cta-band {
    margin-top: 8px;
    margin-bottom: 8px;
}

.smart-public-cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(58, 141, 153, 0.12), rgba(255, 255, 255, 0.82) 48%, rgba(232, 122, 58, 0.10));
    border: 1px solid rgba(58, 141, 153, 0.18);
    box-shadow: 0 24px 60px rgba(18, 36, 52, 0.10);
}

.smart-public-cta-band__content {
    display: grid;
    gap: 10px;
    max-width: 56ch;
}

.smart-public-cta-band__content h2 {
    margin: 0;
    font-size: clamp(22px, 2.6vw, 34px);
    color: var(--color-text-strong);
}

.smart-public-cta-band__content p {
    margin: 0;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.smart-public-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.smart-public-form-row {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) minmax(180px, 0.8fr) auto;
    gap: 14px;
    align-items: end;
}

.smart-public-field {
    display: grid;
    gap: 8px;
}

.smart-public-field label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.smart-public-field input,
.smart-public-field select,
.smart-public-field textarea,
.smart-public-qty {
    width: 100%;
    min-width: 0;
    max-width: none;
    box-sizing: border-box;
    min-height: 38px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text-primary);
}

.smart-public-field input,
.smart-public-field select,
.smart-public-field textarea,
.smart-public-qty {
    border-color: rgba(232, 122, 58, 0.22);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.smart-public-field input:focus,
.smart-public-field select:focus,
.smart-public-field textarea:focus,
.smart-public-field input:hover,
.smart-public-field select:hover,
.smart-public-field textarea:hover,
.smart-public-qty:focus,
.smart-public-qty:hover {
    border-color: rgba(232, 122, 58, 0.5);
    box-shadow: 0 0 0 3px rgba(232, 122, 58, 0.12);
    background: #fffdf9;
}

.smart-public-input--short {
    max-width: 240px;
}

.smart-public-input--medium {
    max-width: 360px;
}

.smart-public-input--long {
    max-width: 520px;
}

.smart-public-input--search {
    max-width: 640px;
}

.smart-public-form-submit-actions {
    margin-top: 12px;
}

.smart-public-input--full {
    max-width: none;
}

.smart-public-qty {
    width: 96px;
    min-width: 96px;
    max-width: 96px;
    text-align: center;
}

.smart-public-field textarea {
    min-height: 140px;
    resize: vertical;
}

.smart-public-order-summary-media {
    margin-bottom: 14px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(58, 141, 153, 0.16);
    background: #fff;
}

.smart-public-order-summary-media img {
    width: 100%;
    height: clamp(180px, 34vw, 320px);
    max-height: 320px;
    object-fit: cover;
    display: block;
}

.smart-public-price--order-unit {
    font-size: clamp(20px, 2.8vw, 30px);
    line-height: 1.15;
    white-space: nowrap;
}

.smart-public-price--order-total {
    font-size: clamp(24px, 3.2vw, 34px);
    line-height: 1.15;
    white-space: nowrap;
}

.smart-public-sku-options {
    display: grid;
    gap: 10px;
}

.smart-public-sku-option {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 12px;
    border: 1px solid rgba(58, 141, 153, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    cursor: pointer;
}

.smart-public-sku-option:has(input:checked) {
    border-color: rgba(232, 122, 58, 0.58);
    box-shadow: 0 0 0 3px rgba(232, 122, 58, 0.12);
    background: #fffaf5;
}

.smart-public-sku-option input[type="radio"] {
    margin-top: 3px;
}

.smart-public-sku-option__main {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.smart-public-sku-option__main strong {
    color: var(--color-text-strong);
    font-size: 13px;
    line-height: 1.4;
    word-break: break-word;
}

.smart-public-sku-option__main span {
    color: var(--color-text-secondary);
    font-size: 13px;
    line-height: 1.4;
}

.smart-public-sku-spec-list {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.smart-public-sku-spec-item {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(58, 141, 153, 0.10);
    color: var(--color-primary-600);
    font-size: 12px;
    font-weight: 700;
}

.smart-public-filter-explorer .smart-public-filter-explorer__field input,
.smart-public-filter-explorer .smart-public-filter-explorer__field select {
    width: 100%;
    min-width: 0;
    max-width: none;
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 14px;
}

.smart-public-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.smart-public-trust-pill {
    display: inline-flex;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(58, 141, 153, 0.08);
    border: 1px solid rgba(58, 141, 153, 0.12);
    color: var(--color-primary-600);
    font-weight: 700;
}

.smart-public-stat strong {
    display: block;
    margin-bottom: 8px;
    font-size: 30px;
    color: var(--color-text-strong);
}

.smart-public-price {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--color-accent-500);
}

.smart-public-price--card {
    font-size: 16px;
}

.smart-public-alert {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-weight: 600;
}

.smart-public-alert--success {
    background: rgba(56, 161, 105, 0.10);
    color: var(--color-success);
    border-color: rgba(56, 161, 105, 0.18);
}

.smart-public-alert--warning {
    background: rgba(214, 158, 46, 0.10);
    color: #946200;
    border-color: rgba(214, 158, 46, 0.20);
}

.smart-public-alert--danger {
    background: rgba(224, 82, 82, 0.10);
    color: #b83232;
    border-color: rgba(224, 82, 82, 0.20);
}

.smart-public-muted {
    color: var(--color-text-secondary);
}

.smart-public-footer {
    padding: 32px 0 44px;
    background: #f3efe7;
    border-top: 1px solid rgba(45, 55, 72, 0.08);
}

.smart-public-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.smart-public-empty {
    color: var(--color-text-secondary);
}

.smart-public-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.smart-public-pagination--center {
    justify-content: center;
}

.smart-public-pagination a,
.smart-public-pagination span {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text-primary);
    text-decoration: none;
}

.smart-public-pagination .is-active {
    background: var(--color-primary-500);
    color: #fff;
    border-color: var(--color-primary-500);
}

.smart-public-pagination .is-disabled {
    color: var(--color-text-secondary);
    background: #f4f5f7;
    border-color: var(--color-border);
    cursor: not-allowed;
}

.smart-public-pagination .is-gap {
    border-style: dashed;
    color: var(--color-text-secondary);
}

.smart-public-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.smart-public-chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-text-primary);
    text-decoration: none;
    border-bottom: 0;
    font-size: 13px;
    font-weight: 700;
}

.smart-public-chip.is-active {
    border-color: rgba(58, 141, 153, 0.36);
    background: rgba(58, 141, 153, 0.12);
    color: var(--color-primary-600);
}

.smart-public-timeline {
    display: grid;
    gap: 12px;
}

.smart-public-timeline__item {
    position: relative;
    padding-left: 28px;
}

.smart-public-timeline__item::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 10px;
    bottom: -20px;
    width: 2px;
    background: linear-gradient(180deg, rgba(58, 141, 153, 0.22), rgba(58, 141, 153, 0.05));
}

.smart-public-timeline__item:last-child::before {
    display: none;
}

.smart-public-timeline__dot {
    position: absolute;
    left: 0;
    top: 16px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid rgba(58, 141, 153, 0.45);
    background: #fff;
}

.smart-public-timeline__item.is-collapsed {
    display: none;
}

.smart-public-card__actions--center {
    justify-content: center;
}

button.smart-public-button {
    cursor: pointer;
    font-family: inherit;
}

@media (max-width: 900px) {
    .smart-public-grid--2,
    .smart-public-grid--3,
    .smart-public-form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .smart-public-grid--product-hero,
    .smart-public-grid--brand-bridge,
    .smart-public-grid--emotion-specs {
        grid-template-columns: 1fr;
    }

    .smart-public-specs-trust-dev {
        display: none !important;
    }

    .smart-public-stats--inline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .smart-public-hero__inner {
        padding-top: 48px;
        padding-bottom: 104px;
    }

    .smart-public-hero__inner--carousel {
        min-height: 0;
        padding-top: 48px;
        padding-bottom: 104px;
    }

    .smart-public-hero__nav {
        bottom: 18px;
    }

    .smart-public-hero__copy {
        max-width: 165ch;
    }

    .smart-public-hero__copy h1,
    .smart-public-hero__copy h2 {
        font-size: clamp(32px, 7.2vw, 1.85em);
        line-height: 1.08;
    }

    .smart-public-hero__copy p {
        max-width: 165ch;
    }

    .smart-public-hero--primary {
        background: linear-gradient(160deg, rgba(58, 141, 153, 0.16) 0%, rgba(255, 255, 255, 0.76) 66%, rgba(232, 122, 58, 0.08));
    }

    .smart-public-hero--accent {
        background: linear-gradient(160deg, rgba(232, 122, 58, 0.18) 0%, rgba(255, 255, 255, 0.74) 64%, rgba(58, 141, 153, 0.08));
    }

    .smart-public-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .smart-public-card--gallery {
        padding: 12px;
    }

    .smart-public-gallery__thumbs {
        grid-auto-columns: minmax(72px, 82px);
    }

    .smart-public-header__inner {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .smart-public-nav {
        display: none;
    }

    .smart-public-account-status {
        margin-left: auto;
        max-width: 160px;
    }

    .smart-public-header__actions {
        gap: 8px;
    }

    .smart-public-header__actions--guest {
        margin-left: auto;
    }

    .smart-public-header__actions--authenticated {
        margin-left: 0;
    }

    .smart-public-header__actions .smart-public-button {
        min-height: 42px;
        padding: 0 12px;
        font-size: 13px;
    }

    .smart-public-menu-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .smart-public-mobile-menu {
        display: block;
        border-top: 1px solid rgba(226, 232, 240, 0.92);
        background: rgba(249, 247, 243, 0.96);
        animation: smartPublicMenuFade 0.18s ease;
    }

    .smart-public-mobile-menu[hidden] {
        display: none;
    }

    .smart-public-cta-band__inner {
        padding: 22px 22px;
    }

    .smart-public-timeline__item {
        padding-left: 24px;
    }
}

@media (max-width: 640px) {
    .smart-public-shell {
        padding-left: 16px;
        padding-right: 16px;
    }

    .smart-public-filterbar--primary {
        padding: 22px 18px 20px;
    }

    .smart-public-filter-explorer__form {
        padding: 16px;
    }

    .smart-public-stats--inline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .smart-public-cta-band__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 18px;
    }

    .smart-public-cta-band__actions {
        width: 100%;
        justify-content: flex-start;
    }

    .smart-public-hero__inner {
        padding-top: 42px;
        padding-bottom: 32px;
    }

    .smart-public-hero--carousel {
        min-height: 0;
    }

    .smart-public-hero__inner--carousel {
        min-height: 0;
        padding-top: 42px;
        padding-bottom: 32px;
    }

    .smart-public-hero__nav {
        width: calc(100% - 32px);
        justify-content: space-between;
    }

    .smart-public-hero__nav-button {
        width: 36px;
        height: 36px;
    }

    .smart-public-hero__cta-layer {
        position: static;
        transform: none;
        margin-top: 8px;
    }

    .smart-public-hero__actions {
        justify-content: flex-start;
    }

    .smart-public-card,
    .smart-public-panel,
    .smart-public-stat,
    .smart-public-empty,
    .smart-public-filterbar {
        padding: 18px;
    }

    .smart-public-card--gallery {
        padding: 10px;
    }

    .smart-public-gallery__counter {
        top: 8px;
        right: 8px;
        font-size: 11px;
    }

    .smart-public-gallery__badges {
        left: 8px;
        bottom: 8px;
    }

    .smart-public-gallery__badges span {
        min-height: 26px;
        padding: 0 8px;
        font-size: 11px;
    }

    .smart-public-gallery__thumbs {
        grid-auto-columns: 72px;
    }

}

@media (max-width: 480px) {
    .smart-public-shell {
        padding-left: 16px;
        padding-right: 16px;
    }

    .smart-public-stats--inline {
        grid-template-columns: 1fr;
    }

    .smart-public-cta-band__inner {
        padding: 18px 16px;
    }

    .smart-public-hero__inner {
        padding-top: 42px;
        padding-bottom: 32px;
    }

    .smart-public-card,
    .smart-public-panel,
    .smart-public-stat,
    .smart-public-empty,
    .smart-public-filterbar {
        padding: 18px;
    }

    .smart-public-cards {
        grid-template-columns: 1fr;
    }

    .smart-public-action-row--card {
        gap: 8px;
    }

    .smart-public-action-row > .smart-public-button,
    .smart-public-action-row > .smart-public-inline-form,
    .smart-public-action-row > .smart-public-channel-popover {
        flex-basis: 0;
    }

    .smart-public-channel-popover__summary {
        padding: 0 14px;
        font-size: 13px;
    }

    .smart-public-channel-popover__content {
        left: 0;
        right: auto;
        min-width: min(280px, calc(100vw - 32px));
    }
}

@keyframes smartPublicMenuFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes smartPublicGalleryShimmer {
    from {
        background-position: 100% 0;
    }
    to {
        background-position: -120% 0;
    }
}

/* ─── Order page ──────────────────────────────────────────────────────────── */

.smart-public-grid--order {
    align-items: start;
}

.smart-public-order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.smart-public-form-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.smart-public-grid--top {
    align-items: start;
}

.smart-public-order-qty-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    font-size: 13px;
    color: var(--color-text-secondary);
}

.smart-public-order-total-row {
    display: flex;
    align-items: center;
    padding-top: 12px;
    border-top: 1.5px solid var(--color-border);
}

/* ─── Receiver collapsible block ─────────────────────────────────────────── */

.smart-public-receiver-block {
    border: 1px solid rgba(58, 141, 153, 0.24);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.smart-public-receiver-block--readonly .smart-public-receiver-summary {
    cursor: default;
}

.smart-public-receiver-summary {
    display: grid;
    gap: 4px;
    padding: 12px 16px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    background: rgba(58, 141, 153, 0.04);
    transition: background 0.15s ease;
}

.smart-public-receiver-summary:hover {
    background: rgba(58, 141, 153, 0.09);
}

.smart-public-receiver-summary::-webkit-details-marker,
.smart-public-receiver-summary::marker {
    display: none;
}

.smart-public-receiver-summary__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.smart-public-receiver-summary__head > span:first-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.smart-public-receiver-summary__head--incomplete {
    font-weight: 500;
    color: var(--color-text-secondary);
}

.smart-public-receiver-summary__head--incomplete em {
    font-style: normal;
    color: #b83232;
    font-size: 13px;
    margin-left: 4px;
}

.smart-public-receiver-summary__addr {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.smart-public-receiver-hint {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-accent-500);
    white-space: nowrap;
    flex-shrink: 0;
}

.smart-public-receiver-arrow {
    display: inline-block;
    line-height: 1;
    transition: transform 0.2s ease;
}

.smart-public-receiver-block[open] .smart-public-receiver-arrow {
    transform: rotate(180deg);
}

.smart-public-receiver-block[open] > .smart-public-receiver-summary {
    border-bottom: 1px solid rgba(58, 141, 153, 0.16);
}

.smart-public-receiver-fields {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.smart-public-receiver-block__label {
    margin: 4px 2px -4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary-600);
    letter-spacing: 0.03em;
}

.smart-public-receiver-fields--readonly {
    gap: 10px;
}

.smart-public-receiver-field-line {
    margin: 0;
    font-size: 14px;
    color: var(--color-text-primary);
    line-height: 1.6;
}

.smart-public-receiver-json {
    margin: 8px 0 0;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(58, 141, 153, 0.18);
    background: rgba(58, 141, 153, 0.05);
    color: var(--color-text-secondary);
    white-space: pre-wrap;
    word-break: break-word;
}

.smart-public-order-detail-actions {
    margin-top: 14px;
}

.smart-public-status-card {
    display: grid;
    gap: 16px;
    margin-top: 18px;
    padding: 18px;
    border: 1px solid rgba(58, 141, 153, 0.2);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(58, 141, 153, 0.06), rgba(255, 255, 255, 0.98));
}

.smart-public-status-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.smart-public-status-card__header h3,
.smart-public-status-card__summary,
.smart-public-status-card__guidance p,
.smart-public-status-meta-item p {
    margin: 0;
}

.smart-public-status-card__eyebrow {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary-600);
}

.smart-public-status-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    background: rgba(58, 141, 153, 0.12);
    color: var(--color-primary-600);
}

.smart-public-status-card__badge--pending,
.smart-public-status-card__badge--refunding {
    background: rgba(214, 158, 46, 0.14);
    color: #9c6a03;
}

.smart-public-status-card__badge--paid,
.smart-public-status-card__badge--processing,
.smart-public-status-card__badge--shipped,
.smart-public-status-card__badge--completed {
    background: rgba(56, 161, 105, 0.14);
    color: #1d7b4b;
}

.smart-public-status-card__badge--cancelled,
.smart-public-status-card__badge--closed,
.smart-public-status-card__badge--refunded {
    background: rgba(224, 82, 82, 0.14);
    color: #b33b3b;
}

.smart-public-status-card__summary {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-primary);
}

.smart-public-status-meta-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.smart-public-status-meta-item {
    display: grid;
    gap: 6px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(58, 141, 153, 0.14);
    background: rgba(255, 255, 255, 0.88);
}

.smart-public-status-meta-item strong {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.smart-public-status-meta-item p {
    font-size: 14px;
    color: var(--color-text-strong);
}

.smart-public-status-card__guidance {
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 248, 239, 0.9);
    border: 1px solid rgba(232, 122, 58, 0.14);
}

.smart-public-status-card__guidance strong {
    color: var(--color-text-strong);
}

.smart-public-status-card__guidance p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.smart-public-account-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.smart-public-account-layout__left {
    display: grid;
    gap: 18px;
    align-content: start;
}

.smart-public-account-layout__right {
    align-content: start;
}

.smart-public-panel--fullwidth {
    grid-column: 1 / -1;
}

.smart-public-business-hub {
    gap: 12px;
    align-content: start;
}

.smart-public-business-hub__hint {
    margin: 8px 0 0;
}

.smart-public-business-hub__actions {
    row-gap: 10px;
}

.smart-public-business-expand {
    border: 1px solid rgba(58, 141, 153, 0.24);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.smart-public-business-expand__summary {
    width: 100%;
    justify-content: flex-start;
    border-radius: 0;
    border: 0;
    min-height: 52px;
    padding: 0 16px;
    background: rgba(58, 141, 153, 0.04);
    position: relative;
}

.smart-public-business-expand__summary::after {
    content: "▾";
    margin-left: auto;
    color: var(--color-accent-500);
    transition: transform 0.2s ease;
}

.smart-public-business-expand[open] .smart-public-business-expand__summary::after {
    transform: rotate(180deg);
}

.smart-public-business-expand__content {
    display: grid;
    gap: 10px;
    padding: 14px 16px 16px;
    background: #fff;
    border-top: 1px solid rgba(58, 141, 153, 0.16);
}

.smart-public-business-expand__content p {
    margin: 0;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .smart-public-account-layout {
        grid-template-columns: 1fr;
    }

    .smart-public-business-expand__summary {
        min-height: 48px;
        font-size: 13px;
    }
}