@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Noto+Sans:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap");

:root {
    --wc-bg: #eef5f1;
    --wc-surface: rgba(255, 255, 255, 0.9);
    --wc-surface-strong: #ffffff;
    --wc-border: rgba(17, 58, 44, 0.1);
    --wc-text: #143528;
    --wc-muted: #678172;
    --wc-primary: #0f7a54;
    --wc-primary-strong: #0a5a3d;
    --wc-accent: #f08b55;
    --wc-danger: #c2534c;
    --wc-warning: #e1a82d;
    --wc-shadow: 0 22px 60px rgba(17, 52, 40, 0.12);
    --wc-radius: 24px;
    --wc-modal-display: "Fraunces", Georgia, serif;
    --wc-modal-body: "Plus Jakarta Sans", "Be Vietnam Pro", "Noto Sans", "Segoe UI", system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family:
        "Be Vietnam Pro",
        "Noto Sans",
        "Segoe UI",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Noto Color Emoji",
        sans-serif;
    color: var(--wc-text);
    background:
        radial-gradient(circle at top left, rgba(15, 122, 84, 0.14), transparent 34%),
        radial-gradient(circle at top right, rgba(240, 139, 85, 0.14), transparent 28%),
        linear-gradient(180deg, #f6fbf8 0%, var(--wc-bg) 100%);
}

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

html.wc-page-busy,
html.wc-page-busy body {
    cursor: progress;
}

html.wc-telegram-webapp body,
body.wc-telegram-webapp {
    min-height: 100vh;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

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

.wc-link-inline {
    color: var(--wc-primary);
    font-weight: 700;
}

.wc-link-inline:hover {
    color: var(--wc-primary-strong);
}

img {
    max-width: 100%;
    display: block;
}

.wc-shell {
    min-height: 100vh;
}

.wc-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.wc-topbar {
    border-bottom: 1px solid var(--wc-border);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
}

.wc-topbar__inner,
.wc-header__inner,
.wc-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.wc-topbar__inner {
    min-height: 48px;
    font-size: 13px;
    color: var(--wc-muted);
}

.wc-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(246, 251, 248, 0.85);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(17, 58, 44, 0.08);
}

.wc-header__inner {
    min-height: 82px;
}

.wc-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.wc-logo img {
    width: 128px;
    height: auto;
    object-fit: contain;
}

.wc-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wc-nav a,
.wc-mini-link,
.wc-btn {
    border-radius: 999px;
}

.wc-nav a {
    padding: 10px 16px;
    color: var(--wc-muted);
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wc-nav a.is-active,
.wc-nav a:hover {
    color: var(--wc-text);
    background: rgba(15, 122, 84, 0.08);
    transform: translateY(-1px);
}

.wc-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.wc-btn:hover {
    transform: translateY(-1px);
}

.wc-btn:disabled {
    opacity: 0.64;
    transform: none;
}

.wc-btn--primary {
    background: linear-gradient(135deg, var(--wc-primary) 0%, var(--wc-primary-strong) 100%);
    color: #fff;
    box-shadow: 0 16px 32px rgba(15, 122, 84, 0.22);
}

.wc-btn--secondary {
    background: #fff;
    color: var(--wc-text);
    border: 1px solid var(--wc-border);
}

.wc-btn--ghost {
    background: rgba(255, 255, 255, 0.74);
    color: var(--wc-text);
    border: 1px solid rgba(17, 58, 44, 0.08);
}

.wc-btn--danger {
    background: rgba(194, 83, 76, 0.12);
    color: var(--wc-danger);
    border: 1px solid rgba(194, 83, 76, 0.18);
}

.wc-main {
    padding: 30px 0 56px;
}

.wc-card,
.wc-panel,
.wc-hero,
.wc-table-wrap,
.wc-auth-card,
.wc-side-card {
    background: var(--wc-surface);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius);
    box-shadow: var(--wc-shadow);
    backdrop-filter: blur(16px);
}

.wc-hero {
    padding: 32px;
    background:
        linear-gradient(135deg, rgba(12, 54, 40, 0.96) 0%, rgba(15, 122, 84, 0.94) 62%, rgba(240, 139, 85, 0.9) 100%);
    color: #f6fff8;
    overflow: hidden;
}

.wc-hero__grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 24px;
    align-items: end;
}

.wc-hero h1,
.wc-auth-card h1 {
    margin: 0 0 10px;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.04;
}

.wc-hero p,
.wc-auth-card p {
    margin: 0;
    color: rgba(246, 255, 248, 0.82);
    line-height: 1.72;
}

.wc-stat-grid,
.wc-grid,
.wc-dashboard-grid,
.wc-card-grid {
    display: grid;
    gap: 18px;
}

.wc-stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 24px;
}

.wc-stat {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.wc-stat strong {
    display: block;
    font-size: 24px;
    line-height: 1.1;
}

.wc-stat span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(246, 255, 248, 0.7);
}

.wc-search,
.wc-section,
.wc-panel {
    padding: 24px;
}

.wc-search {
    margin-top: 22px;
}

.wc-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.wc-section__head h2,
.wc-section__head h3,
.wc-table-wrap h3,
.wc-panel h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
}

.wc-section__head p,
.wc-auth-meta,
.wc-copy {
    margin: 0;
    color: var(--wc-muted);
}

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

.wc-grid--split {
    grid-template-columns: 1.2fr 0.8fr;
}

.wc-blog-detail__content {
    overflow-wrap: anywhere;
}

.wc-blog-ad-slot {
    display: block;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0 14px;
    border: 0 solid rgba(17, 58, 44, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--wc-muted);
    overflow: hidden;
    height: auto;
    min-height: 0;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.wc-blog-ad-slot.has-ad-content {
    max-height: none;
    padding: 14px;
    border-width: 1px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.wc-blog-ad-slot.is-dismissed {
    display: none !important;
}

.wc-blog-ad-slot--top.has-ad-content {
    margin-bottom: 22px;
}

.wc-blog-ad-slot--bottom.has-ad-content {
    margin-top: 24px;
}

.wc-blog-ad-slot__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.wc-blog-ad-slot__label {
    color: var(--wc-muted);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.wc-blog-ad-slot__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border: 1px solid rgba(17, 58, 44, 0.12);
    border-radius: 999px;
    background: #ffffff;
    color: var(--wc-muted);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.wc-blog-ad-slot__close:hover {
    border-color: rgba(15, 122, 84, 0.28);
    color: var(--wc-primary-strong);
}

.wc-blog-ad-slot__content {
    width: 100%;
    display: block;
    height: auto;
    min-height: 0;
}

.wc-blog-ad-slot__content img,
.wc-blog-ad-slot__content iframe,
.wc-blog-ad-slot__content video,
.wc-blog-ad-slot__content ins {
    max-width: 100%;
}

.wc-blog-ad-slot__content iframe,
.wc-blog-ad-slot__content video {
    border: 0;
}

.wc-qclanding-ads,
.wc-blog-in-article-ads {
    width: 100%;
    min-height: 0;
}

.wc-qclanding-ads.is-empty,
.wc-blog-in-article-ads.is-empty,
.wc-qclanding-ads > .adsbygoogle[data-ad-status="unfilled"],
.wc-blog-in-article-ads > .adsbygoogle[data-ad-status="unfilled"],
.wc-qclanding-ads > .adsbygoogle[data-adsbygoogle-status="error"],
.wc-blog-in-article-ads > .adsbygoogle[data-adsbygoogle-status="error"] {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
}

.wc-blog-ad-unit {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
}

.wc-blog-ad-unit[data-ad-status="unfilled"] {
    display: none !important;
}

.wc-product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.wc-product-card__media {
    aspect-ratio: 16 / 10;
    background: linear-gradient(180deg, rgba(15, 122, 84, 0.08), rgba(255, 255, 255, 0.24));
}

.wc-product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
}

.wc-pill,
.wc-tag,
.wc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
}

.wc-pill {
    padding: 8px 12px;
    background: rgba(15, 122, 84, 0.08);
    color: var(--wc-primary-strong);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wc-tag {
    padding: 6px 12px;
    background: rgba(17, 58, 44, 0.06);
    color: var(--wc-muted);
    font-size: 12px;
    font-weight: 600;
}

.wc-badge {
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
}

.wc-badge--pending {
    background: rgba(225, 168, 45, 0.14);
    color: #a26f08;
}

.wc-badge--running {
    background: rgba(45, 125, 225, 0.14);
    color: #2457b7;
}

.wc-badge--delivered {
    background: rgba(15, 122, 84, 0.12);
    color: var(--wc-primary-strong);
}

.wc-badge--cancelled,
.wc-badge--refunded {
    background: rgba(194, 83, 76, 0.12);
    color: var(--wc-danger);
}

.wc-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.wc-price strong {
    font-size: 24px;
}

.wc-price del {
    color: var(--wc-muted);
}

.wc-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.wc-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

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

.wc-field {
    display: grid;
    gap: 8px;
}

.wc-field label {
    font-size: 13px;
    font-weight: 700;
    color: var(--wc-text);
}

.wc-field input,
.wc-field select,
.wc-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(17, 58, 44, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--wc-text);
}

.wc-field textarea {
    min-height: 110px;
    resize: vertical;
}

.wc-field input:focus,
.wc-field select:focus,
.wc-field textarea:focus {
    outline: 0;
    border-color: rgba(15, 122, 84, 0.38);
    box-shadow: 0 0 0 4px rgba(15, 122, 84, 0.12);
}

.wc-form-col-3 {
    grid-column: span 3;
}

.wc-form-col-4 {
    grid-column: span 4;
}

.wc-form-col-6 {
    grid-column: span 6;
}

.wc-form-col-8 {
    grid-column: span 8;
}

.wc-form-col-12 {
    grid-column: span 12;
}

.wc-table-wrap {
    overflow: hidden;
}

.wc-table-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 22px 24px 0;
}

.wc-table {
    width: 100%;
    border-collapse: collapse;
}

.wc-table th,
.wc-table td {
    padding: 16px 24px;
    vertical-align: top;
    border-bottom: 1px solid rgba(17, 58, 44, 0.08);
}

.wc-table th {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wc-muted);
}

.wc-table tbody tr:hover {
    background: rgba(15, 122, 84, 0.03);
}

.wc-copybox {
    padding: 14px 16px;
    background: rgba(17, 58, 44, 0.04);
    border-radius: 18px;
    border: 1px dashed rgba(17, 58, 44, 0.14);
    white-space: pre-wrap;
    word-break: break-word;
}

.wc-docapi-hero {
    background:
        radial-gradient(circle at top right, rgba(255, 232, 195, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(11, 46, 36, 0.98) 0%, rgba(14, 104, 79, 0.95) 58%, rgba(203, 114, 63, 0.92) 100%);
}

.wc-docapi-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.wc-docapi-hero__content {
    display: grid;
    gap: 18px;
    align-content: start;
}

.wc-docapi-hero__eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(246, 255, 248, 0.88);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wc-docapi-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.wc-docapi-metrics {
    display: grid;
    gap: 14px;
    align-content: end;
}

.wc-docapi-metric {
    min-height: 110px;
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.wc-docapi-metric strong {
    display: block;
    color: #fff7ef;
    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1;
}

.wc-docapi-metric span {
    display: block;
    margin-top: 10px;
    color: rgba(246, 255, 248, 0.76);
    font-size: 13px;
    line-height: 1.6;
}

.wc-docapi-stack {
    padding: 0;
    display: grid;
    gap: 18px;
}

.wc-docapi-topgrid,
.wc-docapi-bottomgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wc-docapi-card {
    position: relative;
    overflow: hidden;
}

.wc-docapi-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(15, 122, 84, 0.08), transparent 68%);
    pointer-events: none;
}

.wc-docapi-key {
    display: grid;
    gap: 12px;
}

.wc-docapi-key .wc-copybox {
    background: linear-gradient(180deg, rgba(9, 26, 21, 0.96), rgba(18, 46, 38, 0.96));
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.08);
    color: #f8f7f2;
    font-family: "Consolas", "SFMono-Regular", Menlo, Monaco, monospace;
    font-size: 14px;
    line-height: 1.7;
}

.wc-docapi-key.is-locked .wc-copybox {
    color: rgba(248, 247, 242, 0.72);
}

.wc-docapi-kv {
    display: grid;
    gap: 14px;
}

.wc-docapi-kv__item {
    position: relative;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 250, 247, 0.98));
    border: 1px solid rgba(17, 58, 44, 0.08);
}

.wc-docapi-kv__label {
    color: var(--wc-primary-strong);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-docapi-kv__value {
    color: var(--wc-text);
    font-size: 17px;
    line-height: 1.5;
}

.wc-docapi-kv__item p {
    margin: 0;
    color: var(--wc-muted);
    line-height: 1.6;
}

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

.wc-docapi-endpoint {
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(17, 58, 44, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 247, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.wc-docapi-endpoint__head {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.wc-docapi-endpoint__head strong {
    font-size: 16px;
    line-height: 1.5;
    color: var(--wc-text);
}

.wc-docapi-method {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-docapi-method--get {
    background: rgba(26, 138, 84, 0.12);
    color: #0f7a54;
}

.wc-docapi-method--post {
    background: rgba(202, 114, 64, 0.14);
    color: #b05623;
}

.wc-docapi-endpoint__url {
    display: block;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(17, 58, 44, 0.04);
    border: 1px dashed rgba(17, 58, 44, 0.12);
    color: #24463b;
    font-family: "Consolas", "SFMono-Regular", Menlo, Monaco, monospace;
    font-size: 13px;
    line-height: 1.8;
    word-break: break-word;
}

.wc-docapi-fieldgrid {
    display: grid;
    gap: 14px;
}

.wc-docapi-field {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(17, 58, 44, 0.03);
    border: 1px solid rgba(17, 58, 44, 0.08);
}

.wc-docapi-field__name {
    color: var(--wc-primary-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-docapi-field__value {
    color: var(--wc-text);
    font-size: 16px;
    line-height: 1.6;
}

.wc-docapi-code {
    margin: 0;
    padding: 20px 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(9, 26, 21, 0.98), rgba(18, 46, 38, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #f8f7f2;
    font-family: "Consolas", "SFMono-Regular", Menlo, Monaco, monospace;
    font-size: 13px;
    line-height: 1.8;
    overflow: auto;
}

.wc-docapi-code code {
    color: inherit;
}

.wc-docapi-hero {
    padding: 30px 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 230, 193, 0.22), transparent 26%),
        linear-gradient(135deg, rgba(11, 46, 36, 0.98) 0%, rgba(16, 96, 74, 0.96) 54%, rgba(201, 118, 63, 0.9) 100%);
}

.wc-docapi-hero__content {
    display: grid;
    gap: 16px;
    max-width: 860px;
}

.wc-docapi-hero__eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(250, 252, 248, 0.88);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.wc-docapi-chiprow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wc-docapi-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(250, 252, 248, 0.88);
    font-size: 13px;
    font-weight: 600;
}

.wc-docapi-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2px;
}

.wc-docapi-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
}

.wc-docapi-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.wc-docapi-tabs a:hover,
.wc-docapi-tabs a:focus-visible {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.28);
}

.wc-docapi-tabs a.is-active,
.wc-docapi-tabs a[aria-current="page"] {
    background: #fff;
    border-color: rgba(255, 255, 255, 0.72);
    color: var(--wc-primary-strong);
}

.wc-docapi-router {
    position: static;
    top: auto;
    z-index: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
}

.wc-docapi-router__inner {
    display: grid;
    gap: 10px;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.04);
    backdrop-filter: none;
}

.wc-docapi-router__label {
    color: #6b7280;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-docapi-tabs--surface {
    margin-top: 0;
}

.wc-docapi-tabs--surface a {
    background: #fff;
    border-color: #e5e7eb;
    color: #374151;
}

.wc-docapi-tabs--surface a:hover,
.wc-docapi-tabs--surface a:focus-visible {
    background: #f9fafb;
    border-color: #d1d5db;
}

.wc-docapi-tabs--surface a.is-active,
.wc-docapi-tabs--surface a[aria-current="page"] {
    background: #ecfdf5;
    border-color: rgba(15, 122, 84, 0.28);
    color: #047857;
}

.wc-docapi-tab-card {
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    color: #1f2937;
    text-decoration: none;
}

.wc-docapi-tab-card i {
    color: var(--wc-primary-strong);
    font-size: 20px;
}

.wc-docapi-tab-card strong {
    font-size: 16px;
    line-height: 1.35;
}

.wc-docapi-tab-card span {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.55;
}

.wc-docapi-tab-card:hover,
.wc-docapi-tab-card:focus-visible {
    border-color: rgba(15, 122, 84, 0.28);
    background: #f8fffb;
}

[data-docapi-tab-panel][hidden] {
    display: none !important;
}

.wc-docapi-shell {
    padding: 0;
    display: grid;
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.wc-docapi-summary {
    position: sticky;
    top: 98px;
    display: grid;
    gap: 18px;
    padding: 24px;
}

.wc-docapi-summary__block {
    display: grid;
    gap: 10px;
}

.wc-docapi-summary__label {
    color: var(--wc-primary-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-docapi-summary__code {
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(17, 58, 44, 0.04);
    border: 1px solid rgba(17, 58, 44, 0.08);
}

.wc-docapi-summary__code.is-muted code {
    color: var(--wc-muted);
}

.wc-docapi-summary__code code {
    color: #22463b;
    font-family: "Consolas", "SFMono-Regular", Menlo, Monaco, monospace;
    font-size: 13px;
    line-height: 1.7;
    word-break: break-word;
}

.wc-docapi-summary p {
    margin: 0;
    color: var(--wc-muted);
    line-height: 1.65;
}

.wc-docapi-toc {
    display: grid;
    gap: 10px;
}

.wc-docapi-toc a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(17, 58, 44, 0.04);
    border: 1px solid rgba(17, 58, 44, 0.08);
    color: var(--wc-text);
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.wc-docapi-toc a:hover {
    transform: translateY(-1px);
    border-color: rgba(15, 122, 84, 0.18);
    background: rgba(15, 122, 84, 0.06);
}

.wc-docapi-toc a.is-active {
    border-color: rgba(15, 122, 84, 0.22);
    background: #ecfdf5;
    color: #047857;
}

.wc-docapi-legacy {
    display: grid;
    gap: 12px;
}

.wc-docapi-legacy__item {
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(17, 58, 44, 0.03);
    border: 1px solid rgba(17, 58, 44, 0.08);
}

.wc-docapi-legacy__item strong {
    color: var(--wc-text);
    font-size: 14px;
}

.wc-docapi-legacy__item code {
    color: var(--wc-primary-strong);
    font-family: "Consolas", "SFMono-Regular", Menlo, Monaco, monospace;
    font-size: 12px;
    line-height: 1.7;
    word-break: break-word;
}

.wc-docapi-main {
    display: grid;
    gap: 18px;
}

.wc-docapi-section {
    display: grid;
    gap: 18px;
}

.wc-docapi-section,
.wc-docapi-endpoint,
[id^="wcDocApiSection"] {
    scroll-margin-top: 96px;
}

.wc-docapi-overview-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wc-docapi-overview-grid--tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wc-docapi-kv__item {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 250, 247, 0.98));
    border: 1px solid rgba(17, 58, 44, 0.08);
}

.wc-docapi-kv__label {
    color: var(--wc-primary-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-docapi-kv__value {
    color: var(--wc-text);
    font-size: 16px;
    line-height: 1.55;
}

.wc-docapi-kv__item p {
    margin: 0;
    color: var(--wc-muted);
    line-height: 1.65;
}

.wc-docapi-endpoints {
    display: grid;
    gap: 14px;
}

.wc-docapi-endpoint {
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(17, 58, 44, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 247, 0.98));
}

.wc-docapi-endpoint__head {
    display: grid;
    gap: 10px;
}

.wc-docapi-endpoint__labels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.wc-docapi-endpoint__head h3 {
    margin: 0;
    color: var(--wc-text);
    font-size: 21px;
    line-height: 1.28;
}

.wc-docapi-endpoint__head p {
    margin: 0;
    color: var(--wc-muted);
    line-height: 1.68;
}

.wc-docapi-channel {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 122, 84, 0.08);
    color: var(--wc-primary-strong);
    font-size: 12px;
    font-weight: 700;
}

.wc-docapi-method {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-docapi-method--get {
    background: rgba(26, 138, 84, 0.12);
    color: #0f7a54;
}

.wc-docapi-method--post {
    background: rgba(202, 114, 64, 0.14);
    color: #b05623;
}

.wc-docapi-endpoint__urlbox {
    display: grid;
    gap: 10px;
}

.wc-docapi-endpoint__url {
    display: block;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(17, 58, 44, 0.04);
    border: 1px dashed rgba(17, 58, 44, 0.14);
    color: #24463b;
    font-family: "Consolas", "SFMono-Regular", Menlo, Monaco, monospace;
    font-size: 13px;
    line-height: 1.75;
    word-break: break-word;
}

.wc-docapi-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(17, 58, 44, 0.1);
    border-radius: 14px;
    background: #fff;
    color: var(--wc-primary-strong);
    font-size: 13px;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.wc-docapi-copy:hover {
    transform: translateY(-1px);
    border-color: rgba(15, 122, 84, 0.18);
    box-shadow: 0 12px 24px rgba(17, 58, 44, 0.08);
}

.wc-docapi-paramlist {
    display: grid;
    gap: 10px;
}

.wc-docapi-param {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(17, 58, 44, 0.03);
    border: 1px solid rgba(17, 58, 44, 0.08);
}

.wc-docapi-param__head {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.wc-docapi-param__head strong {
    color: var(--wc-text);
    font-size: 14px;
}

.wc-docapi-param__head span,
.wc-docapi-param__head em {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    font-style: normal;
}

.wc-docapi-param__head span {
    background: rgba(17, 58, 44, 0.08);
    color: var(--wc-primary-strong);
}

.wc-docapi-param__head em.is-required {
    background: rgba(202, 114, 64, 0.14);
    color: #b05623;
}

.wc-docapi-param__head em.is-optional {
    background: rgba(15, 122, 84, 0.1);
    color: #0f7a54;
}

.wc-docapi-param p {
    margin: 0;
    color: var(--wc-muted);
    line-height: 1.62;
}

.wc-docapi-notes {
    margin: 0;
    padding-left: 18px;
    color: var(--wc-muted);
    display: grid;
    gap: 8px;
}

.wc-docapi-notes li {
    line-height: 1.65;
}

.wc-docapi-details {
    display: grid;
    gap: 10px;
    padding: 12px 14px 14px;
    border-radius: 18px;
    background: rgba(17, 58, 44, 0.02);
    border: 1px solid rgba(17, 58, 44, 0.08);
}

.wc-docapi-details summary {
    cursor: pointer;
    color: var(--wc-primary-strong);
    font-weight: 700;
    list-style: none;
}

.wc-docapi-details summary::-webkit-details-marker {
    display: none;
}

.wc-docapi-code {
    margin: 0;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(9, 26, 21, 0.98), rgba(18, 46, 38, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #f8f7f2;
    font-family: "Consolas", "SFMono-Regular", Menlo, Monaco, monospace;
    font-size: 13px;
    line-height: 1.75;
    overflow: auto;
}

.wc-docapi-code code {
    color: inherit;
}

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

.wc-docapi-status {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(17, 58, 44, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 250, 247, 0.98));
}

.wc-docapi-status__top {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.wc-docapi-status__top strong {
    color: var(--wc-text);
    font-size: 17px;
}

.wc-docapi-status__key {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(17, 58, 44, 0.08);
    color: var(--wc-primary-strong);
    font-family: "Consolas", "SFMono-Regular", Menlo, Monaco, monospace;
    font-size: 12px;
    font-weight: 700;
}

.wc-docapi-status p {
    margin: 0;
    color: var(--wc-muted);
    line-height: 1.65;
}

.wc-docapi-status--pending {
    border-color: rgba(202, 114, 64, 0.16);
}

.wc-docapi-status--running {
    border-color: rgba(32, 120, 196, 0.16);
}

.wc-docapi-status--delivered {
    border-color: rgba(15, 122, 84, 0.16);
}

.wc-docapi-status--cancelled {
    border-color: rgba(194, 83, 76, 0.16);
}

.wc-docapi-examples {
    display: grid;
    gap: 14px;
}

.wc-docapi-example-tabs {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.wc-docapi-example-tabs__bar {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    min-width: 0;
    padding: 5px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    overflow-x: auto;
    scrollbar-width: thin;
}

.wc-docapi-example-tabs__bar button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 7px;
    background: transparent;
    color: #4b5563;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
}

.wc-docapi-example-tabs__bar button:hover,
.wc-docapi-example-tabs__bar button:focus-visible {
    background: #fff;
    border-color: #d1d5db;
    color: #111827;
    outline: none;
}

.wc-docapi-example-tabs__bar button.is-active,
.wc-docapi-example-tabs__bar button[aria-selected="true"] {
    background: #fff;
    border-color: rgba(15, 122, 84, 0.22);
    color: #047857;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
}

.wc-docapi-example-tabs__bar button em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: #e5e7eb;
    color: #4b5563;
    font-style: normal;
    font-size: 11px;
    font-weight: 900;
}

.wc-docapi-example-tabs__bar button.is-active em,
.wc-docapi-example-tabs__bar button[aria-selected="true"] em {
    background: rgba(15, 122, 84, 0.1);
    color: #047857;
}

.wc-docapi-example-tabs__panel {
    min-width: 0;
}

.wc-docapi-example {
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(17, 58, 44, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 247, 0.98));
}

.wc-docapi-example__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

.wc-docapi-example__head h3 {
    margin: 8px 0 0;
    color: var(--wc-text);
    font-size: 19px;
    line-height: 1.35;
}

.wc-docapi-example__head p {
    margin: 8px 0 0;
    color: var(--wc-muted);
    line-height: 1.65;
}

.wc-docapi-example__lang {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(15, 122, 84, 0.1);
    color: var(--wc-primary-strong);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.wc-docapi-example__body {
    display: grid;
    gap: 14px;
}

.wc-docapi-example__body.has-response {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
}

.wc-docapi-example__pane {
    min-width: 0;
    display: grid;
    align-content: start;
}

.wc-docapi-example__panehead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 34px;
    margin-bottom: 8px;
}

.wc-docapi-example__panehead > span {
    color: #6b7280;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-docapi-example__panehead .wc-docapi-copy {
    min-height: 32px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 12px;
}

.wc-docapi-workspace {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 700;
}

.wc-docapi-workspace strong {
    color: #fff;
}

.wc-docapi-workspace i {
    font-size: 10px;
    opacity: 0.72;
}

.wc-docapi-shell {
    grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
}

.wc-docapi-summary,
.wc-docapi-section,
.wc-docapi-kv__item,
.wc-docapi-endpoint,
.wc-docapi-example,
.wc-docapi-status,
.wc-docapi-summary__code,
.wc-docapi-legacy__item {
    border-radius: 8px;
}

.wc-docapi-summary {
    gap: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: none;
}

.wc-docapi-summary__code,
.wc-docapi-legacy__item,
.wc-docapi-kv__item,
.wc-docapi-endpoint,
.wc-docapi-example,
.wc-docapi-status {
    background: #fff;
    border-color: #e5e7eb;
    box-shadow: none;
}

.wc-docapi-collection {
    display: grid;
    gap: 14px;
}

.wc-docapi-collection__group {
    display: grid;
    gap: 6px;
}

.wc-docapi-collection__group > strong {
    color: #6b7280;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-docapi-collection a {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 6px 8px;
    border-radius: 8px;
    color: #1f2937;
    text-decoration: none;
}

.wc-docapi-collection a:hover,
.wc-docapi-collection a:focus-visible {
    background: #f3f4f6;
}

.wc-docapi-collection em {
    overflow: hidden;
    color: inherit;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wc-docapi-collection .wc-docapi-method {
    min-width: 0;
    min-height: 24px;
    padding: 0 7px;
    border-radius: 5px;
    font-size: 10px;
}

.wc-docapi-endpoint {
    gap: 14px;
    padding: 0;
    overflow: hidden;
}

.wc-docapi-endpoint__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px 0;
}

.wc-docapi-endpoint__head h3 {
    margin-top: 8px;
    font-size: 18px;
}

.wc-docapi-method {
    border-radius: 5px;
}

.wc-docapi-channel {
    border-radius: 5px;
    background: #eff6ff;
    color: #1d4ed8;
}

.wc-docapi-method--get {
    background: #ecfdf5;
    color: #047857;
}

.wc-docapi-method--post {
    background: #fff7ed;
    color: #c2410c;
}

.wc-docapi-requestbar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    margin: 0 18px;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #f9fafb;
}

.wc-docapi-requestbar code {
    overflow: auto hidden;
    color: #111827;
    font-family: "Consolas", "SFMono-Regular", Menlo, Monaco, monospace;
    font-size: 13px;
    line-height: 1.6;
    white-space: nowrap;
}

.wc-docapi-endpoint__body {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 0;
    border-top: 1px solid #e5e7eb;
}

.wc-docapi-requestpane,
.wc-docapi-responsepane {
    min-width: 0;
    padding: 16px 18px 18px;
}

.wc-docapi-responsepane {
    border-left: 1px solid #e5e7eb;
    background: #f8fafc;
}

.wc-docapi-panehead {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 34px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.wc-docapi-panehead span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 800;
}

.wc-docapi-panehead span.is-active {
    color: #f97316;
    border-bottom: 2px solid #f97316;
}

.wc-docapi-paramtable {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.wc-docapi-paramtable__row {
    display: grid;
    grid-template-columns: minmax(120px, 0.72fr) minmax(88px, 0.42fr) minmax(92px, 0.44fr) minmax(180px, 1.5fr);
    gap: 12px;
    align-items: start;
    padding: 10px 12px;
    border-top: 1px solid #e5e7eb;
}

.wc-docapi-paramtable__row:first-child {
    border-top: 0;
}

.wc-docapi-paramtable__head {
    background: #f9fafb;
    color: #6b7280;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wc-docapi-paramtable code {
    color: #111827;
    font-family: "Consolas", "SFMono-Regular", Menlo, Monaco, monospace;
    font-size: 13px;
    font-weight: 800;
    word-break: break-word;
}

.wc-docapi-paramtable span,
.wc-docapi-paramtable em,
.wc-docapi-paramtable p {
    margin: 0;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.55;
}

.wc-docapi-paramtable em {
    width: fit-content;
    padding: 2px 7px;
    border-radius: 5px;
    font-style: normal;
    font-weight: 800;
}

.wc-docapi-paramtable em.is-required {
    background: #fff7ed;
    color: #c2410c;
}

.wc-docapi-paramtable em.is-optional {
    background: #ecfdf5;
    color: #047857;
}

.wc-docapi-notes {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid #fde68a;
    border-radius: 8px;
    background: #fffbeb;
    color: #92400e;
}

.wc-docapi-notes strong {
    font-size: 13px;
}

.wc-docapi-notes ul {
    display: grid;
    gap: 6px;
    margin: 0;
    padding-left: 18px;
}

.wc-docapi-notes li {
    line-height: 1.55;
}

.wc-docapi-code {
    max-height: 420px;
    border-radius: 8px;
    background: #111827;
}

.wc-docapi-terminalbar {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid #e5e7eb;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    background: #f9fafb;
}

.wc-docapi-terminalbar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f87171;
}

.wc-docapi-terminalbar span:nth-child(2) {
    background: #fbbf24;
}

.wc-docapi-terminalbar span:nth-child(3) {
    background: #34d399;
}

.wc-docapi-terminalbar strong {
    margin-left: 6px;
    color: #6b7280;
    font-size: 12px;
    text-transform: uppercase;
}

.wc-docapi-terminalbar + .wc-docapi-code {
    border-radius: 0 0 8px 8px;
}

@media (max-width: 1080px) {
    .wc-docapi-endpoint__body {
        grid-template-columns: 1fr;
    }

    .wc-docapi-responsepane {
        border-top: 1px solid #e5e7eb;
        border-left: 0;
    }
}

@media (max-width: 680px) {
    .wc-docapi-section,
    .wc-docapi-endpoint,
    [id^="wcDocApiSection"] {
        scroll-margin-top: 84px;
    }

    .wc-docapi-router {
        position: static;
        margin-top: 12px;
    }

    .wc-docapi-router__inner {
        gap: 8px;
        padding: 10px;
    }

    .wc-docapi-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 3px;
        scrollbar-width: thin;
    }

    .wc-docapi-tabs a {
        flex: 0 0 auto;
        justify-content: center;
        padding: 0 10px;
        white-space: nowrap;
    }

    .wc-docapi-endpoint__head {
        flex-direction: column;
    }

    .wc-docapi-requestbar,
    .wc-docapi-paramtable__row {
        grid-template-columns: 1fr;
    }

    .wc-docapi-requestbar code {
        white-space: normal;
        word-break: break-word;
    }

    .wc-docapi-paramtable {
        display: grid;
        gap: 8px;
        border: 0;
    }

    .wc-docapi-paramtable__row {
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        background: #fff;
    }

    .wc-docapi-paramtable__row [data-docapi-label]::before {
        content: attr(data-docapi-label);
        display: block;
        margin-bottom: 3px;
        color: #6b7280;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .wc-docapi-paramtable__head {
        display: none;
    }

    .wc-docapi-example__body.has-response {
        grid-template-columns: 1fr;
    }

    .wc-docapi-example__panehead {
        align-items: stretch;
        flex-direction: column;
    }

    .wc-docapi-example__panehead .wc-docapi-copy {
        width: 100%;
    }
}

.wc-empty,
.wc-error {
    padding: 34px;
    text-align: center;
    color: var(--wc-muted);
}

.wc-blocked-ip {
    display: grid;
    gap: 18px;
    max-width: 760px;
    margin: 0 auto;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(194, 83, 76, 0.14);
    background:
        radial-gradient(circle at top left, rgba(194, 83, 76, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 248, 248, 0.98) 100%);
    box-shadow: 0 24px 52px rgba(29, 24, 34, 0.12);
    color: var(--wc-text);
}

.wc-blocked-ip__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(194, 83, 76, 0.12);
    color: var(--wc-danger);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-blocked-ip h2 {
    margin: 0;
    color: #173046;
    font-size: clamp(28px, 5vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.wc-blocked-ip p,
.wc-blocked-ip__hint {
    margin: 0;
    color: var(--wc-muted);
    font-size: 15px;
    line-height: 1.7;
}

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

.wc-blocked-ip__item {
    display: grid;
    gap: 6px;
    min-height: 92px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(17, 58, 44, 0.1);
    background: rgba(255, 255, 255, 0.94);
}

.wc-blocked-ip__item span {
    color: #748698;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-blocked-ip__item strong {
    color: #173046;
    font-size: 17px;
    line-height: 1.5;
    word-break: break-word;
}

@media (max-width: 640px) {
    .wc-blocked-ip {
        padding: 22px;
    }

    .wc-blocked-ip__grid {
        grid-template-columns: 1fr;
    }
}

.wc-loading {
    position: relative;
    display: grid;
    place-items: center;
    min-height: min(64vh, 620px);
    padding: 34px 18px;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 16% 14%, rgba(15, 122, 84, 0.14), transparent 24%),
        radial-gradient(circle at 84% 18%, rgba(24, 125, 235, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 250, 255, 0.98) 100%);
    border: 1px solid rgba(214, 224, 236, 0.9);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 22px 54px rgba(34, 58, 88, 0.08);
}

.wc-loading::before {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.24) 46%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.24) 54%, transparent 100%);
    transform: translateX(-40%);
    animation: wc-loading-sheen 2.6s ease-in-out infinite;
    pointer-events: none;
}

.wc-loading__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 380px);
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 28px 24px 24px;
    border-radius: 28px;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 252, 255, 0.92) 100%);
    border: 1px solid rgba(216, 227, 239, 0.95);
    box-shadow:
        0 18px 40px rgba(33, 55, 82, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
}

.wc-loading__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 122, 84, 0.1);
    color: #0d7a54;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wc-loading__spinner {
    position: relative;
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wc-loading__spinner span {
    position: absolute;
    border-radius: 50%;
}

.wc-loading__spinner span:nth-child(1) {
    inset: 0;
    border: 3px solid rgba(21, 148, 98, 0.16);
    border-top-color: #13a365;
    border-right-color: #1b8df1;
    animation: wc-loading-orbit 1.2s linear infinite;
}

.wc-loading__spinner span:nth-child(2) {
    inset: 12px;
    border: 3px solid rgba(27, 141, 241, 0.14);
    border-bottom-color: #ef8b55;
    border-left-color: #18b248;
    animation: wc-loading-orbit 1.05s linear infinite reverse;
}

.wc-loading__spinner span:nth-child(3) {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #16bb48 0%, #1f8df1 100%);
    box-shadow: 0 0 0 10px rgba(24, 178, 68, 0.08);
    animation: wc-loading-pulse 1s ease-in-out infinite;
}

.wc-loading__title {
    color: #183451;
    font-size: clamp(19px, 3.2vw, 24px);
    line-height: 1.16;
    letter-spacing: -0.02em;
}

.wc-loading__subtitle {
    color: #6b7c92;
    font-size: 14px;
    line-height: 1.6;
}

.wc-auth {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 16px;
}

.wc-auth-card {
    width: min(960px, 100%);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    overflow: hidden;
    min-width: 0;
}

.wc-auth-aside {
    padding: 34px;
    background:
        linear-gradient(160deg, rgba(10, 56, 39, 0.96) 0%, rgba(15, 122, 84, 0.96) 68%, rgba(240, 139, 85, 0.9) 100%);
    color: #f6fff8;
    min-width: 0;
}

.wc-auth-form {
    padding: 34px;
    background: rgba(255, 255, 255, 0.98);
    min-width: 0;
}

.wc-auth-points {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.wc-auth-points li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    min-width: 0;
}

.wc-auth :is(h1, h2, h3, p, strong, small, .wc-copy, .wc-copybox) {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.wc-auth-actions {
    align-items: stretch;
}

.wc-auth-actions .wc-btn {
    min-width: 0;
}

.wc-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0 18px;
    color: #6f7c8d;
    font-size: 13px;
    font-weight: 700;
}

.wc-auth-divider::before,
.wc-auth-divider::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: #e3e8ef;
}

.wc-password-auth {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.wc-auth-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 5px;
    border-radius: 16px;
    background: rgba(17, 58, 44, 0.05);
    border: 1px solid rgba(17, 58, 44, 0.08);
}

.wc-auth-switch button {
    min-height: 42px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #5c6b7f;
    font-weight: 800;
}

.wc-auth-switch button.is-active {
    background: #fff;
    color: var(--wc-text);
    box-shadow: 0 10px 24px rgba(17, 58, 44, 0.08);
}

.wc-password-auth__form {
    display: grid;
    gap: 13px;
}

.wc-password-auth__form[hidden] {
    display: none;
}

.wc-password-auth__submit {
    width: 100%;
    border-radius: 16px;
}

.wc-password-auth__links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
}

.wc-password-auth__links a,
.wc-password-auth__links button,
.wc-password-auth__static-link {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--wc-primary-strong);
    font-weight: 700;
    text-decoration: none;
}

.wc-password-auth__links a:hover,
.wc-password-auth__links button:hover {
    color: var(--wc-accent);
}

.wc-password-auth__static-link {
    cursor: default;
}

.wc-password-auth__status {
    min-height: 20px;
    color: #6f7c8d;
    font-size: 13px;
    line-height: 1.45;
}

.wc-password-auth__status[data-state="error"] {
    color: var(--wc-danger);
}

.wc-google-auth {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.wc-google-auth__button {
    min-height: 44px;
}

.wc-google-auth__button > div,
.wc-google-auth__button iframe {
    max-width: 100%;
}

.wc-google-auth__fallback {
    width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #d9dee8;
    background: #fff;
    color: #1f2937;
    border-radius: 8px;
    font-weight: 700;
}

.wc-google-auth__mark {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #4285f4;
    font-weight: 800;
}

.wc-login-remember,
.wc-google-auth__remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4b596b;
    font-size: 14px;
}

.wc-login-remember input,
.wc-google-auth__remember input {
    width: 16px;
    height: 16px;
    accent-color: var(--wc-primary);
}

.wc-google-auth__status {
    min-height: 20px;
    color: #6f7c8d;
    font-size: 13px;
    line-height: 1.45;
}

.wc-google-auth__status[data-state="error"] {
    color: var(--wc-danger);
}

.wc-google-auth__status[data-state="warning"] {
    color: #9a6a08;
}

.wc-google-auth.is-loading {
    opacity: 0.72;
    pointer-events: none;
}

.wc-dashboard {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 22px;
}

.wc-side-card {
    padding: 24px;
    position: sticky;
    top: 108px;
}

.wc-side-user {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(17, 58, 44, 0.08);
}

.wc-side-menu {
    display: grid;
    gap: 8px;
}

.wc-side-menu a {
    padding: 12px 14px;
    border-radius: 16px;
    color: var(--wc-muted);
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.wc-side-menu a.is-active,
.wc-side-menu a:hover {
    background: rgba(15, 122, 84, 0.08);
    color: var(--wc-text);
}

.wc-footer {
    border-top: 1px solid rgba(17, 58, 44, 0.08);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
}

.wc-footer__inner {
    min-height: 84px;
    padding: 24px 0 108px;
    color: var(--wc-muted);
    align-items: flex-start;
}

.wc-footer__brand {
    max-width: 360px;
}

.wc-footer__brand strong {
    display: block;
    color: var(--wc-text);
    font-size: 18px;
    font-weight: 800;
}

.wc-footer__brand p {
    margin: 10px 0 0;
    color: var(--wc-muted);
    font-size: 14px;
    line-height: 1.7;
}

.wc-footer__links,
.wc-footer__contact {
    display: grid;
    gap: 10px;
}

.wc-footer__links a,
.wc-footer__contact a,
.wc-footer__contact-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--wc-muted);
    font-size: 14px;
    line-height: 1.5;
}

.wc-footer__links a:hover,
.wc-footer__contact a:hover {
    color: var(--wc-primary);
}

.wc-footer__contact i,
.wc-footer__contact-text i {
    color: var(--wc-primary);
}

.wc-toast-wrap {
    position: fixed;
    top: calc(env(safe-area-inset-top) + 18px);
    right: calc(env(safe-area-inset-right) + 18px);
    z-index: 1000;
    display: grid;
    gap: 10px;
    width: min(420px, calc(100vw - 36px));
}

.wc-toast {
    min-width: 0;
    width: 100%;
    max-width: 420px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(18, 36, 28, 0.92);
    color: #fff;
    box-shadow: 0 20px 40px rgba(8, 22, 17, 0.28);
    line-height: 1.5;
    backdrop-filter: blur(12px);
}

.wc-toast--success {
    background: rgba(10, 90, 61, 0.95);
}

.wc-toast--error {
    background: rgba(154, 53, 45, 0.96);
}

.wc-toast--warning {
    background: rgba(163, 111, 8, 0.96);
}

.wc-notice-overlay {
    position: fixed;
    inset: 0;
    z-index: 2600;
    display: grid;
    place-items: center;
    padding: 18px;
}

.wc-notice-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 26, 43, 0.5);
    backdrop-filter: blur(6px);
}

.wc-notice-overlay__dialog {
    position: relative;
    z-index: 1;
    width: min(440px, calc(100vw - 36px));
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    color: #14213d;
    box-shadow: 0 28px 70px rgba(16, 26, 43, 0.3);
    text-align: center;
}

.wc-notice-overlay__icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: rgba(180, 120, 8, 0.12);
    color: #a36f08;
    font-size: 24px;
}

.wc-notice-overlay--error .wc-notice-overlay__icon {
    background: rgba(154, 53, 45, 0.12);
    color: #9a352d;
}

.wc-notice-overlay--success .wc-notice-overlay__icon {
    background: rgba(15, 122, 84, 0.12);
    color: #0f7a54;
}

.wc-notice-overlay__dialog h2 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.25;
}

.wc-notice-overlay__dialog p {
    margin: 0;
    color: #344260;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.55;
}

.wc-notice-overlay__ok {
    width: min(180px, 100%);
    margin-top: 20px;
    justify-content: center;
}

.wc-page-loader {
    position: fixed;
    inset: 0;
    z-index: 2400;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, visibility 0.18s ease;
}

.wc-page-loader::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: rgba(242, 247, 244, 0.42);
    backdrop-filter: blur(5px);
    transition: opacity 0.18s ease;
}

.wc-page-loader.is-active {
    opacity: 1;
    visibility: visible;
}

.wc-page-loader.is-blocking {
    pointer-events: auto;
}

.wc-page-loader.is-blocking::before {
    opacity: 1;
    background: rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(8px);
}

.wc-page-loader__bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    overflow: hidden;
    background: rgba(15, 122, 84, 0.08);
}

.wc-page-loader__bar::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 -36%;
    width: 36%;
    min-width: 180px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(15, 122, 84, 0) 0%, rgba(15, 122, 84, 0.92) 38%, rgba(240, 139, 85, 0.92) 100%);
    animation: wc-page-loader-sweep 1s ease-in-out infinite;
}

.wc-page-loader__panel {
    position: absolute;
    top: 18px;
    left: 50%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(16, 75, 53, 0.12);
    background: rgba(255, 255, 255, 0.92);
    color: #214333;
    box-shadow: 0 18px 44px rgba(20, 43, 32, 0.14);
    backdrop-filter: blur(14px);
    transform: translateX(-50%) translateY(-10px);
    transition: transform 0.18s ease;
}

.wc-page-loader.is-active .wc-page-loader__panel {
    transform: translateX(-50%) translateY(0);
}

.wc-page-loader.is-blocking .wc-page-loader__panel {
    top: 50%;
    width: min(calc(100vw - 32px), 380px);
    min-height: 174px;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 26px 24px;
    border-radius: 24px;
    text-align: center;
    border-color: rgba(15, 122, 84, 0.18);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24);
    transform: translate(-50%, -50%) scale(0.96);
}

.wc-page-loader.is-active.is-blocking .wc-page-loader__panel {
    transform: translate(-50%, -50%) scale(1);
}

.wc-page-loader__spinner {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(15, 122, 84, 0.18);
    border-top-color: var(--wc-primary);
    animation: wc-page-loader-spin 0.75s linear infinite;
}

.wc-page-loader.is-blocking .wc-page-loader__spinner {
    width: 38px;
    height: 38px;
    border-width: 3px;
}

.wc-page-loader__message {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.wc-page-loader.is-blocking .wc-page-loader__message {
    color: #173046;
    font-size: 15px;
    line-height: 1.45;
    white-space: normal;
}

.wc-interaction-purchase-overlay-open {
    overflow: hidden;
}

.wc-interaction-purchase-overlay {
    position: fixed;
    inset: 0;
    z-index: 2450;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.wc-interaction-purchase-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wc-interaction-purchase-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 21, 18, 0.6);
    backdrop-filter: blur(8px);
}

.wc-interaction-purchase-overlay__dialog {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    padding: 26px 24px;
    border-radius: 28px;
    border: 1px solid rgba(218, 239, 225, 0.64);
    background:
        radial-gradient(circle at top right, rgba(31, 173, 95, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 251, 247, 0.98) 100%);
    box-shadow: 0 26px 60px rgba(6, 21, 14, 0.34);
    display: grid;
    gap: 18px;
}

.wc-interaction-purchase-overlay__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    min-height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(16, 138, 71, 0.11);
    color: #127442;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-interaction-purchase-overlay__body {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
}

.wc-interaction-purchase-overlay__spinner {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    border: 4px solid rgba(16, 138, 71, 0.14);
    border-top-color: #14904d;
    border-right-color: #f08b55;
    animation: wc-page-loader-spin 0.8s linear infinite;
}

.wc-interaction-purchase-overlay__copy h3 {
    margin: 0 0 8px;
    color: #173224;
    font-size: clamp(25px, 4vw, 31px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.wc-interaction-purchase-overlay__copy p {
    margin: 0;
    color: #456254;
    font-size: 15px;
    line-height: 1.6;
}

.wc-interaction-purchase-overlay__timer {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(19, 115, 66, 0.08);
    border: 1px solid rgba(19, 115, 66, 0.14);
    color: #1d5134;
}

.wc-interaction-purchase-overlay__timer strong {
    font-size: clamp(28px, 7vw, 40px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.wc-interaction-purchase-overlay__timer span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.wc-interaction-purchase-overlay.is-extended .wc-interaction-purchase-overlay__eyebrow {
    background: rgba(198, 115, 18, 0.12);
    color: #9a5f0e;
}

.wc-interaction-purchase-overlay.is-extended .wc-interaction-purchase-overlay__timer {
    background: rgba(198, 115, 18, 0.08);
    border-color: rgba(198, 115, 18, 0.16);
    color: #8a530f;
}

.wc-interaction-link-popup-open {
    overflow: hidden;
}

.wc-interaction-link-popup {
    position: fixed;
    inset: 0;
    z-index: 2460;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.wc-interaction-link-popup.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wc-interaction-link-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 21, 18, 0.68);
    backdrop-filter: blur(9px);
}

.wc-interaction-link-popup__dialog {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    padding: 28px 24px 24px;
    border-radius: 30px;
    border: 1px solid rgba(248, 219, 154, 0.55);
    background:
        radial-gradient(circle at top right, rgba(255, 186, 93, 0.2), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 251, 244, 0.99) 100%);
    box-shadow: 0 28px 70px rgba(10, 20, 14, 0.38);
    display: grid;
    gap: 18px;
}

.wc-interaction-link-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(141, 89, 10, 0.09);
    color: #8c540e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wc-interaction-link-popup__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(192, 125, 18, 0.11);
    color: #9a5d0f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-interaction-link-popup__hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
}

.wc-interaction-link-popup__icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f2a12f 0%, #da6b1e 100%);
    color: #fff;
    font-size: 28px;
    box-shadow: 0 18px 34px rgba(219, 120, 27, 0.25);
}

.wc-interaction-link-popup__copy h3 {
    margin: 0 0 8px;
    color: #2f2617;
    font-size: clamp(26px, 4vw, 32px);
    line-height: 1.06;
    letter-spacing: -0.03em;
}

.wc-interaction-link-popup__copy p {
    margin: 0;
    color: #6f624b;
    font-size: 15px;
    line-height: 1.65;
}

.wc-interaction-link-popup__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.wc-interaction-link-popup__fact {
    display: grid;
    gap: 8px;
    padding: 16px 14px;
    border-radius: 18px;
    border: 1px solid rgba(196, 151, 76, 0.18);
    background: rgba(255, 255, 255, 0.74);
}

.wc-interaction-link-popup__fact span {
    color: #8b7250;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-interaction-link-popup__fact strong {
    color: #2f2617;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 800;
}

.wc-interaction-link-popup__actions {
    display: flex;
    justify-content: flex-end;
}

@keyframes wc-page-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes wc-loading-orbit {
    to {
        transform: rotate(360deg);
    }
}

@keyframes wc-loading-pulse {
    0%,
    100% {
        transform: scale(0.92);
        opacity: 0.78;
    }
    50% {
        transform: scale(1.14);
        opacity: 1;
    }
}

@keyframes wc-loading-sheen {
    0% {
        transform: translateX(-46%);
        opacity: 0;
    }
    18% {
        opacity: 1;
    }
    100% {
        transform: translateX(46%);
        opacity: 0;
    }
}

@keyframes wc-page-loader-sweep {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(380%);
    }
}

@media (max-width: 1080px) {
    .wc-stat-grid,
    .wc-grid--products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wc-grid--split,
    .wc-dashboard,
    .wc-auth-card,
    .wc-hero__grid,
    .wc-docapi-hero__grid,
    .wc-docapi-topgrid,
    .wc-docapi-bottomgrid,
    .wc-docapi-endpoints,
    .wc-docapi-shell,
    .wc-docapi-overview-grid,
    .wc-docapi-statuses {
        grid-template-columns: 1fr;
    }

    .wc-side-card {
        position: static;
    }

    .wc-docapi-summary {
        position: static;
        top: auto;
    }
}

@media (max-width: 768px) {
    .wc-container {
        width: min(100%, calc(100% - 20px));
    }

    .wc-header__inner,
    .wc-topbar__inner,
    .wc-footer__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
    }

    .wc-footer__inner {
        padding: 18px 0 104px;
        gap: 18px;
    }

    .wc-stat-grid,
    .wc-grid--products {
        grid-template-columns: 1fr;
    }

    .wc-docapi-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .wc-docapi-hero {
        padding: 24px 20px;
    }

    .wc-docapi-shell {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .wc-docapi-main {
        order: 1;
        gap: 12px;
    }

    .wc-docapi-summary {
        order: 2;
    }

    .wc-docapi-section {
        gap: 14px;
    }

    .wc-docapi-summary,
    .wc-docapi-example,
    .wc-docapi-kv__item,
    .wc-docapi-status {
        padding: 16px;
    }

    .wc-docapi-endpoint {
        padding: 0;
    }

    .wc-docapi-endpoint__head {
        padding: 16px 16px 0;
    }

    .wc-docapi-requestpane,
    .wc-docapi-responsepane {
        padding: 14px 16px 16px;
    }

    .wc-docapi-requestbar {
        margin: 0 16px;
    }

    .wc-docapi-code {
        max-height: 340px;
        padding: 14px;
        font-size: 12px;
        line-height: 1.65;
        overflow: auto;
    }

    .wc-docapi-code code {
        white-space: pre-wrap;
        word-break: break-word;
    }

    .wc-docapi-endpoint__urlbox,
    .wc-docapi-summary__code {
        grid-template-columns: 1fr;
    }

    .wc-docapi-example__head {
        flex-direction: column;
        gap: 10px;
    }

    .wc-docapi-copy {
        width: 100%;
    }

    .wc-docapi-metric {
        min-height: 0;
    }

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

    .wc-form-col-3,
    .wc-form-col-4,
    .wc-form-col-6,
    .wc-form-col-8,
    .wc-form-col-12 {
        grid-column: span 1;
    }

    .wc-table th,
    .wc-table td {
        padding: 14px 16px;
    }

    .wc-page-loader__panel {
        top: 14px;
        max-width: calc(100% - 20px);
        min-height: 44px;
        padding: 0 14px;
    }

    .wc-page-loader__message {
        font-size: 13px;
    }

    .wc-interaction-purchase-overlay {
        padding: 18px;
    }

    .wc-interaction-purchase-overlay__dialog {
        padding: 22px 18px;
        border-radius: 24px;
        gap: 16px;
    }

    .wc-interaction-purchase-overlay__body {
        grid-template-columns: 1fr;
    }

    .wc-interaction-purchase-overlay__spinner {
        width: 52px;
        height: 52px;
    }

    .wc-interaction-purchase-overlay__copy h3 {
        font-size: 24px;
    }

    .wc-interaction-purchase-overlay__copy p {
        font-size: 14px;
    }

    .wc-interaction-link-popup {
        padding: 18px;
    }

    .wc-interaction-link-popup__dialog {
        padding: 22px 18px 18px;
        border-radius: 24px;
    }

    .wc-interaction-link-popup__hero {
        grid-template-columns: 1fr;
    }

    .wc-interaction-link-popup__icon {
        width: 58px;
        height: 58px;
        border-radius: 20px;
    }

    .wc-interaction-link-popup__copy h3 {
        font-size: 24px;
    }

    .wc-interaction-link-popup__copy p {
        font-size: 14px;
    }

    .wc-interaction-link-popup__facts {
        grid-template-columns: 1fr;
    }

    .wc-target-link-status {
        min-height: 44px;
        font-size: 12.5px;
    }

    .wc-auth {
        min-height: auto;
        place-items: start stretch;
        padding: 14px 10px 22px;
    }

    .wc-auth-card {
        width: 100%;
        border-radius: 20px;
    }

    .wc-auth-aside,
    .wc-auth-form {
        padding: 24px 18px;
    }

    .wc-auth-card h1 {
        font-size: clamp(28px, 10vw, 42px);
    }

    .wc-auth-actions {
        display: grid !important;
        grid-template-columns: 1fr;
    }

    .wc-auth-actions .wc-btn {
        width: 100%;
        justify-content: center;
    }
}

body {
    background: #f3f5f8;
    color: #273142;
}

body.wc-drawer-open {
    overflow: hidden;
}

.wc-main--shop {
    padding: 26px 0 88px;
}

.wc-public-shell {
    background: #f3f5f8;
}

.wc-public-shell .wc-container {
    width: min(1280px, calc(100% - 32px));
}

.wc-public-shell .wc-topbar {
    border: 0;
    background: linear-gradient(180deg, #19be49 0%, #18b244 100%);
    color: #fff;
}

.wc-public-shell .wc-topbar__inner {
    min-height: 44px;
    color: #fff;
    font-size: 14px;
    flex-wrap: nowrap;
}

.wc-topbar__left {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.wc-topbar__right {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.wc-topselect,
.wc-toplink {
    color: #fff;
}

.wc-topselect {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    padding: 0;
    font: inherit;
}

.wc-topselect--choice {
    position: relative;
    min-height: 28px;
}

.wc-topselect--choice select {
    max-width: 150px;
    min-width: 0;
    padding: 0 16px 0 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    appearance: none;
}

.wc-topselect--choice select:disabled {
    cursor: not-allowed;
    opacity: 0.72;
}

.wc-topselect--choice option {
    color: #223247;
    background: #fff;
}

.wc-topselect--choice .fa-angle-down {
    margin-left: -14px;
    pointer-events: none;
}

.wc-toplink {
    font-weight: 500;
}

.wc-header--shop {
    position: static;
    background: #fff;
    border-bottom: 0;
    box-shadow: 0 12px 32px rgba(30, 48, 76, 0.06);
    backdrop-filter: none;
}

.wc-header__main {
    display: grid;
    grid-template-columns: 52px 300px minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    min-height: 112px;
    padding: 18px 0 14px;
}

.wc-logo--shop img {
    width: 280px;
    max-width: 100%;
}

.wc-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: #f3f5f8;
    color: #2a3346;
    font-size: 18px;
}

.wc-searchbar {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0 14px 0 20px;
    border: 1px solid #edf0f3;
    border-radius: 14px;
    background: #f8f8f8;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.wc-searchbar:focus-within,
.wc-searchbar.is-suggest-open {
    border-color: rgba(22, 173, 67, 0.28);
    background: #fff;
    box-shadow: 0 14px 28px rgba(16, 32, 24, 0.08);
}

.wc-searchbar input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #3b4658;
    font-size: 16px;
}

.wc-searchbar input::placeholder {
    color: #9aa4b2;
}

.wc-searchbar button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #4d5b73;
    font-size: 18px;
}

.wc-searchbar__suggestions {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 35;
    display: grid;
    gap: 10px;
    padding: 12px;
    border: 1px solid #e5ebf1;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 44px rgba(18, 29, 44, 0.16);
    backdrop-filter: blur(12px);
}

.wc-searchbar__suggestions-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #607084;
    font-size: 12px;
    font-weight: 700;
}

.wc-searchbar__suggestions-head strong,
.wc-searchbar__suggestions-head a {
    color: #188e43;
}

.wc-searchbar__suggestions-list {
    display: grid;
    gap: 8px;
}

.wc-searchbar__suggestion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-width: 0;
    padding: 11px 12px;
    border-radius: 14px;
    background: #f7faf8;
    border: 1px solid transparent;
    transition: transform 0.14s ease, border-color 0.14s ease, background-color 0.14s ease;
}

.wc-searchbar__suggestion:hover {
    transform: translateY(-1px);
    border-color: rgba(24, 142, 67, 0.18);
    background: #f2fbf4;
}

.wc-searchbar__suggestion-main {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.wc-searchbar__suggestion-title {
    color: #223247;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.wc-searchbar__suggestion-meta {
    color: #708196;
    font-size: 12px;
    line-height: 1.4;
}

.wc-searchbar__suggestion-price {
    flex: 0 0 auto;
    color: #129d3c;
    font-size: 14px;
    font-weight: 800;
    text-align: right;
}

.wc-searchbar__suggestion-empty {
    padding: 10px 4px 2px;
    color: #708196;
    font-size: 13px;
}

.wc-header__widgets {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wc-action-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #f6f7f9;
    color: #465163;
    font-size: 18px;
}

.wc-action-icon.is-active,
.wc-action-icon.has-items {
    background: #edf8f0;
    color: #129d3c;
    box-shadow: inset 0 0 0 1px rgba(24, 178, 68, 0.1);
}

.wc-action-badge {
    position: absolute;
    top: -5px;
    right: -2px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #1ab64a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.wc-user-chip,
.wc-login-chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-left: 8px;
    color: #222e40;
}

.wc-user-meta,
.wc-login-chip span:last-child {
    display: grid;
    gap: 2px;
}

.wc-user-meta strong,
.wc-login-chip strong {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
}

.wc-user-meta small,
.wc-login-chip small {
    color: #3453ff;
    font-size: 13px;
}

.wc-user-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffb74a 0%, #db2c2c 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 10px 18px rgba(219, 44, 44, 0.22);
    box-sizing: border-box;
    position: relative;
    isolation: isolate;
    overflow: visible;
    flex: 0 0 auto;
}

.wc-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    position: relative;
    z-index: 2;
}

.wc-user-avatar--image {
    background: #061022;
    box-shadow: 0 10px 18px rgba(34, 46, 64, 0.14);
    padding: 2px;
}

.wc-user-avatar--glow::before,
.wc-user-avatar--glow::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.wc-user-avatar--glow::before {
    inset: -3px;
    background: conic-gradient(from 120deg, #b64dff, #00e5ff, #5676ff, #ff59d6, #b64dff);
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.35), 0 0 18px rgba(182, 77, 255, 0.24);
    z-index: -1;
    animation: wcAvatarRingSpin 5.8s linear infinite;
}

.wc-user-avatar--glow::after {
    inset: -8px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.28), rgba(182, 77, 255, 0.18) 42%, rgba(0, 0, 0, 0) 70%);
    filter: blur(7px);
    opacity: 0.78;
    z-index: -2;
    animation: wcAvatarGlowPulse 2.8s ease-in-out infinite;
}

.wc-user-avatar--generated {
    background: #05091b;
}

.wc-user-avatar--large {
    width: 56px;
    height: 56px;
    font-size: 18px;
}

@keyframes wcAvatarRingSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes wcAvatarGlowPulse {
    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.58;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.9;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wc-user-avatar--glow::before,
    .wc-user-avatar--glow::after {
        animation: none;
    }
}

.wc-account-menu {
    position: relative;
}

.wc-account-menu__toggle {
    border: 0;
    background: transparent;
    min-height: 46px;
    cursor: pointer;
}

.wc-account-menu__chevron {
    color: #7b8798;
    font-size: 12px;
}

.wc-account-menu__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 40;
    width: min(280px, calc(100vw - 24px));
    padding: 8px;
    border: 1px solid #e0e6ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(20, 32, 48, 0.16);
}

.wc-account-menu__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 10px 12px;
    border-bottom: 1px solid #edf1f5;
    margin-bottom: 6px;
    min-width: 0;
}

.wc-account-menu__head div {
    min-width: 0;
}

.wc-account-menu__head strong,
.wc-account-menu__head span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wc-account-menu__head span {
    color: #667386;
    font-size: 13px;
}

.wc-account-menu__dropdown a,
.wc-account-menu__dropdown button {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #253145;
    font-weight: 700;
    text-align: left;
}

.wc-account-menu__dropdown a:hover,
.wc-account-menu__dropdown button:hover {
    background: #f4f7fb;
}

.wc-account-menu__dropdown button {
    color: #b42318;
}

.wc-navrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 24px;
    padding: 12px 0 20px;
    border-top: 1px solid #eceff3;
}

.wc-navrow__menu {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.wc-menu-item {
    position: relative;
}

.wc-menu-item--has-children {
    padding-bottom: 6px;
    margin-bottom: -6px;
}

.wc-menu-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    color: #2c3648;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
}

.wc-menu-link i {
    font-size: 12px;
    color: #637085;
}

.wc-menu-link.is-active,
.wc-menu-link:hover {
    background: #f3f7f4;
    color: #129d3c;
}

.wc-menu-link.is-disabled {
    opacity: 0.55;
    cursor: default;
}

.wc-menu-item--has-children:hover > .wc-menu-dropdown,
.wc-menu-item--has-children:focus-within > .wc-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.wc-menu-item--services > .wc-menu-dropdown {
    left: var(--wc-services-dropdown-left, 0px);
    top: var(--wc-services-dropdown-top, calc(100% + 4px));
    right: auto;
    width: var(--wc-services-dropdown-width, min(980px, calc(100vw - 56px)));
    max-width: calc(100vw - 56px);
    margin-inline: 0;
    transform: translateY(8px);
}

.wc-menu-item--services {
    position: relative;
}

.wc-menu-item--services::after {
    content: "";
    position: absolute;
    left: -4px;
    right: -4px;
    top: calc(100% - 1px);
    height: 10px;
}

.wc-menu-item--services:hover > .wc-menu-dropdown,
.wc-menu-item--services:focus-within > .wc-menu-dropdown {
    transform: translateY(0);
}

.wc-menu-dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    z-index: 12;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    padding: 16px;
    border: 1px solid #e7edf4;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 48px rgba(20, 34, 53, 0.12);
    backdrop-filter: blur(18px);
}

.wc-menu-dropdown--list {
    min-width: 260px;
}

.wc-menu-dropdown--mega {
    min-width: min(860px, 82vw);
}

.wc-menu-dropdown__list,
.wc-menu-dropdown__groupitems {
    display: grid;
    gap: 6px;
}

.wc-menu-dropdown__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    align-items: stretch;
}

.wc-menu-dropdown__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    min-height: 0;
}

.wc-menu-dropdown__groupitems {
    flex: 1 1 auto;
    align-content: start;
}

.wc-menu-dropdown__grouphead,
.wc-menu-dropdown__link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 10px 12px;
    border-radius: 12px;
    color: #2d3748;
    text-decoration: none;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.wc-menu-dropdown__grouphead {
    background: #f6fbf8;
    color: #0f7a54;
    font-weight: 800;
}

.wc-menu-dropdown__link {
    font-size: 14px;
    font-weight: 600;
}

.wc-menu-dropdown__grouphead:hover,
.wc-menu-dropdown__link:hover {
    background: #eff7f2;
    color: #0a8a3d;
    transform: translateY(-1px);
}

.wc-menu-dropdown__link.is-disabled,
.wc-menu-dropdown__grouphead.is-disabled {
    opacity: 0.55;
    cursor: default;
}

.wc-menu-dropdown__icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(15, 122, 84, 0.08);
    color: #0f7a54;
    overflow: hidden;
}

.wc-menu-dropdown__icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.wc-menu-dropdown__icon i {
    font-size: 13px;
}

.wc-menu-dropdown__text {
    min-width: 0;
    line-height: 1.4;
}

.wc-menu-dropdown__link--nested {
    padding: 8px 10px;
    font-size: 13px;
}

.wc-menu-dropdown--services {
    --wc-service-accent: #18b244;
    --wc-service-accent-strong: #129d3c;
    --wc-service-accent-soft: rgba(24, 178, 68, 0.18);
    --wc-service-accent-alt: #ff9d42;
    padding: 18px;
    border-color: #dfe7e4;
    background:
        radial-gradient(circle at top left, rgba(24, 178, 68, 0.14), transparent 34%),
        radial-gradient(circle at top right, rgba(255, 157, 66, 0.18), transparent 28%),
        rgba(255, 255, 255, 0.985);
    box-shadow: 0 28px 60px rgba(20, 34, 53, 0.16);
}

.wc-menu-dropdown--interaction2 {
    --wc-service-accent: #2d72ff;
    --wc-service-accent-strong: #2456d6;
    --wc-service-accent-soft: rgba(45, 114, 255, 0.18);
    --wc-service-accent-alt: #20c8da;
}

.wc-menu-dropdown--services .wc-menu-dropdown__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.wc-menu-dropdown__group--service {
    height: 100%;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(18, 60, 43, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 247, 0.98) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 12px 26px rgba(24, 36, 52, 0.05);
}

.wc-menu-dropdown--services .wc-menu-dropdown__grouphead {
    min-height: 64px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--wc-service-accent-soft);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 249, 242, 0.96) 100%);
    color: #1f3343;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.wc-menu-dropdown--services .wc-menu-dropdown__grouphead:hover {
    background:
        linear-gradient(135deg, rgba(243, 253, 246, 0.98) 0%, rgba(231, 247, 238, 0.98) 100%);
    color: var(--wc-service-accent-strong);
}

.wc-menu-dropdown--services .wc-menu-dropdown__grouphead .wc-menu-dropdown__text {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.wc-menu-dropdown--services .wc-menu-dropdown__groupitems {
    gap: 8px;
}

.wc-menu-dropdown--services .wc-menu-dropdown__icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 13px;
}

.wc-menu-dropdown--services .wc-menu-dropdown__grouphead .wc-menu-dropdown__icon {
    background: linear-gradient(135deg, var(--wc-service-accent) 0%, var(--wc-service-accent-alt) 100%);
    color: #fff;
    box-shadow: 0 12px 22px var(--wc-service-accent-soft);
}

.wc-menu-dropdown--services .wc-menu-dropdown__grouphead .wc-menu-dropdown__icon img {
    width: 22px;
    height: 22px;
}

.wc-menu-dropdown--services .wc-menu-dropdown__link--nested {
    min-height: 50px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid #edf1f5;
    background: rgba(255, 255, 255, 0.92);
    color: #324155;
}

.wc-menu-dropdown--services .wc-menu-dropdown__link--nested .wc-menu-dropdown__icon {
    background: linear-gradient(135deg, rgba(24, 178, 68, 0.12) 0%, rgba(255, 157, 66, 0.16) 100%);
    color: var(--wc-service-accent-strong);
}

.wc-menu-dropdown--interaction2 .wc-menu-dropdown__link--nested .wc-menu-dropdown__icon {
    background: linear-gradient(135deg, rgba(45, 114, 255, 0.14) 0%, rgba(32, 200, 218, 0.16) 100%);
}

.wc-menu-dropdown--services .wc-menu-dropdown__link--nested:hover {
    border-color: var(--wc-service-accent-soft);
    background:
        linear-gradient(135deg, rgba(248, 253, 249, 0.98) 0%, rgba(255, 250, 245, 0.98) 100%);
    box-shadow: 0 10px 20px rgba(20, 34, 53, 0.06);
}

.wc-menu-dropdown--services .wc-menu-dropdown__link--nested:hover .wc-menu-dropdown__icon {
    background: linear-gradient(135deg, var(--wc-service-accent) 0%, var(--wc-service-accent-alt) 100%);
    color: #fff;
}

@media (min-width: 1380px) {
    .wc-menu-dropdown--services {
        width: min(1120px, calc(100% - 8px), calc(100vw - 72px));
    }

    .wc-menu-dropdown--services .wc-menu-dropdown__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1180px) {
    .wc-menu-dropdown--services {
        width: min(860px, calc(100% - 8px), calc(100vw - 44px));
    }

    .wc-menu-dropdown--services .wc-menu-dropdown__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.wc-support-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.wc-support-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2e394c;
    font-weight: 500;
}

.wc-support-links i {
    color: #18b244;
    font-size: 30px;
}

.wc-home-stage__frame,
.wc-classic-panel,
.wc-public-shell .wc-panel,
.wc-public-shell .wc-section,
.wc-public-shell .wc-hero,
.wc-public-shell .wc-card,
.wc-public-shell .wc-table-wrap {
    background: #fff;
    border: 1px solid #e9edf2;
    border-radius: 22px;
    box-shadow: 0 16px 38px rgba(27, 39, 56, 0.08);
}

.wc-home-stage__frame {
    padding: 38px 32px;
}

.wc-home-stage__content {
    padding: 22px;
    border: 1px solid #eef1d9;
    background: #fbfff2;
}

.wc-classic-panel {
    padding: 24px 26px;
}

.wc-free-tool {
    padding: 30px 32px;
    background:
        radial-gradient(circle at top right, rgba(72, 159, 255, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.wc-free-tool__toolbar {
    margin-bottom: 22px;
}

.wc-free-tool-card-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.wc-free-tool-card {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 22px 24px;
    border: 1px solid #dce6f2;
    border-radius: 22px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef8ff 100%);
    color: #1f2f45;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(35, 73, 122, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.wc-free-tool-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(35, 73, 122, 0.12);
    border-color: #bfd7ef;
    color: #143258;
}

.wc-free-tool-card--facebook {
    background: linear-gradient(135deg, #f6fbff 0%, #eef4ff 100%);
}

.wc-free-tool-card--note {
    background: linear-gradient(135deg, #f8fffb 0%, #fff8ea 100%);
}

.wc-free-tool-card__icon {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #1f8fff 0%, #125fd1 100%);
    color: #fff;
    font-size: 30px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.wc-free-tool-card__icon--facebook {
    background: linear-gradient(180deg, #2176ff 0%, #124bc4 100%);
}

.wc-free-tool-card__icon--note {
    background: linear-gradient(180deg, #18b875 0%, #d99018 100%);
}

.wc-free-tool-card__content {
    display: grid;
    gap: 6px;
}

.wc-free-tool-card__content strong {
    font-size: 22px;
    line-height: 1.2;
    color: #173252;
}

.wc-free-tool-card__content small {
    font-size: 14px;
    line-height: 1.6;
    color: #5f7188;
}

.wc-free-tool-card__action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid #cfdef0;
    font-size: 13px;
    font-weight: 700;
    color: #1d4f8d;
    white-space: nowrap;
}

.wc-free-tool__grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: start;
}

.wc-free-tool__composer {
    display: grid;
    gap: 14px;
    padding: 22px;
    border: 1px solid #d9e5f5;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.wc-free-tool__composer label {
    font-size: 15px;
    font-weight: 800;
    color: #173252;
}

.wc-free-tool__composer textarea {
    min-height: 280px;
    padding: 16px 18px;
    border: 1px solid #d3dfef;
    border-radius: 20px;
    background: #fdfefe;
    color: #173252;
    font-size: 14px;
    line-height: 1.7;
    font-family: "Consolas", "SFMono-Regular", "Courier New", monospace;
    resize: vertical;
}

.wc-free-tool__composer textarea:focus {
    outline: 0;
    border-color: #7fb9ff;
    box-shadow: 0 0 0 4px rgba(72, 159, 255, 0.14);
}

.wc-free-tool__tips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wc-free-tool__tips span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eff6ff;
    border: 1px solid #d6e8ff;
    color: #29598f;
    font-size: 12px;
    font-weight: 700;
}

.wc-free-tool__result {
    display: grid;
    gap: 16px;
    align-content: start;
}

.wc-free-tool__result-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 22px 18px;
    border: 1px solid #dce6f2;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
}

.wc-free-tool__result-copy {
    display: grid;
    gap: 8px;
}

.wc-free-tool__eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5d6b7f;
}

.wc-free-tool__result-copy strong {
    font-size: 28px;
    line-height: 1;
    color: #163559;
}

.wc-free-tool__meta {
    color: #627286;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.wc-free-tool__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.wc-free-tool__actions--start {
    justify-content: flex-start;
}

.wc-free-tool__status,
.wc-free-tool__note {
    font-size: 13px;
    color: #627286;
}

.wc-free-tool__list {
    display: grid;
    gap: 14px;
}

.wc-free-tool__empty {
    padding: 24px 22px;
    border: 1px dashed #d7e1eb;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.68);
    color: #6a778a;
    font-size: 14px;
}

.wc-free-tool-entry {
    display: grid;
    gap: 14px;
    padding: 20px 22px;
    border: 1px solid #dce6f2;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 24px rgba(22, 53, 89, 0.05);
}

.wc-free-tool-entry.is-error {
    border-color: #f0c7c7;
    background: linear-gradient(180deg, #fff7f7 0%, #fffdfd 100%);
}

.wc-free-tool-entry__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.wc-free-tool-entry__title {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.wc-free-tool-entry__title strong,
.wc-free-tool-entry__head strong {
    font-size: 18px;
    line-height: 1.3;
    color: #173252;
}

.wc-free-tool-entry__title small,
.wc-free-tool-entry__head small {
    color: #708097;
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
}

.wc-free-tool-entry__code {
    display: inline-flex;
    align-items: center;
    min-height: 72px;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, #effaf1 0%, #f9fffa 100%);
    border: 1px solid #d6ecdc;
    color: #129d3c;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1;
}

.wc-free-tool-entry__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wc-free-tool-entry__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f4f7fb;
    border: 1px solid #e0e7f0;
    color: #49617f;
    font-size: 12px;
    font-weight: 700;
}

.wc-free-tool-entry__error {
    color: #cc4b4b;
    font-size: 14px;
    line-height: 1.6;
}

.wc-free-tool__status.is-error {
    color: #d14343;
}

.wc-free-tool__status.is-ready {
    color: #18813f;
}

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

.wc-free-tool__summary-card {
    display: grid;
    gap: 6px;
    padding: 18px 18px 16px;
    border: 1px solid #dce6f2;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
}

.wc-free-tool__summary-card span {
    color: #647488;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-free-tool__summary-card strong {
    color: #163559;
    font-size: 30px;
    line-height: 1;
}

.wc-free-tool__summary-card small {
    color: #708097;
    font-size: 13px;
    line-height: 1.5;
}

.wc-free-tool__summary-card.is-live {
    border-color: #cfead9;
    background: linear-gradient(180deg, #f3fbf5 0%, #ffffff 100%);
}

.wc-free-tool__summary-card.is-live strong {
    color: #18813f;
}

.wc-free-tool__summary-card.is-die {
    border-color: #f2d1d1;
    background: linear-gradient(180deg, #fff6f6 0%, #ffffff 100%);
}

.wc-free-tool__summary-card.is-die strong {
    color: #d14343;
}

.wc-free-tool__summary-card.is-invalid {
    border-color: #f1dfbf;
    background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

.wc-free-tool__summary-card.is-invalid strong {
    color: #b67312;
}

.wc-free-tool-buckets {
    display: grid;
    gap: 14px;
}

.wc-free-tool-bucket {
    display: grid;
    gap: 14px;
    padding: 20px 22px;
    border: 1px solid #dce6f2;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 24px rgba(22, 53, 89, 0.05);
}

.wc-free-tool-bucket.is-live {
    border-color: #cfead9;
}

.wc-free-tool-bucket.is-die {
    border-color: #f2d1d1;
}

.wc-free-tool-bucket.is-invalid {
    border-color: #f1dfbf;
    background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

.wc-free-tool-bucket__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.wc-free-tool-bucket__title {
    display: grid;
    gap: 6px;
}

.wc-free-tool-bucket__title strong {
    font-size: 20px;
    line-height: 1.3;
    color: #173252;
}

.wc-free-tool-bucket__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.wc-free-tool-bucket__textarea {
    min-height: 220px;
    padding: 16px 18px;
    border: 1px solid #d3dfef;
    border-radius: 20px;
    background: #fcfdff;
    color: #173252;
    font-size: 14px;
    line-height: 1.65;
    font-family: "Consolas", "SFMono-Regular", "Courier New", monospace;
    resize: vertical;
}

.wc-free-tool-bucket__textarea:focus {
    outline: 0;
    border-color: #7fb9ff;
    box-shadow: 0 0 0 4px rgba(72, 159, 255, 0.14);
}

.wc-note-tool {
    display: grid;
    gap: 22px;
}

.wc-note-tool__hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    border: 1px solid #dce8d9;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fff9 58%, #fff8e9 100%);
}

.wc-note-tool__hero h2 {
    margin: 6px 0 8px;
    color: #173252;
    font-size: 30px;
    line-height: 1.15;
}

.wc-note-tool__hero p {
    margin: 0;
    color: #627286;
    font-size: 15px;
    line-height: 1.65;
}

.wc-note-tool__hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dbe8dc;
    color: #15734b;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.wc-note-tool__login {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px;
    padding: 22px;
    border: 1px solid #dce6f2;
    border-radius: 22px;
    background: #ffffff;
}

.wc-note-tool__login strong {
    display: block;
    color: #173252;
    font-size: 20px;
}

.wc-note-tool__login p {
    margin: 6px 0 0;
    color: #637287;
}

.wc-note-tool__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 18px;
    align-items: start;
}

.wc-note-main-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 6px;
    border: 1px solid #dfe8f1;
    border-radius: 18px;
    background: #f8fafc;
}

.wc-note-main-tabs button {
    min-height: 42px;
    border: 0;
    border-radius: 14px;
    padding: 0 16px;
    background: transparent;
    color: #647488;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
}

.wc-note-main-tabs button.is-active {
    background: #ffffff;
    color: #15734b;
    box-shadow: 0 8px 20px rgba(22, 53, 89, 0.08);
}

.wc-note-composer,
.wc-note-tool__side,
.wc-note-plan,
.wc-note-api,
.wc-note-recent,
.wc-note-manager {
    border: 1px solid #dce6f2;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 28px rgba(22, 53, 89, 0.06);
}

.wc-note-composer {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.wc-note-composer label {
    color: #173252;
    font-size: 14px;
    font-weight: 800;
}

.wc-note-composer input,
.wc-note-composer textarea {
    width: 100%;
    border: 1px solid #d3dfef;
    border-radius: 16px;
    background: #fcfdff;
    color: #173252;
    font-size: 15px;
    line-height: 1.65;
}

.wc-note-composer input {
    min-height: 48px;
    padding: 0 16px;
}

.wc-note-composer textarea {
    min-height: 360px;
    padding: 16px;
    resize: vertical;
}

.wc-note-composer__options {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
}

.wc-note-composer__options label {
    display: grid;
    gap: 7px;
}

.wc-note-composer__options select,
.wc-note-filter,
.wc-note-folder-form input,
.wc-note-file-upload input,
.wc-note-file-upload select,
.wc-note-editor input,
.wc-note-editor textarea,
.wc-note-editor select {
    width: 100%;
    border: 1px solid #d3dfef;
    border-radius: 14px;
    background: #fcfdff;
    color: #173252;
    font-size: 14px;
}

.wc-note-composer__options select,
.wc-note-filter,
.wc-note-folder-form input,
.wc-note-file-upload input,
.wc-note-file-upload select,
.wc-note-editor input,
.wc-note-editor select {
    min-height: 44px;
    padding: 0 13px;
}

.wc-note-public-toggle {
    min-height: 44px;
    display: inline-flex !important;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 9px !important;
    padding: 0 12px;
    border: 1px solid #d3dfef;
    border-radius: 14px;
    background: #f8fafc;
    color: #173252;
    white-space: nowrap;
}

.wc-note-public-toggle input {
    width: 18px;
    height: 18px;
    min-height: 0;
    padding: 0;
    accent-color: #18b875;
}

.wc-note-composer input:focus,
.wc-note-composer textarea:focus,
.wc-note-composer__options select:focus,
.wc-note-filter:focus,
.wc-note-folder-form input:focus,
.wc-note-file-upload input:focus,
.wc-note-file-upload select:focus,
.wc-note-editor input:focus,
.wc-note-editor textarea:focus,
.wc-note-editor select:focus {
    outline: 0;
    border-color: #68bf91;
    box-shadow: 0 0 0 4px rgba(24, 184, 117, 0.12);
}

.wc-note-composer__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.wc-note-tool__side {
    display: grid;
    gap: 14px;
    padding: 18px;
}

.wc-note-quota {
    display: grid;
    gap: 10px;
}

.wc-note-quota strong {
    color: #173252;
    font-size: 34px;
    line-height: 1;
}

.wc-note-quota small,
.wc-note-quota__plan em {
    color: #6a778a;
    font-size: 13px;
    line-height: 1.5;
}

.wc-note-quota__bar {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8edf3;
}

.wc-note-quota__bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #18b875 0%, #f0a52a 100%);
}

.wc-note-quota__plan {
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: 18px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
}

.wc-note-quota__plan span,
.wc-note-section-head small {
    color: #647488;
    font-size: 12px;
    font-weight: 800;
}

.wc-note-quota__plan b {
    color: #15734b;
    font-size: 18px;
}

.wc-note-result {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid #cfead9;
    background: #f3fbf5;
}

.wc-note-result strong {
    color: #173252;
}

.wc-note-result a {
    color: #16764d;
    word-break: break-all;
}

.wc-note-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.wc-note-section-head strong {
    display: block;
    margin-top: 4px;
    color: #173252;
    font-size: 20px;
}

.wc-note-plan-list {
    display: grid;
}

.wc-note-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.wc-note-plan {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.wc-note-plan.is-current {
    border-color: #bfe6cf;
    background: linear-gradient(180deg, #f3fbf5 0%, #ffffff 100%);
}

.wc-note-plan.has-api {
    border-color: #f0d6a0;
}

.wc-note-plan__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.wc-note-plan__top span {
    color: #173252;
    font-size: 18px;
    font-weight: 850;
}

.wc-note-plan__top em {
    padding: 5px 9px;
    border-radius: 999px;
    background: #fff6df;
    color: #9a6615;
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}

.wc-note-plan strong {
    color: #15734b;
    font-size: 24px;
}

.wc-note-plan p,
.wc-note-plan small {
    margin: 0;
    color: #647488;
    line-height: 1.55;
}

.wc-note-api,
.wc-note-recent,
.wc-note-manager {
    padding: 18px;
}

.wc-note-manager {
    display: grid;
    gap: 16px;
}

.wc-note-manager[hidden],
[data-wc-note-main-panel][hidden] {
    display: none;
}

.wc-note-manager__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 14px;
    align-items: start;
}

.wc-note-drive__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 14px;
    align-items: stretch;
}

.wc-note-drive__summary {
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 18px;
    border: 1px solid #cfe9ff;
    border-radius: 18px;
    background: linear-gradient(135deg, #f7fbff 0%, #eefaf5 100%);
    color: #173252;
}

.wc-note-drive__summary strong {
    color: #0f6b59;
    font-size: 18px;
}

.wc-note-drive__summary small {
    color: #647488;
    line-height: 1.55;
}

.wc-note-folder-form,
.wc-note-file-upload,
.wc-note-editor {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid #e0e7f0;
    border-radius: 18px;
    background: #f8fafc;
}

.wc-note-folder-form label,
.wc-note-file-upload label,
.wc-note-editor label {
    color: #173252;
    font-size: 13px;
    font-weight: 850;
}

.wc-note-folder-form > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.wc-note-file-upload__options {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
}

.wc-note-file-upload__options label:not(.wc-note-public-toggle) {
    display: grid;
    gap: 7px;
}

.wc-note-file-upload small {
    color: #647488;
    font-size: 12px;
    line-height: 1.45;
}

.wc-note-editor__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.wc-note-editor__head strong {
    display: block;
    margin-top: 4px;
    color: #173252;
    font-size: 18px;
}

.wc-note-editor textarea {
    min-height: 260px;
    padding: 14px;
    resize: vertical;
    line-height: 1.6;
}

.wc-note-file-manager {
    display: grid;
    gap: 12px;
}

.wc-note-file-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px;
    border: 1px solid #e0e7f0;
    border-radius: 16px;
    background: #f8fafc;
}

.wc-note-file-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #173252;
    font-size: 13px;
    font-weight: 850;
}

.wc-note-file-check input {
    width: 18px;
    height: 18px;
    accent-color: #18b875;
}

.wc-note-file-count {
    color: #647488;
    font-size: 13px;
    font-weight: 800;
}

.wc-note-file-table {
    display: grid;
    gap: 8px;
}

.wc-note-file-row {
    display: grid;
    grid-template-columns: 38px minmax(220px, 1.35fr) minmax(120px, 0.55fr) minmax(100px, 0.42fr) minmax(120px, 0.48fr) minmax(150px, auto);
    gap: 12px;
    align-items: center;
    min-width: 0;
    padding: 12px;
    border: 1px solid #e0e7f0;
    border-radius: 16px;
    background: #ffffff;
}

.wc-note-storage-manager .wc-note-file-row {
    grid-template-columns: 38px minmax(240px, 1.45fr) minmax(100px, 0.42fr) minmax(120px, 0.48fr) minmax(150px, auto);
}

.wc-note-file-row--head {
    min-height: 42px;
    padding-top: 0;
    padding-bottom: 0;
    border-color: transparent;
    background: transparent;
    color: #647488;
    font-size: 12px;
    font-weight: 850;
}

.wc-note-file-name {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wc-note-file-name > i {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    background: #e9f8ef;
    color: #15734b;
}

.wc-note-file-name strong,
.wc-note-file-name small {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wc-note-file-name strong {
    color: #173252;
    font-size: 15px;
}

.wc-note-file-name small,
.wc-note-file-folder,
.wc-note-file-date {
    color: #647488;
    font-size: 12px;
    line-height: 1.45;
}

.wc-note-file-folder,
.wc-note-file-date {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wc-note-file-actions {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 7px;
}

.wc-note-upload-overlay {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.48);
    backdrop-filter: blur(8px);
}

.wc-note-upload-overlay[hidden] {
    display: none;
}

.wc-note-upload-overlay__dialog {
    width: min(520px, 100%);
    display: grid;
    gap: 14px;
    padding: 22px;
    border: 1px solid #dbe7f3;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.24);
}

.wc-note-upload-overlay__head {
    display: grid;
    gap: 5px;
}

.wc-note-upload-overlay__head strong {
    color: #17233c;
    font-size: 20px;
}

.wc-note-upload-overlay__bar {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: #e5edf6;
}

.wc-note-upload-overlay__bar span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #16a36b, #2563eb);
    transition: width .18s ease;
}

.wc-note-upload-overlay__dialog p {
    margin: 0;
    color: #596b84;
    font-size: 14px;
}

.wc-note-upload-overlay__dialog ul {
    max-height: 180px;
    overflow: auto;
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wc-note-upload-overlay__dialog li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
    padding: 8px 10px;
    border-radius: 10px;
    background: #f8fafc;
    color: #25344d;
    font-size: 13px;
}

.wc-note-upload-overlay__dialog li span {
    flex: 0 0 auto;
    color: #647488;
}

.wc-note-upload-result {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.wc-note-upload-result article {
    display: grid;
    grid-template-columns: minmax(160px, .7fr) minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #e0e7f0;
    border-radius: 12px;
    background: #ffffff;
}

.wc-note-upload-result article span,
.wc-note-upload-result article a {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wc-note-upload-result article span {
    color: #17233c;
    font-weight: 800;
}

.wc-note-upload-result__failed {
    display: grid;
    gap: 6px;
    padding: 10px;
    border-radius: 12px;
    background: #fff7ed;
    color: #9a3412;
}

.wc-note-upload-result__failed p {
    margin: 0;
    overflow-wrap: anywhere;
}

.wc-note-icon-btn {
    width: 34px;
    height: 34px;
    border: 1px solid #d7e1eb;
    border-radius: 12px;
    background: #ffffff;
    color: #15734b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.wc-note-icon-btn.is-danger {
    color: #c2534c;
    border-color: rgba(194, 83, 76, 0.22);
    background: rgba(194, 83, 76, 0.08);
}

.wc-note-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    margin-bottom: 14px;
    padding: 6px;
    border: 1px solid #dfe8f1;
    border-radius: 16px;
    background: #f8fafc;
}

.wc-note-tabs button {
    min-height: 40px;
    border: 0;
    border-radius: 12px;
    padding: 0 14px;
    background: transparent;
    color: #647488;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.wc-note-tabs button.is-active {
    background: #ffffff;
    color: #15734b;
    box-shadow: 0 8px 20px rgba(22, 53, 89, 0.08);
}

.wc-note-api__panel {
    display: grid;
    gap: 0;
}

.wc-note-api__panel[hidden] {
    display: none;
}

.wc-note-api__locked {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: #fff8e9;
    border: 1px solid #f1d99f;
    color: #80560e;
    font-weight: 700;
}

.wc-note-api__grid {
    display: grid;
    gap: 12px;
}

.wc-note-api__grid article {
    position: relative;
    display: grid;
    gap: 8px;
    padding: 14px 48px 14px 14px;
    border: 1px solid #e0e7f0;
    border-radius: 16px;
    background: #f8fafc;
}

.wc-note-api__grid span {
    color: #647488;
    font-size: 12px;
    font-weight: 800;
}

.wc-note-api__grid code,
.wc-note-api__grid pre {
    margin: 0;
    color: #173252;
    font-size: 13px;
    line-height: 1.55;
    white-space: pre-wrap;
    word-break: break-word;
}

.wc-note-api__grid button {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 1px solid #d7e1eb;
    border-radius: 12px;
    background: #ffffff;
    color: #15734b;
    cursor: pointer;
}

.wc-note-recent__list {
    display: grid;
    gap: 10px;
}

.wc-note-recent__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    border: 1px solid #e0e7f0;
    border-radius: 16px;
    background: #ffffff;
}

.wc-note-recent__item strong,
.wc-note-recent__item small {
    display: block;
}

.wc-note-recent__item strong {
    color: #173252;
    font-size: 15px;
}

.wc-note-recent__item small {
    margin-top: 4px;
    color: #6a778a;
    font-size: 12px;
    line-height: 1.5;
}

.wc-note-recent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.wc-note-manage-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 7px;
}

.wc-note-manage-item__meta span {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    border-radius: 999px;
    background: #edf2f7;
    color: #647488;
    font-size: 11px;
    font-weight: 800;
}

.wc-note-status.is-public {
    background: #e9f8ef;
    color: #15734b;
}

.wc-note-status.is-private {
    background: #fff3e2;
    color: #9a6615;
}

.wc-note-empty {
    padding: 18px;
    border: 1px dashed #d7e1eb;
    border-radius: 16px;
    color: #6a778a;
}

.wc-free-embed-tool__frame {
    width: 100%;
    min-height: min(820px, 76vh);
    border: 1px solid rgba(92, 107, 255, 0.14);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(17, 21, 61, 0.08);
}

.wc-free-embed-tool__frame iframe {
    display: block;
    width: 100%;
    height: min(820px, 76vh);
    border: 0;
}

.wc-free-embed-tool__frame--emoji,
.wc-free-embed-tool__frame--emoji iframe {
    min-height: min(720px, 72vh);
    height: min(720px, 72vh);
}

.wc-note-read {
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 8px 0 28px;
}

.wc-note-read__layout {
    display: block;
}

.wc-note-read__layout.has-sidebar.has-visible-sidebar-ad {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    gap: 22px;
    align-items: start;
}

.wc-note-read__main {
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--wc-logo-border);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(169, 60, 255, 0.08) 0%, rgba(255, 255, 255, 0) 36%),
        linear-gradient(225deg, rgba(0, 216, 255, 0.08) 0%, rgba(255, 255, 255, 0) 34%),
        rgba(255, 255, 255, 0.96);
    box-shadow: var(--wc-logo-shadow);
}

.wc-note-read__side {
    display: grid;
    gap: 14px;
    position: sticky;
    top: 20px;
}

.wc-note-read__head {
    display: grid;
    gap: 14px;
    margin-bottom: 20px;
}

.wc-note-read__eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(169, 60, 255, 0.1);
    color: var(--wc-logo-violet-strong);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.wc-note-read__head h1 {
    margin: 0;
    color: var(--wc-logo-text);
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.12;
    word-break: break-word;
}

.wc-note-read__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.wc-note-read__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    min-width: 38px;
    padding: 0 12px;
    border: 1px solid rgba(92, 107, 255, 0.16);
    border-radius: 999px;
    background: #ffffff;
    color: var(--wc-logo-violet-strong);
    font-weight: 700;
}

.wc-note-read__content-wrap {
    position: relative;
}

.wc-note-read__copy-content {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(92, 107, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--wc-logo-violet-strong);
    font-weight: 700;
    z-index: 1;
}

.wc-note-read__content {
    min-height: 220px;
    margin: 0;
    padding: 64px 20px 22px;
    border: 1px solid rgba(92, 107, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--wc-logo-text);
    font-family: Consolas, "SFMono-Regular", "Cascadia Mono", Menlo, Monaco, monospace;
    font-size: 16px;
    line-height: 1.72;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.wc-note-read__files {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    padding: 16px;
    border: 1px solid #dce6f2;
    border-radius: 18px;
    background: #f8fafc;
}

.wc-note-read__files-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #173252;
    font-weight: 850;
}

.wc-note-read__files-head small {
    color: #647488;
    font-size: 12px;
}

.wc-note-read__file-list {
    display: grid;
    gap: 10px;
}

.wc-note-read__file {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 12px;
    border: 1px solid #e0e7f0;
    border-radius: 14px;
    background: #ffffff;
    color: #173252;
    text-decoration: none;
}

.wc-note-read__file > i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #e9f8ef;
    color: #15734b;
}

.wc-note-read__file span {
    min-width: 0;
}

.wc-note-read__file strong,
.wc-note-read__file small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wc-note-read__file small {
    color: #647488;
    font-size: 12px;
}

.wc-note-read__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 16px;
    color: var(--wc-logo-muted);
}

.wc-note-read__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(0, 216, 255, 0.13);
    color: var(--wc-logo-violet-strong);
    font-size: 12px;
    font-weight: 800;
}

.wc-note-read-ad-slot {
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0 14px;
    border: 0 solid rgba(92, 107, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.wc-note-read-ad-slot.has-ad-content {
    max-height: none;
    padding: 14px;
    border-width: 1px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.wc-note-read-ad-slot.is-dismissed {
    display: none !important;
}

.wc-note-read-ad-slot--top.has-ad-content {
    margin-bottom: 20px;
}

.wc-note-read-ad-slot--in_article.has-ad-content {
    margin-bottom: 20px;
}

.wc-note-read-ad-slot--bottom.has-ad-content {
    margin-top: 20px;
}

.wc-note-read-ad-slot__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.wc-note-read-ad-slot__label {
    color: var(--wc-logo-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.wc-note-read-ad-slot__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(92, 107, 255, 0.16);
    border-radius: 999px;
    background: #ffffff;
    color: var(--wc-logo-violet-strong);
    font-size: 20px;
    line-height: 1;
}

.wc-note-read-ad-slot__content,
.wc-note-read-ad-slot__content iframe,
.wc-note-read-ad-slot__content img,
.wc-note-read-ad-slot__content video,
.wc-note-read-ad-unit {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
}

.wc-note-read-ad-unit[data-ad-status="unfilled"] {
    display: none !important;
}

@media (max-width: 760px) {
    .wc-free-embed-tool__frame,
    .wc-free-embed-tool__frame iframe {
        min-height: 68vh;
        height: 68vh;
    }

    .wc-note-read__layout.has-sidebar.has-visible-sidebar-ad {
        grid-template-columns: 1fr;
    }

    .wc-note-read__main {
        padding: 16px;
    }

    .wc-note-read__copy-content {
        position: static;
        margin-bottom: 10px;
    }

    .wc-note-read__content {
        padding: 16px;
        font-size: 14px;
    }

    .wc-note-read__side {
        position: static;
    }
}

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

.wc-classic-panel__head h2 {
    margin: 0 0 6px;
    font-size: 24px;
}

.wc-classic-panel__head p {
    margin: 0;
    color: #657286;
}

.wc-client-home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
    gap: 18px;
    align-items: stretch;
    padding: 24px;
    border: 1px solid #dbe7f2;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fbff 58%, #fff8e6 100%);
    box-shadow: 0 18px 42px rgba(30, 48, 76, 0.08);
}

.wc-client-home-hero__copy {
    min-width: 0;
    display: grid;
    align-content: center;
    gap: 14px;
}

.wc-client-home-hero__eyebrow {
    width: fit-content;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: #eff8f1;
    color: #159c43;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.wc-client-home-hero h1 {
    margin: 0;
    color: #17243a;
    font-size: 40px;
    line-height: 1.12;
}

.wc-client-home-hero p {
    max-width: 680px;
    margin: 0;
    color: #5f6f83;
    font-size: 16px;
    line-height: 1.7;
}

.wc-client-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.wc-client-home-hero__stats {
    display: grid;
    gap: 10px;
}

.wc-client-home-hero__stats span {
    min-height: 86px;
    padding: 16px;
    border: 1px solid #e5edf3;
    border-radius: 18px;
    display: grid;
    align-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.84);
    color: #657286;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(30, 48, 76, 0.06);
}

.wc-client-home-hero__stats strong {
    display: block;
    color: #18a73f;
    font-size: 26px;
    line-height: 1;
}

.wc-client-home-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.wc-client-home-card {
    min-height: 210px;
    padding: 18px;
    border: 1px solid #dfe8f3;
    border-radius: 20px;
    display: grid;
    align-content: start;
    gap: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    color: inherit;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(30, 48, 76, 0.06);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.wc-client-home-card:hover {
    transform: translateY(-2px);
    border-color: #b9d8ff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 18px 34px rgba(30, 48, 76, 0.1);
}

.wc-client-home-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0f7ff;
    color: #1877f2;
    font-size: 18px;
}

.wc-client-home-card:nth-child(2) .wc-client-home-card__icon,
.wc-client-home-card:nth-child(5) .wc-client-home-card__icon {
    background: #fff7e6;
    color: #c98300;
}

.wc-client-home-card:nth-child(3) .wc-client-home-card__icon,
.wc-client-home-card:nth-child(4) .wc-client-home-card__icon {
    background: #eff8f1;
    color: #18a73f;
}

.wc-client-home-card strong {
    color: #17243a;
    font-size: 17px;
    line-height: 1.25;
}

.wc-client-home-card p {
    margin: 0;
    color: #62748b;
    font-size: 14px;
    line-height: 1.6;
}

.wc-client-home-card small {
    align-self: end;
    margin-top: auto;
    color: #18a73f;
    font-size: 12px;
    font-weight: 800;
}

.wc-client-home-notice .wc-classic-panel {
    margin: 0;
}

.wc-home-stats {
    display: flex;
    align-items: stretch;
    gap: 8px;
    flex-wrap: wrap;
}

.wc-home-stats span {
    min-width: 104px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f7faf7;
    border: 1px solid #e5efe6;
    display: grid;
    gap: 3px;
    font-size: 12px;
    color: #657286;
}

.wc-home-stats strong {
    font-size: 18px;
    line-height: 1;
    color: #18a73f;
}

.wc-classic-panel--filters {
    padding-bottom: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.wc-classic-panel__head--filters {
    margin-bottom: 14px;
}

.wc-classic-panel--filters .wc-classic-panel__head h2 {
    margin-bottom: 4px;
    font-size: 22px;
}

.wc-classic-panel--filters .wc-classic-panel__head p {
    font-size: 15px;
    line-height: 1.55;
}

.wc-home-filter {
    display: grid;
    gap: 12px;
}

.wc-home-filter__shell {
    display: grid;
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
    border: 1px solid #e5edf3;
    background: linear-gradient(180deg, #fbfdff 0%, #f7fafc 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.wc-home-filter__keyword {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #dceadf;
    border-radius: 18px;
    background: linear-gradient(180deg, #fbfff9 0%, #f3fbf4 100%);
    color: #58687d;
    font-size: 13px;
    line-height: 1.6;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.wc-home-filter__keyword i {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #18a73f;
    box-shadow: 0 8px 18px rgba(24, 167, 63, 0.1);
}

.wc-home-filter__keyword strong {
    color: #18a73f;
}

.wc-home-filter__controls {
    display: grid;
    gap: 12px;
    align-items: end;
}

.wc-home-filter__controls--primary {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wc-home-filter__controls--secondary {
    grid-template-columns: minmax(0, 1.15fr) minmax(160px, 0.85fr) minmax(200px, 0.95fr);
}

.wc-home-filter__section {
    display: grid;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid #e3ebf2;
    background: #fff;
    box-shadow: 0 10px 22px rgba(29, 42, 61, 0.045);
}

.wc-home-filter__section--secondary {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.wc-home-filter__section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 10px;
}

.wc-home-filter__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eff8f1;
    color: #159c43;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-home-filter__eyebrow i {
    font-size: 12px;
}

.wc-home-field {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.wc-home-field span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #62748b;
}

.wc-home-field select {
    min-height: 46px;
    padding: 0 42px 0 14px;
    border: 1px solid #d8e2ee;
    border-radius: 14px;
    background-color: #fff;
    color: #25354a;
    font-size: 14px;
    font-weight: 600;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #778296 50%),
        linear-gradient(135deg, #778296 50%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    background-position:
        calc(100% - 20px) calc(50% - 3px),
        calc(100% - 14px) calc(50% - 3px),
        0 0;
    background-size: 6px 6px, 6px 6px, 100% 100%;
    background-repeat: no-repeat;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 8px 18px rgba(28, 47, 78, 0.04);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.wc-home-field select:disabled {
    background-color: #f5f7f9;
    background-image:
        linear-gradient(45deg, transparent 50%, #a8b4c3 50%),
        linear-gradient(135deg, #a8b4c3 50%, transparent 50%),
        linear-gradient(180deg, #f7f9fc 0%, #eff3f7 100%);
    color: #9aa5b3;
    cursor: not-allowed;
    box-shadow: none;
}

.wc-home-field select:hover:not(:disabled) {
    border-color: #c9d6e3;
}

.wc-home-field select:focus {
    outline: 0;
    border-color: #18a73f;
    box-shadow: 0 0 0 4px rgba(24, 167, 63, 0.12), 0 14px 26px rgba(24, 167, 63, 0.08);
}

.wc-home-filter__actions {
    display: flex;
    align-items: end;
}

.wc-home-filter__actions .wc-btn {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    font-size: 14px;
    box-shadow: 0 12px 24px rgba(24, 167, 63, 0.16);
}

.wc-catalog-groups {
    display: grid;
    gap: 18px;
}

.wc-catalog-group {
    display: grid;
    gap: 14px;
}

.wc-catalog-group__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid #f1d88c;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff6d8 0%, #fff8e9 100%);
    box-shadow: 0 8px 20px rgba(219, 170, 42, 0.08);
}

.wc-catalog-group__icon,
.wc-catalog-group__icon-fallback {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.wc-catalog-group__icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 10px;
}

.wc-catalog-group__icon-fallback {
    background: rgba(255, 255, 255, 0.9);
    color: #c78e00;
    font-size: 16px;
}

.wc-catalog-group__label {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.wc-catalog-group__label strong {
    color: #d19400;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.wc-catalog-group__label small {
    color: #9c7f31;
    font-size: 12px;
    font-weight: 600;
}

.wc-catalog-group__list {
    display: grid;
    gap: 14px;
}

.wc-catalog-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 128px;
    gap: 18px;
    padding: 18px 18px 16px;
    border: 1px solid #dbe4ff;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    box-shadow: 0 10px 22px rgba(44, 79, 166, 0.06);
}

.wc-catalog-card__main {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.wc-catalog-card__title {
    color: #3566f1;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 800;
}

.wc-catalog-card__title span {
    display: inline;
    color: inherit;
}

.wc-catalog-card__meta {
    color: #5d6779;
    font-size: 14px;
    line-height: 1.55;
    word-break: break-word;
}

.wc-catalog-card__meta span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.wc-catalog-card__badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.wc-catalog-card__stock {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.wc-catalog-card__stock--ok {
    background: #fff2b8;
    color: #775700;
}

.wc-catalog-card__stock--out {
    background: #ffe1df;
    color: #d83f35;
}

.wc-catalog-card__side {
    display: grid;
    align-content: center;
    justify-items: end;
    gap: 14px;
}

.wc-catalog-card__price {
    display: grid;
    justify-items: end;
    gap: 2px;
    text-align: right;
}

.wc-catalog-card__price small {
    color: #93a0b3;
    font-size: 12px;
}

.wc-catalog-card__price-current {
    display: inline-flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 4px;
    white-space: nowrap;
}

.wc-catalog-card__price-current strong {
    color: #3566f1;
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
}

.wc-catalog-card__price-current span {
    color: #3566f1;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
}

.wc-catalog-card__action {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 12px;
    background: linear-gradient(180deg, #4f7cff 0%, #305ae1 100%);
    box-shadow: 0 10px 20px rgba(49, 90, 225, 0.24);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.wc-catalog-card__action--disabled {
    background: #a6aeb8;
    box-shadow: none;
}

.wc-catalog-card.is-out {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.wc-chip-section + .wc-chip-section {
    margin-top: 14px;
}

.wc-chip-section__title {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #49566c;
}

.wc-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wc-public-shell .wc-tag {
    padding: 8px 14px;
    background: #f5f8fb;
    border: 1px solid #e4eaf0;
    color: #4d5a70;
    font-size: 13px;
    font-weight: 600;
}

.wc-public-shell .wc-product-card {
    border-radius: 18px;
    border: 1px solid #e8edf2;
    background: #fff;
    box-shadow: 0 12px 24px rgba(26, 38, 54, 0.06);
}

.wc-public-shell .wc-product-card__media {
    aspect-ratio: 16 / 11;
    background: #f9fafc;
}

.wc-public-shell .wc-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wc-public-shell .wc-product-card__body {
    gap: 12px;
}

.wc-public-shell .wc-pill {
    background: #eefaf0;
    color: #149940;
    border-radius: 999px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 12px;
}

.wc-public-shell .wc-price strong {
    color: #e74242;
    font-size: 23px;
}

.wc-public-shell .wc-price del {
    color: #8a96a8;
}

.wc-public-shell .wc-btn {
    border-radius: 12px;
}

.wc-public-shell .wc-btn--primary {
    background: linear-gradient(180deg, #1cb949 0%, #14a340 100%);
    box-shadow: 0 10px 18px rgba(27, 181, 73, 0.22);
}

.wc-public-shell .wc-btn--secondary,
.wc-public-shell .wc-btn--ghost {
    background: #fff;
    border: 1px solid #e4e9ef;
    color: #334156;
}

.wc-public-shell .shoptd-notice-stack {
    display: grid;
    gap: 20px;
}

.wc-public-shell .shoptd-notice-content--home {
    margin-bottom: 0;
}

.wc-public-shell .shoptd-notice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.wc-public-shell .shoptd-notice-card {
    border-radius: 18px;
    background: #f5fde9;
    border-left: 5px solid #7ac943;
    padding: 24px 24px 22px;
    color: #425168;
}

.wc-public-shell .shoptd-notice-card--hero {
    background: linear-gradient(180deg, #f4faec 0%, #f6fde9 100%);
}

.wc-public-shell .shoptd-notice-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: #159f40;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.wc-public-shell .shoptd-notice-card h4,
.wc-public-shell .shoptd-notice-card h5,
.wc-public-shell .shoptd-notice-card h3 {
    margin: 0 0 12px;
    color: #2d3c52;
}

.wc-public-shell .shoptd-notice-card p,
.wc-public-shell .shoptd-notice-card li {
    line-height: 1.75;
    margin: 0;
}

.wc-public-shell .shoptd-notice-card ol,
.wc-public-shell .shoptd-notice-card ul {
    margin: 0;
    padding-left: 22px;
}

.wc-public-shell .shoptd-notice-card li + li {
    margin-top: 6px;
}

.wc-public-shell .shoptd-notice-chiplist {
    margin-top: 14px;
    font-weight: 600;
    color: #6b785f;
}

.wc-public-shell .shoptd-notice-card a {
    color: #2156f5;
}

.wc-drawer {
    position: fixed;
    inset: 0;
    z-index: 80;
    pointer-events: none;
}

.wc-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(22, 27, 36, 0.5);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.wc-drawer__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(360px, 92vw);
    height: 100%;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.22s ease;
    box-shadow: 0 30px 60px rgba(19, 29, 42, 0.2);
    padding: 0 20px 24px;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
}

.wc-shell.is-drawer-open .wc-drawer {
    pointer-events: auto;
}

.wc-shell.is-drawer-open .wc-drawer__backdrop {
    opacity: 1;
}

.wc-shell.is-drawer-open .wc-drawer__panel {
    transform: translateX(0);
}

.wc-drawer__head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 0;
    background: #fff;
}

.wc-logo--drawer img {
    width: 180px;
}

.wc-drawer__close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 18px rgba(18, 26, 38, 0.12);
    color: #49566c;
}

.wc-drawer-usercard {
    padding: 6px 0 18px;
    border-bottom: 1px solid #edf0f3;
}

.wc-drawer-usercard__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.wc-drawer-usercard__logo strong {
    display: block;
    color: #243146;
}

.wc-drawer-usercard__logo small {
    color: #7b8798;
}

.wc-drawer-balance {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 4px;
    background: #31c75b;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 8px 16px rgba(49, 199, 91, 0.18);
}

.wc-drawer-balance .wc-user-avatar {
    width: 30px;
    height: 30px;
    box-shadow: none;
    font-size: 12px;
}

.wc-drawer-balance .wc-user-avatar--glow::before {
    inset: -2px;
}

.wc-drawer-balance .wc-user-avatar--glow::after {
    inset: -5px;
    filter: blur(5px);
    opacity: 0.55;
}

.wc-drawer-money {
    margin-top: 18px;
    color: #4a556a;
    font-size: 15px;
}

.wc-drawer-money strong {
    color: #fff;
    text-shadow:
        -1px -1px 0 #d30b0b,
        1px -1px 0 #d30b0b,
        -1px 1px 0 #d30b0b,
        1px 1px 0 #d30b0b,
        0 0 10px rgba(255, 65, 65, 0.45);
}

.wc-drawer-login {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 10px;
    background: #18b244;
    color: #fff;
    font-weight: 700;
}

.wc-drawer__nav {
    display: grid;
    gap: 4px;
    padding: 18px 0 10px;
}

.wc-drawer-group {
    display: grid;
    gap: 4px;
}

.wc-drawer-link {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 16px;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 10px 0 4px;
    border-radius: 12px;
    color: #475366;
    font-size: 16px;
}

.wc-drawer-link--toggle {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.wc-drawer-link__icon {
    text-align: center;
    color: #565c67;
    font-size: 22px;
}

.wc-drawer-link__text {
    font-weight: 500;
}

.wc-drawer-link__arrow {
    justify-self: end;
    color: #717b8c;
    transition: transform 0.2s ease;
}

.wc-drawer-link.is-active,
.wc-drawer-link:hover {
    color: #18a73f;
}

.wc-drawer-link.is-open {
    background: linear-gradient(180deg, #f3ffe8 0%, #ddffd1 100%);
    color: #18a73f;
}

.wc-drawer-link.is-open .wc-drawer-link__arrow {
    transform: rotate(90deg);
    color: #18a73f;
}

.wc-drawer-link.is-disabled {
    opacity: 0.45;
    cursor: default;
}

.wc-drawer-submenu {
    display: none;
    gap: 2px;
    padding: 0 0 4px 40px;
}

.wc-drawer-submenu.is-open {
    display: grid;
}

.wc-drawer-subsection {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    margin: 6px 0 4px;
    padding: 0 10px 0 6px;
    border-radius: 12px;
    background: linear-gradient(180deg, #eee8ff 0%, #e6e0ff 100%);
    color: #6e35f4;
    font-size: 15px;
    font-weight: 700;
}

.wc-drawer-subsection--toggle {
    width: 100%;
    border: 0;
    text-align: left;
}

.wc-drawer-subsection__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.wc-drawer-subsection__icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 8px;
}

.wc-drawer-subsection__icon i {
    font-size: 18px;
}

.wc-drawer-subsection__text {
    min-width: 0;
}

.wc-drawer-subsection__arrow {
    justify-self: end;
    transition: transform 0.2s ease;
}

.wc-drawer-subsection--toggle.is-open .wc-drawer-subsection__arrow {
    transform: rotate(90deg);
}

.wc-drawer-submenu--nested {
    padding: 0 0 4px 22px;
}

.wc-drawer-subgroup + .wc-drawer-subgroup {
    margin-top: 4px;
}

.wc-drawer-sublink {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 2px;
    color: #545f72;
    font-size: 15px;
}

.wc-drawer-sublink:hover {
    color: #18a73f;
}

.wc-drawer-sublink__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: rgba(169, 60, 255, 0.12);
    color: var(--wc-logo-violet-strong);
}

.wc-drawer-sublink__icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 6px;
}

.wc-drawer-sublink__icon i {
    font-size: 16px;
    color: currentColor;
}

.wc-menu-dropdown--withdraw .wc-menu-dropdown__link[href$="/client/withdraw-wallet"] .wc-menu-dropdown__icon,
.wc-menu-dropdown--withdraw .wc-menu-dropdown__link[href$="/client/withdraw-affiliate"] .wc-menu-dropdown__icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--wc-logo-violet) 0%, var(--wc-logo-blue) 58%, var(--wc-logo-cyan) 100%);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(92, 107, 255, 0.26);
}

.wc-menu-dropdown--withdraw .wc-menu-dropdown__link[href$="/client/withdraw-wallet"] .wc-menu-dropdown__icon i,
.wc-menu-dropdown--withdraw .wc-menu-dropdown__link[href$="/client/withdraw-affiliate"] .wc-menu-dropdown__icon i {
    color: currentColor;
    font-size: 17px;
}

.wc-drawer-sublink[href$="/client/withdraw-wallet"] .wc-drawer-sublink__icon,
.wc-drawer-sublink[href$="/client/withdraw-affiliate"] .wc-drawer-sublink__icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--wc-logo-violet) 0%, var(--wc-logo-blue) 58%, var(--wc-logo-cyan) 100%);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(92, 107, 255, 0.26);
}

.wc-drawer-sublink[href$="/client/withdraw-wallet"] .wc-drawer-sublink__icon i,
.wc-drawer-sublink[href$="/client/withdraw-affiliate"] .wc-drawer-sublink__icon i {
    color: currentColor;
    font-size: 17px;
}

.wc-drawer-sublink__text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wc-drawer__support {
    display: flex;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid #edf0f3;
}

.wc-drawer__support a {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f4faf5;
    color: #18b244;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.wc-floating-chat {
    position: fixed;
    right: 18px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 176px);
    z-index: 36;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.wc-floating-chat__toggle {
    position: relative;
    width: 66px;
    height: 66px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(180deg, #7c6cf5 0%, #5b4fd7 100%);
    color: #fff;
    box-shadow:
        0 20px 40px rgba(91, 79, 215, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.wc-floating-chat__teaser {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);
    width: min(272px, calc(100vw - 44px));
    min-width: min(220px, calc(100vw - 44px));
    max-width: min(272px, calc(100vw - 44px));
    padding: 12px 16px;
    border-radius: 18px 18px 8px 18px;
    background: linear-gradient(180deg, #7c6cf5 0%, #5b4fd7 100%);
    color: #fff;
    box-shadow: 0 22px 44px rgba(91, 79, 215, 0.28);
    transform-origin: right bottom;
    transform: translateY(18px) scale(0.84);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.26s ease, transform 0.26s cubic-bezier(0.2, 0.9, 0.28, 1);
    z-index: 2;
}

.wc-floating-chat__teaser::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: -8px;
    width: 16px;
    height: 16px;
    background: #5b4fd7;
    border-radius: 4px;
    transform: rotate(45deg);
}

.wc-floating-chat__teaser.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.wc-floating-chat__teaser.is-hiding {
    opacity: 0;
    transform: translateY(18px) scale(0.84);
}

.wc-floating-chat__teaser-text {
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    white-space: normal;
    text-wrap: balance;
}

.wc-floating-chat__toggle:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 24px 46px rgba(91, 79, 215, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.26);
    filter: saturate(1.04);
}

.wc-floating-chat__toggle-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.wc-floating-chat__badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.wc-floating-chat__panel {
    width: min(392px, calc(100vw - 20px));
    height: min(560px, calc(100vh - 120px));
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(208, 215, 227, 0.92);
    box-shadow: 0 34px 60px rgba(15, 23, 42, 0.18);
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    overflow: hidden;
}

.wc-floating-chat__head {
    padding: 18px 18px 14px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #eef2f7;
}

.wc-floating-chat__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.wc-floating-chat__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(180deg, #eef2ff 0%, #e0e7ff 100%);
    color: #4f46e5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.wc-floating-chat__brand-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.wc-floating-chat__brand-copy strong {
    font-size: 16px;
    line-height: 1.3;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wc-floating-chat__status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #16a34a;
    font-size: 14px;
    font-weight: 600;
}

.wc-floating-chat__status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.14);
}

.wc-floating-chat__close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 12px;
    background: #f3f4f6;
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wc-floating-chat__intro {
    padding: 12px 18px 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
}

.wc-floating-chat__messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    overflow: auto;
    background:
        radial-gradient(circle at top right, rgba(124, 108, 245, 0.08), transparent 42%),
        linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
}

.wc-floating-chat__empty {
    margin: auto 0;
    text-align: center;
    color: #4b5563;
    display: grid;
    gap: 10px;
    justify-items: center;
}

.wc-floating-chat__empty i {
    font-size: 28px;
    color: #6366f1;
}

.wc-floating-chat__empty strong {
    color: #111827;
}

.wc-floating-chat__empty p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}

.wc-floating-chat__message {
    display: grid;
    gap: 6px;
    width: 100%;
}

.wc-floating-chat__message.is-admin {
    justify-items: start;
}

.wc-floating-chat__message.is-client {
    justify-items: end;
}

.wc-floating-chat__bubble {
    max-width: min(86%, 272px);
    padding: 14px 16px;
    border-radius: 22px;
    font-size: 15px;
    line-height: 1.55;
    word-break: break-word;
    border: 1px solid transparent;
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.1);
}

.wc-floating-chat__message.is-admin .wc-floating-chat__bubble {
    border-top-left-radius: 8px;
    background: linear-gradient(180deg, #f7f9ff 0%, #ecf3ff 100%);
    border-color: rgba(99, 102, 241, 0.16);
    color: #0f172a;
    box-shadow: 0 16px 30px rgba(99, 102, 241, 0.1);
}

.wc-floating-chat__message.is-client .wc-floating-chat__bubble {
    border-top-right-radius: 8px;
    background: linear-gradient(180deg, #5b62f4 0%, #4338ca 100%);
    border-color: rgba(79, 70, 229, 0.24);
    color: #fff;
    box-shadow: 0 18px 34px rgba(67, 56, 202, 0.26);
}

.wc-floating-chat__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #6b7280;
    padding: 0 4px;
}

.wc-floating-chat__message.is-admin .wc-floating-chat__meta {
    color: #64748b;
}

.wc-floating-chat__message.is-client .wc-floating-chat__meta {
    color: #4f46e5;
    font-weight: 600;
}

.wc-floating-chat__message.is-recalled .wc-floating-chat__bubble {
    background: #f8fafc !important;
    border-color: rgba(148, 163, 184, 0.26) !important;
    color: #64748b !important;
    font-style: italic;
    box-shadow: none;
}

.wc-floating-chat__message.is-recalled .wc-floating-chat__meta {
    color: #94a3b8;
}

.wc-floating-chat__status {
    font-weight: 600;
}

.wc-floating-chat__meta-sep {
    opacity: 0.65;
}

.wc-floating-chat__message.is-typing .wc-floating-chat__bubble {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.wc-floating-chat__typing-label {
    font-weight: 500;
}

.wc-floating-chat__typing-dots {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.wc-floating-chat__typing-dots span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.4;
    animation: wcChatTypingPulse 1.1s ease-in-out infinite;
}

.wc-floating-chat__typing-dots span:nth-child(2) {
    animation-delay: 0.16s;
}

.wc-floating-chat__typing-dots span:nth-child(3) {
    animation-delay: 0.32s;
}

@keyframes wcChatTypingPulse {
    0%,
    100% {
        opacity: 0.32;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-2px);
    }
}

.wc-floating-chat__composer {
    padding: 14px 16px 16px;
    border-top: 1px solid #eef2f7;
    background: #fff;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 50px;
    grid-template-areas:
        "tools tools"
        "input send";
    gap: 10px;
    align-items: end;
}

.wc-floating-chat__composer-tools {
    grid-area: tools;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.wc-floating-chat__composer textarea {
    grid-area: input;
    width: 100%;
    min-height: 52px;
    max-height: 148px;
    resize: none;
    border: 1px solid #d6dbe7;
    border-radius: 18px;
    padding: 14px 16px;
    color: #111827;
    line-height: 1.45;
    background: #fff;
}

.wc-floating-chat__composer textarea:focus {
    outline: none;
    border-color: #7c6cf5;
    box-shadow: 0 0 0 3px rgba(124, 108, 245, 0.12);
}

.wc-floating-chat__composer button[data-wc-support-chat-send] {
    grid-area: send;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, #7c6cf5 0%, #5b4fd7 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 16px 28px rgba(91, 79, 215, 0.24);
}

.wc-floating-chat__composer button[data-wc-support-chat-send]:disabled {
    opacity: 0.55;
    box-shadow: none;
}

.wc-floating-chat__tool-btn {
    border: 0;
    border-radius: 12px;
    padding: 8px 12px;
    background: #f3f4f6;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: none;
}

.wc-floating-chat__tool-btn:first-of-type {
    background: #e0f2fe;
}

.wc-floating-chat__tool-btn:last-of-type {
    background: #ede9fe;
}

.wc-support-chat__attachment-preview {
    display: none;
    min-width: 0;
    flex: 1 1 auto;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: #f8fafc;
}

.wc-support-chat__attachment-preview.is-visible {
    display: flex;
}

.wc-support-chat__attachment-thumb {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 10px;
    background: #e2e8f0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-support-chat__attachment-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wc-support-chat__attachment-meta {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wc-support-chat__attachment-name {
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wc-support-chat__attachment-sub {
    font-size: 11px;
    color: #64748b;
}

.wc-support-chat__attachment-clear {
    margin-left: auto;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #ef4444;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.wc-floating-support {
    position: fixed;
    right: 16px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 86px);
    z-index: 34;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(180deg, #1084ff 0%, #0068ff 100%);
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow:
        0 18px 38px rgba(0, 104, 255, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.26);
    color: #0d4fba;
    overflow: visible;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.wc-floating-support::before,
.wc-floating-support::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(0, 104, 255, 0.24);
    background: rgba(0, 104, 255, 0.1);
    opacity: 0;
    transform: scale(1);
    animation: wcFloatingSupportPulse 2.6s ease-out infinite;
}

.wc-floating-support::after {
    animation-delay: 1.1s;
}

.wc-floating-support:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 22px 46px rgba(0, 104, 255, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
    filter: saturate(1.04);
}

.wc-floating-support__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
        0 12px 22px rgba(0, 76, 188, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.wc-floating-support__icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.wc-floating-scrolltop {
    position: fixed;
    right: 24px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 264px);
    z-index: 33;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(180deg, #173c57 0%, #0f2f48 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 16px 32px rgba(15, 47, 72, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px) scale(0.92);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wc-floating-scrolltop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.wc-floating-scrolltop:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 20px 38px rgba(15, 47, 72, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.wc-floating-scrolltop i {
    font-size: 17px;
    line-height: 1;
}

.wc-floating-scrolltop span {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff;
    color: #0f2f48;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.wc-floating-scrolltop:hover span,
.wc-floating-scrolltop:focus-visible span {
    opacity: 1;
    transform: translate(-2px, -50%);
}

@keyframes wcFloatingSupportPulse {
    0% {
        transform: scale(1);
        opacity: 0.28;
    }

    100% {
        transform: scale(1.68);
        opacity: 0;
    }
}

@media (max-width: 767px) {
    .wc-floating-chat {
        right: 12px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 162px);
        gap: 10px;
    }

    .wc-floating-chat.is-open {
        right: 0;
        bottom: 0;
        gap: 0;
    }

    .wc-floating-chat__toggle {
        width: 58px;
        height: 58px;
        box-shadow:
            0 16px 32px rgba(91, 79, 215, 0.24),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .wc-floating-chat__toggle-icon {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }

    .wc-floating-chat__badge {
        min-width: 20px;
        height: 20px;
        padding: 0 5px;
        font-size: 10px;
    }

    .wc-floating-chat__teaser {
        bottom: calc(100% + 10px);
        width: min(228px, calc(100vw - 36px));
        min-width: min(176px, calc(100vw - 36px));
        max-width: min(228px, calc(100vw - 36px));
        padding: 10px 14px;
        border-radius: 16px 16px 8px 16px;
    }

    .wc-floating-chat__teaser::after {
        right: 18px;
        bottom: -7px;
        width: 14px;
        height: 14px;
    }

    .wc-floating-chat__teaser-text {
        font-size: 12px;
        line-height: 1.4;
    }

    .wc-floating-chat__panel {
        width: min(360px, calc(100vw - 14px));
        height: min(68vh, 500px);
        border-radius: 22px;
    }

    .wc-floating-chat.is-open .wc-floating-chat__panel {
        position: fixed;
        top: max(8px, calc(env(safe-area-inset-top, 0px) + 8px));
        right: max(7px, calc(env(safe-area-inset-right, 0px) + 7px));
        bottom: calc(env(safe-area-inset-bottom, 0px) + 8px);
        width: min(360px, calc(100vw - 14px));
        height: auto;
        max-height: none;
        border-radius: 22px;
    }

    .wc-floating-chat.is-open .wc-floating-chat__toggle,
    .wc-floating-chat.is-open .wc-floating-chat__teaser {
        opacity: 0;
        pointer-events: none;
        transform: scale(0.92);
    }

    .wc-floating-chat__head {
        padding: 14px 14px 10px;
    }

    .wc-floating-chat__brand-copy strong {
        font-size: 17px;
    }

    .wc-floating-chat__intro {
        font-size: 13px;
    }

    .wc-floating-chat__intro,
    .wc-floating-chat__messages {
        padding-left: 14px;
        padding-right: 14px;
    }

    .wc-floating-chat__composer {
        padding: 10px 12px 12px;
    }

    .wc-floating-chat__composer textarea {
        min-height: 46px;
        padding: 12px 14px;
        font-size: 14px;
    }

    .wc-floating-chat__composer button[data-wc-support-chat-send] {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }

    .wc-floating-chat__tool-btn {
        min-height: 36px;
        padding: 0 12px;
        font-size: 12px;
    }

    .wc-floating-support {
        right: 12px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 84px);
        width: 62px;
        height: 62px;
        box-shadow:
            0 14px 30px rgba(0, 104, 255, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.24);
    }

    .wc-floating-support__icon {
        width: 46px;
        height: 46px;
    }

    .wc-floating-support__icon img {
        width: 28px;
        height: 28px;
    }

    .wc-floating-scrolltop {
        right: 12px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 238px);
        width: 44px;
        height: 44px;
    }

    .wc-floating-scrolltop span {
        display: none;
    }
}

.wc-bottomdock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: none;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
    gap: 4px;
    padding: 0 10px calc(env(safe-area-inset-bottom, 0px) + 8px);
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid #dfe4ea;
    box-shadow: 0 -8px 24px rgba(26, 35, 48, 0.08);
}

.wc-bottomdock a,
.wc-bottomdock button {
    min-height: 56px;
    padding: 8px 4px 10px;
    border: 0;
    background: transparent;
    color: #4d596d;
    display: grid;
    gap: 4px;
    place-items: center;
    font-size: 11px;
    font-weight: 600;
    border-radius: 18px;
}

.wc-bottomdock i {
    font-size: 18px;
}

.wc-bottomdock .is-active {
    color: #19a742;
    background: rgba(25, 167, 66, 0.08);
}

.wc-bottomdock a:hover,
.wc-bottomdock button:hover {
    color: #19a742;
    background: rgba(25, 167, 66, 0.08);
}

.wc-bottomdock__primary {
    min-height: 74px !important;
    margin-top: -18px;
    padding: 10px 6px 14px !important;
    gap: 6px !important;
    color: #fff !important;
    background: linear-gradient(180deg, #26cb60 0%, #18a944 100%) !important;
    box-shadow: 0 16px 30px rgba(25, 167, 66, 0.28);
}

.wc-bottomdock__primary .wc-bottomdock__primary-icon {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.wc-bottomdock__primary i {
    font-size: 19px;
}

.wc-bottomdock__primary .wc-bottomdock__primary-label {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: none;
}

.wc-bottomdock__primary.is-active {
    color: #fff !important;
    background: linear-gradient(180deg, #20bf57 0%, #13933b 100%) !important;
}

.wc-topbar--dashboard {
    border: 0;
    background: linear-gradient(180deg, #19be49 0%, #18b244 100%);
    color: #fff;
}

.wc-topbar__inner--dashboard {
    justify-content: center;
    gap: 26px;
    min-height: 38px;
    flex-direction: row;
    align-items: center;
}

.wc-dashboard-shell {
    background: #f3f5f8;
}

.wc-dashboard-header {
    position: sticky;
    top: 0;
    z-index: 15;
    background: #fff;
    box-shadow: 0 10px 26px rgba(26, 35, 48, 0.08);
}

.wc-dashboard-header-desktop {
    display: none;
}

.wc-dashboard-header__bar {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 16px;
    min-height: 68px;
}

.wc-dashboard-header .wc-mobile-toggle {
    display: inline-flex;
}

.wc-mobile-toggle--soft,
.wc-action-icon--soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f7f7f8;
    color: #4d596d;
    border: 0;
    box-shadow: none;
}

.wc-logo--dashboard {
    justify-content: center;
}

.wc-logo--dashboard img {
    width: 190px;
}

.wc-main--dashboard-shop {
    padding: 18px 0 92px;
}

.wc-dashboard-container {
    display: grid;
    gap: 18px;
}

.wc-dashboard-container > * {
    min-width: 0;
}

.wc-dashboard-card {
    background: #fff;
    border: 1px solid #e7ebf2;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(28, 38, 52, 0.12);
    padding: 16px;
    min-width: 0;
}

.wc-dashboard-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.wc-dashboard-card__head h2 {
    margin: 0;
    color: #243146;
    font-size: 22px;
    font-weight: 600;
}

.wc-dashboard-card__icon {
    align-items: center;
    background: #eefdf4;
    border: 1px solid #c8f2d7;
    border-radius: 14px;
    color: #168b3a;
    display: inline-flex;
    flex: 0 0 auto;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.wc-dashboard-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.wc-dashboard-card__head--split {
    align-items: center;
}

.wc-btn--compact {
    min-height: 38px;
    padding: 0 16px;
    font-size: 14px;
    box-shadow: none;
}

.wc-dashboard-card__line,
.wc-dashboard-wallet__line {
    width: 52px;
    height: 2px;
    margin: 14px 0 18px;
    background: #18b244;
}

.wc-dashboard-wallet__label {
    color: #314159;
    font-size: 16px;
    margin-bottom: 8px;
}

.wc-dashboard-wallet__amount {
    color: #18b244;
    font-size: clamp(34px, 6vw, 52px);
    line-height: 1;
    font-weight: 400;
    margin-bottom: 20px;
}

.wc-dashboard-wallet__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.wc-dashboard-wallet__stat {
    min-height: 118px;
    padding: 22px 18px;
    border-radius: 12px;
    background: #f3f4f6;
    display: grid;
    align-content: start;
    gap: 10px;
}

.wc-dashboard-wallet__stat span {
    color: #3f4c62;
    font-size: 15px;
    line-height: 1.45;
}

.wc-dashboard-wallet__stat strong {
    color: #243146;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 500;
}

.wc-dashboard-info-grid,
.wc-dashboard-form {
    display: grid;
    gap: 16px;
}

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

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

.wc-dashboard-field {
    display: grid;
    gap: 10px;
}

.wc-dashboard-field--with-status {
    align-content: start;
}

.wc-dashboard-field span {
    color: #314159;
    font-size: 15px;
}

.wc-dashboard-field input {
    width: 100%;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid #dfe4ea;
    border-radius: 8px;
    background: #edf1f5;
    color: #263449;
    font-size: 15px;
}

.wc-dashboard-field.is-editable input {
    background: #fff;
    border-color: #d8e1dd;
}

.wc-dashboard-field input:focus {
    outline: 0;
    border-color: #18b244;
    box-shadow: 0 0 0 4px rgba(24, 178, 68, 0.12);
}

.wc-dashboard-field__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: -2px;
}

.wc-dashboard-field__note {
    display: block;
    margin-top: -4px;
    color: #5c6b7d;
    font-size: 13px;
    line-height: 1.55;
}

.wc-profile-account-grid {
    display: grid;
    grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.7fr);
    gap: 18px;
    align-items: start;
}

.wc-profile-avatar-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}

.wc-profile-avatar-picker {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    cursor: pointer;
}

.wc-profile-avatar-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.wc-profile-avatar-image {
    display: block;
    width: 112px;
    height: 112px;
    overflow: hidden;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #e8eef6;
    box-shadow: 0 10px 26px rgba(23, 38, 58, 0.18);
}

.wc-profile-avatar-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.wc-profile-avatar-badge {
    position: absolute;
    right: 4px;
    bottom: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #18b244;
    color: #fff;
    box-shadow: 0 8px 18px rgba(24, 178, 68, 0.3);
}

.wc-profile-avatar-picker:hover .wc-profile-avatar-image,
.wc-profile-avatar-picker:focus-within .wc-profile-avatar-image {
    box-shadow: 0 0 0 5px rgba(24, 178, 68, 0.14), 0 10px 26px rgba(23, 38, 58, 0.18);
}

.wc-profile-avatar-card.is-uploading {
    opacity: 0.72;
    pointer-events: none;
}

.wc-profile-avatar-copy {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.wc-profile-avatar-copy strong {
    color: #243146;
    font-size: 18px;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.wc-profile-avatar-copy span,
.wc-profile-avatar-copy small {
    color: #5c6b7d;
    font-size: 13px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.wc-dashboard-form--password {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wc-dashboard-email-verify-btn {
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(24, 178, 68, 0.36);
    border-radius: 8px;
    background: #fff;
    color: #167c37;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}

.wc-dashboard-email-verify-btn:hover,
.wc-dashboard-email-verify-btn:focus-visible {
    border-color: rgba(24, 178, 68, 0.68);
    color: #0f6b2c;
    box-shadow: 0 0 0 4px rgba(24, 178, 68, 0.1);
    outline: 0;
}

.wc-dashboard-email-verify-btn:disabled {
    cursor: wait;
    opacity: 0.72;
}

.wc-dashboard-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.wc-dashboard-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.9;
}

.wc-dashboard-badge--ok {
    background: rgba(24, 178, 68, 0.12);
    color: #167c37;
}

.wc-dashboard-badge--pending {
    background: rgba(210, 122, 41, 0.14);
    color: #a85d17;
}

.wc-dashboard-badge--muted {
    background: rgba(83, 98, 116, 0.12);
    color: #536274;
}

.wc-dashboard-telegram__hint {
    margin: 16px 0 0;
    color: #536274;
    font-size: 14px;
    line-height: 1.6;
}

.wc-dashboard-telegram__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.wc-dashboard-telegram-linkbox {
    display: grid;
    gap: 12px;
    margin-top: 16px;
    padding: 16px;
    border: 1px solid rgba(92, 107, 255, 0.16);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(169, 60, 255, 0.08) 0%, rgba(255, 255, 255, 0) 45%),
        rgba(255, 255, 255, 0.9);
}

.wc-dashboard-telegram-linkbox[hidden] {
    display: none;
}

.wc-dashboard-telegram-linkbox__head {
    display: grid;
    gap: 6px;
}

.wc-dashboard-telegram-linkbox__head strong {
    color: var(--wc-logo-text, #263449);
    font-size: 15px;
}

.wc-dashboard-telegram-linkbox__head span,
.wc-dashboard-telegram-linkbox p {
    color: var(--wc-logo-muted, #5c6b7d);
    font-size: 13px;
    line-height: 1.55;
}

.wc-dashboard-telegram-linkbox__head span[data-tone="error"] {
    color: #b42318;
}

.wc-dashboard-telegram-linkbox__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wc-dashboard-telegram-linkbox__code {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    background: #10172a;
    color: #eaf6ff;
    font-size: 13px;
    overflow-wrap: anywhere;
}

.wc-dashboard-telegram-linkbox__success {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #167c37;
}

.wc-dashboard-telegram-linkbox__success i {
    font-size: 26px;
}

.wc-dashboard-telegram-linkbox__success div {
    display: grid;
    gap: 3px;
}

.wc-dashboard-telegram-linkbox__success strong {
    color: #167c37;
    font-size: 15px;
}

.wc-dashboard-telegram-linkbox__success span {
    color: var(--wc-logo-muted, #536274);
    font-size: 13px;
}

.wc-dashboard-linklist {
    display: grid;
    gap: 12px;
}

.wc-dashboard-linkcard {
    width: 100%;
    min-height: 60px;
    padding: 0 18px;
    border: 1px solid #dce2ea;
    border-radius: 10px;
    background: #fff;
    color: #263449;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    box-shadow: 0 8px 22px rgba(31, 42, 58, 0.06);
}

.wc-dashboard-linkcard.is-active {
    border-color: #18b244;
    box-shadow: inset 0 0 0 1px rgba(24, 178, 68, 0.12);
}

.wc-dashboard-linkcard__icon {
    width: 18px;
    text-align: center;
    color: #2d3b50;
    font-size: 18px;
}

.wc-dashboard-linkcard__text {
    font-size: 15px;
    font-weight: 500;
}

.wc-bottomdock--dashboard {
    grid-template-columns: repeat(5, 1fr);
}

.wc-bottomdock--dashboard a,
.wc-bottomdock--dashboard button {
    font-size: 10px;
    text-transform: uppercase;
}

.wc-bottomdock--dashboard .wc-bottomdock__primary {
    text-transform: none;
}

.wc-dashboard-footer {
    padding: 28px 0 86px;
    background: #fff;
}

.wc-dashboard-footer__inner {
    display: grid;
    gap: 24px;
}

.wc-dashboard-footer__brand img {
    width: 180px;
    max-width: 100%;
    margin-bottom: 14px;
}

.wc-dashboard-footer__brand p {
    margin: 0;
    color: #4e596b;
    font-size: 16px;
    line-height: 1.6;
}

.wc-dashboard-footer__section {
    display: grid;
    gap: 14px;
}

.wc-dashboard-footer__section h3 {
    margin: 0;
    color: #2a3549;
    font-size: 18px;
    font-weight: 600;
}

.wc-dashboard-footer__section a,
.wc-dashboard-footer__item {
    color: #4e596b;
    font-size: 16px;
}

.wc-dashboard-footer__item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.wc-dashboard-footer__item i {
    width: 24px;
    text-align: center;
    color: #18b244;
    font-size: 24px;
}

.wc-orders-notice__box {
    border: 1px solid #d5e4b2;
    border-radius: 10px;
    background: #f3fde8;
    padding: 18px 18px 16px;
}

.wc-orders-notice__box h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 14px;
    color: #2a3a52;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 800;
    text-transform: uppercase;
}

.wc-orders-notice__box h3 i {
    color: #ef6a31;
}

.wc-orders-notice__box p {
    margin: 0 0 10px;
    color: #425067;
    font-size: 15px;
    line-height: 1.65;
}

.wc-orders-notice__box p:last-child {
    margin-bottom: 0;
}

.wc-orders-titlebar {
    min-height: 50px;
    padding: 0 16px;
    border-radius: 18px;
    background: linear-gradient(120deg, #17b85a 0%, #1e9ed6 100%);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 14px 28px rgba(24, 124, 197, 0.18);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: none;
}

.wc-orders-titlebar i {
    font-size: 15px;
    opacity: 0.96;
}

.wc-orders-titlebar span {
    line-height: 1.35;
}

.wc-orders-filter {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    min-width: 0;
}

.wc-orders-filter input,
.wc-orders-filter select,
.wc-orders-filter__search,
.wc-orders-filter__reset {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid #dfe4ea;
    border-radius: 8px;
    background: #edf1f5;
    color: #576479;
    font-size: 14px;
}

.wc-orders-filter select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #778296 50%), linear-gradient(135deg, #778296 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

.wc-orders-filter__search,
.wc-orders-filter__reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    background: #e7eaef;
}

.wc-orders-filter--compact {
    gap: 10px;
    padding: 10px;
    border-radius: 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%);
    border: 1px solid #e6ecf4;
}

.wc-orders-filter--compact input,
.wc-orders-filter--compact select,
.wc-orders-filter--compact .wc-orders-filter__search,
.wc-orders-filter--compact .wc-orders-filter__reset {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 13px;
    box-shadow: none;
}

.wc-orders-filter--compact .wc-orders-filter__search,
.wc-orders-filter--compact .wc-orders-filter__reset {
    gap: 7px;
    font-weight: 700;
}

.wc-orders-filter--compact .wc-orders-filter__search {
    background: linear-gradient(135deg, #f4f9ff 0%, #eaf2ff 100%);
    border: 1px solid #d8e4f6;
    color: #2f4f86;
}

.wc-orders-filter--compact .wc-orders-filter__reset {
    background: #f6f8fb;
    border: 1px solid #e1e7f0;
    color: #66758c;
}

.wc-orders-filter--compact input,
.wc-orders-filter--compact select {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #dce5f0;
    color: #405168;
}

.wc-orders-filter--compact input:focus,
.wc-orders-filter--compact select:focus {
    outline: none;
    border-color: rgba(24, 139, 216, 0.42);
    box-shadow: 0 0 0 4px rgba(24, 139, 216, 0.1);
}

.wc-orders-filter--compact input::placeholder {
    color: #8a96a8;
}

.wc-orders-tablewrap {
    margin-top: 18px;
    overflow: auto;
    border: 1px solid #e1e7ef;
    border-radius: 18px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 16px 34px rgba(26, 45, 72, 0.08);
    scrollbar-width: thin;
    scrollbar-color: #9bb1c8 transparent;
}

.wc-orders-tablewrap::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.wc-orders-tablewrap::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(112, 137, 168, 0.52);
}

.wc-orders-tablewrap::-webkit-scrollbar-track {
    background: transparent;
}

.wc-orders-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: #fff;
}

.wc-orders-table th,
.wc-orders-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #e7ebf2;
    border-right: 1px solid #e7ebf2;
    vertical-align: top;
    color: #445168;
    font-size: 14px;
}

.wc-orders-table th {
    background: #f8fafc;
    color: #3b475d;
    font-weight: 700;
}

.wc-orders-table td strong {
    color: #3f4c62;
}

.wc-interaction-history__table {
    min-width: 1180px;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
}

.wc-interaction-history__table th,
.wc-interaction-history__table td {
    vertical-align: top;
}

.wc-interaction-history__table th {
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 15px 14px;
    border-right-color: rgba(211, 222, 236, 0.9);
    border-bottom-color: rgba(211, 222, 236, 0.95);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 247, 252, 0.98) 100%);
    backdrop-filter: blur(10px);
    color: #30455f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-interaction-history__table tbody td {
    padding: 16px 14px;
    border-right-color: rgba(223, 231, 240, 0.92);
    border-bottom-color: rgba(223, 231, 240, 0.92);
    background: rgba(255, 255, 255, 0.95);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wc-interaction-history__table tbody tr:nth-child(even) td {
    background: rgba(249, 252, 255, 0.98);
}

.wc-interaction-history__table tbody tr:hover td {
    background: #f5faff;
}

.wc-interaction-history__table tbody tr td:first-child {
    border-left: 1px solid rgba(223, 231, 240, 0.92);
}

.wc-interaction-history__table tbody tr:first-child td:first-child {
    border-top-left-radius: 18px;
}

.wc-interaction-history__table tbody tr:first-child td:last-child {
    border-top-right-radius: 18px;
}

.wc-interaction-history__table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 18px;
}

.wc-interaction-history__table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 18px;
}

.wc-interaction-history__index {
    width: 64px;
    min-width: 64px;
    text-align: center;
    color: #2d425d;
    font-weight: 700;
}

.wc-interaction-history__order,
.wc-interaction-history__service,
.wc-interaction-history__status,
.wc-interaction-history__updated,
.wc-interaction-history__adminnote,
.wc-interaction-history__note {
    line-height: 1.7;
}

.wc-interaction-history__status {
    min-width: 178px;
}

.wc-interaction-history__trans {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #eef3ff 0%, #e4f1ff 100%);
    border: 1px solid rgba(125, 157, 236, 0.28);
    box-shadow: 0 8px 18px rgba(59, 91, 157, 0.08);
    color: #1f4fc9;
    font-size: 14px;
    font-weight: 800;
}

.wc-interaction-history__sub,
.wc-interaction-history__stamp,
.wc-interaction-history__relative,
.wc-interaction-history__updated span {
    margin-top: 4px;
    color: #64748b;
    font-size: 13px;
}

.wc-interaction-history__actions {
    margin-top: 12px;
    gap: 8px;
}

.wc-interaction-history__servicehead {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
}

.wc-interaction-history__servicehead a {
    color: #1d324e;
    font-weight: 700;
    line-height: 1.65;
}

.wc-interaction-history__productid,
.wc-interaction-history__reaction,
.wc-interaction-history__provider {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.wc-interaction-history__productid {
    background: #dde7ff;
    color: #3949ab;
}

.wc-interaction-history__reaction {
    background: #dcfce7;
    color: #15803d;
}

.wc-interaction-history__provider {
    background: #fff1c2;
    color: #8a5a00;
}

.wc-interaction-history__targetwrap {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fcff 0%, #f3f9ff 100%);
    border: 1px solid rgba(212, 225, 239, 0.92);
}

.wc-interaction-history__target {
    color: #0d8d83;
    word-break: break-word;
    line-height: 1.65;
}

.wc-interaction-history__statusline {
    color: #475569;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 12px;
    padding: 4px 0;
    white-space: nowrap;
}

.wc-interaction-history__statusline strong {
    justify-self: end;
    text-align: right;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.wc-interaction-history__money {
    color: #ef4444 !important;
    font-size: 15px;
}

.wc-interaction-history__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.wc-interaction-history__updated strong {
    display: block;
    color: #116d96;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
}

.wc-interaction-history__adminnote {
    min-width: 220px;
    color: #4c5f77;
    white-space: normal;
    line-height: 1.75;
}

.wc-interaction-history__note {
    min-width: 170px;
}

.wc-interaction-history__note textarea {
    width: 100%;
    min-height: 96px;
    padding: 12px 14px;
    border: 1px solid #d7e2ee;
    border-radius: 16px;
    background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
    color: #334155;
    resize: vertical;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.wc-interaction-history__note textarea:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.18);
    background: #fff;
}

.wc-interaction-history__note textarea[data-note-state="saving"] {
    border-color: #f59e0b;
    background: #fff8eb;
}

.wc-interaction-history__note textarea[data-note-state="saved"] {
    border-color: #22c55e;
    background: #effdf4;
}

.wc-interaction-history__note textarea[data-note-state="error"] {
    border-color: #ef4444;
    background: #fff1f2;
}

.wc-orders-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.wc-orders-check input {
    position: absolute;
    opacity: 0;
    inset: 0;
}

.wc-orders-check span {
    width: 22px;
    height: 22px;
    border: 2px solid #cfd7e2;
    border-radius: 5px;
    background: #fff;
}

.wc-orders-check input:checked + span {
    border-color: #18b244;
    background: linear-gradient(180deg, #20c34e 0%, #15a641 100%);
}

.wc-orders-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.wc-orders-action {
    min-height: 34px;
    padding: 0 10px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(19, 31, 49, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.wc-orders-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(19, 31, 49, 0.12);
    filter: saturate(1.05);
}

.wc-orders-action--view {
    background: #25b8c8;
}

.wc-orders-action--download {
    background: #198bff;
}

.wc-orders-action--refill {
    background: #1ea85d;
}

.wc-orders-action--provider-cancel {
    background: #d88818;
}

.wc-orders-action--delete {
    background: #f14252;
}

.wc-orders-action--cancel {
    background: #6f7c8f;
}

.wc-orders-action:disabled,
.wc-order-topbtn:disabled {
    opacity: 0.58;
    cursor: not-allowed;
    box-shadow: none;
}

.wc-orders-bulk {
    margin-top: 12px;
}

.wc-orders-bulk__delete {
    min-height: 36px;
    padding: 0 12px;
    border: 0;
    border-radius: 4px;
    background: #e63f4e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
}

.wc-order-detail-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 4px 0 2px;
}

.wc-order-detail-top__meta {
    display: grid;
    gap: 8px;
}

.wc-order-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #ea4454;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    width: fit-content;
}

.wc-order-back:hover {
    color: #fff;
}

.wc-order-trans {
    color: #455167;
    font-size: 15px;
}

.wc-order-trans strong {
    color: #2e3d56;
    font-size: 17px;
    word-break: break-word;
}

.wc-order-statusline .wc-badge {
    min-height: 32px;
    padding-inline: 12px;
    border-radius: 999px;
    font-size: 12px;
}

.wc-order-detail-top__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.wc-order-topbtn {
    min-height: 38px;
    padding: 0 12px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 12px 22px rgba(20, 33, 50, 0.08);
}

.wc-order-topbtn--info {
    background: #19a8d8;
}

.wc-order-topbtn--primary {
    background: #1686ff;
}

.wc-order-topbtn--refill {
    background: #1ea85d;
}

.wc-order-topbtn--muted {
    background: #f2b63f;
    color: #263246;
}

.wc-order-topbtn--provider-cancel {
    background: #d88818;
}

.wc-order-topbtn--danger {
    background: #e63f4e;
}

.wc-order-summary {
    padding: 18px 20px;
    border-radius: 20px;
}

.wc-order-summary__title {
    margin: 0;
    color: #233249;
    display: grid;
    gap: 6px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.28;
    word-break: break-word;
}

.wc-order-summary__title span {
    color: #718097;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-order-summary__title a {
    color: #233249;
}

.wc-order-summary__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.wc-order-summary__pill {
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.wc-order-summary__pill--quantity {
    background: linear-gradient(90deg, #d02bb7 0%, #a636cc 100%);
}

.wc-order-summary__pill--payment {
    background: linear-gradient(90deg, #1aa8d3 0%, #1783cc 100%);
}

.wc-order-statusnote {
    margin-top: 12px;
    padding: 12px 14px;
    border: 1px solid #e1e6ee;
    border-radius: 14px;
    background: #fbfdff;
    color: #4d5b6f;
    font-size: 14px;
    line-height: 1.65;
    white-space: normal;
}

.wc-order-detail-card {
    padding: 16px 18px 18px;
    border-radius: 20px;
}

.wc-order-detail-filter {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.9fr) minmax(180px, 0.9fr);
    gap: 10px;
    align-items: center;
}

.wc-order-detail-filter input,
.wc-order-detail-filter__action,
.wc-order-detail-show select {
    min-height: 42px;
    border: 1px solid #dde3eb;
    border-radius: 12px;
    background: #edf1f5;
    color: #576479;
    font-size: 13px;
}

.wc-order-detail-filter input {
    width: 100%;
    padding: 0 14px;
}

.wc-order-detail-filter__action {
    width: 100%;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wc-order-detail-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-top: 10px;
}

.wc-order-detail-show {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4c576c;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.wc-order-detail-show select {
    min-width: 124px;
    padding: 0 14px;
    background-image: linear-gradient(45deg, transparent 50%, #778296 50%), linear-gradient(135deg, #778296 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    appearance: none;
    padding-right: 42px;
}

.wc-order-tools {
    position: relative;
}

.wc-order-tools[open] .wc-order-tools__summary i:last-child {
    transform: rotate(180deg);
}

.wc-order-tools__summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    background: #27313d;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.wc-order-tools__summary::-webkit-details-marker {
    display: none;
}

.wc-order-tools__summary i:last-child {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.wc-order-tools__menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 260px;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 32px rgba(22, 31, 44, 0.16);
    z-index: 5;
    display: grid;
    gap: 6px;
}

.wc-order-tools__menu button {
    min-height: 40px;
    padding: 0 12px;
    border: 0;
    border-radius: 8px;
    background: #f5f7fb;
    color: #425067;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.wc-order-tools__menu button:hover {
    background: #edf3ff;
    color: #1d4ed8;
}

.wc-order-detail-tablewrap {
    margin-top: 14px;
    overflow: auto;
    border: 1px solid #dbe3ec;
    border-radius: 14px;
}

.wc-order-detail-table {
    width: 100%;
    min-width: 880px;
    border-collapse: collapse;
    background: #fff;
}

.wc-order-detail-table th,
.wc-order-detail-table td {
    padding: 12px 12px;
    border-bottom: 1px solid #e7ebf2;
    border-right: 1px solid #e7ebf2;
    vertical-align: middle;
    color: #445168;
    font-size: 14px;
}

.wc-order-detail-table th {
    background: #1dbb42;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1;
}

.wc-order-detail-table td strong {
    color: #2f3b52;
    font-size: 15px;
}

.wc-order-detail-table__check {
    width: 68px;
    text-align: center;
}

.wc-order-detail-copy textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #d7dde6;
    border-radius: 8px;
    background: #f0f2f5;
    color: #5b6472;
    resize: vertical;
}

.wc-order-detail-footer {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.wc-order-detail-footer p {
    margin: 0;
    color: #5c677b;
    font-size: 14px;
}

.wc-recharge-bankgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.wc-recharge-bankcard,
.wc-recharge-manualcard {
    padding: 22px 24px;
}

.wc-recharge-bankcard.is-focus {
    border-color: rgba(22, 163, 74, 0.45);
    box-shadow: 0 18px 42px rgba(22, 163, 74, 0.16);
    scroll-margin-top: 96px;
}

.wc-recharge-bankcard h3 {
    margin: 0;
    color: #25334a;
    font-size: 24px;
    font-weight: 700;
}

.wc-recharge-bankcard__image {
    display: block;
    width: min(100%, 300px);
    max-height: 300px;
    margin: 18px auto;
    object-fit: contain;
}

.wc-recharge-history {
    padding: 16px 18px 22px;
}

.wc-recharge-filter {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.wc-recharge-filter > input,
.wc-recharge-filter > select,
.wc-recharge-filter__action,
.wc-recharge-toolbar__field select {
    min-height: 46px;
    border: 1px solid #dfe4ea;
    border-radius: 8px;
    background: #edf1f5;
    color: #576479;
    font-size: 14px;
}

.wc-recharge-filter > input {
    width: 100%;
    padding: 0 18px;
}

.wc-recharge-filter > select {
    width: 100%;
    padding: 0 42px 0 18px;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #778296 50%), linear-gradient(135deg, #778296 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.wc-recharge-filter__action {
    width: 100%;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wc-recharge-filter--compact {
    gap: 12px;
}

.wc-recharge-filter--compact > input,
.wc-recharge-filter--compact > select,
.wc-recharge-filter--compact .wc-recharge-filter__action,
.wc-recharge-filter--compact .wc-recharge-filter__inlinefield {
    min-height: 44px;
    border-radius: 14px;
}

.wc-recharge-filter__inlinefield {
    min-width: 0;
    padding: 0 14px;
    border: 1px solid #dfe4ea;
    background: #edf1f5;
    color: #576479;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.wc-recharge-filter__inlinefield span {
    color: #5d6b81;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.wc-recharge-filter__inlinefield select {
    min-width: 74px;
    min-height: 38px;
    margin-left: auto;
    padding: 0 34px 0 10px;
    border: 0;
    background-color: transparent;
    color: #3f4e67;
    font-size: 14px;
    font-weight: 700;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #778296 50%), linear-gradient(135deg, #778296 50%, transparent 50%);
    background-position: calc(100% - 14px) calc(50% - 2px), calc(100% - 8px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.wc-recharge-filter__inlinefield select:focus {
    outline: none;
}

.wc-recharge-toolbar {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.wc-recharge-toolbar__field {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #4d596d;
    font-size: 15px;
}

.wc-recharge-toolbar__field span {
    white-space: nowrap;
}

.wc-recharge-toolbar__field select {
    min-width: 110px;
    padding: 0 16px;
    background-image: linear-gradient(45deg, transparent 50%, #778296 50%), linear-gradient(135deg, #778296 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    appearance: none;
    padding-right: 42px;
}

.wc-recharge-toolbar__field--date {
    margin-left: auto;
}

.wc-recharge-tablewrap {
    margin-top: 10px;
    overflow: auto;
    border: 1px solid #e1e7ef;
    border-radius: 0;
}

.wc-recharge-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
    background: #fff;
}

.wc-recharge-table th,
.wc-recharge-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #e7ebf2;
    border-right: 1px solid #e7ebf2;
    vertical-align: top;
    color: #445168;
    font-size: 14px;
}

.wc-recharge-table th {
    background: #f8fafc;
    color: #3b475d;
    font-weight: 700;
}

.wc-invoice-toolbar {
    margin-top: 14px;
    padding: 12px;
    border: 1px solid #dbe6f2;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 255, 0.92));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.wc-invoice-toolbar__copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.wc-invoice-toolbar__copy strong {
    color: #17324f;
    font-size: 14px;
    line-height: 1.35;
}

.wc-invoice-toolbar__copy span {
    color: #60708a;
    font-size: 12px;
    line-height: 1.45;
}

.wc-invoice-toolbar__button {
    flex: 0 0 auto;
    white-space: nowrap;
}

.wc-invoice-toolbar__button small {
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(20, 99, 255, 0.12);
    color: #155ce8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.wc-invoice-toolbar__button:disabled {
    cursor: not-allowed;
    opacity: 0.58;
}

.wc-invoice-col {
    width: 48px;
    min-width: 48px;
    text-align: center !important;
    vertical-align: middle !important;
}

.wc-invoice-check {
    position: relative;
    width: 28px;
    height: 28px;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.wc-invoice-check input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.wc-invoice-check__box {
    width: 22px;
    height: 22px;
    border: 1px solid #b8c7da;
    border-radius: 6px;
    background: #fff;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.wc-invoice-check__box i {
    font-size: 11px;
    opacity: 0;
    transform: scale(0.74);
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.wc-invoice-check input:checked + .wc-invoice-check__box,
.wc-invoice-check input:indeterminate + .wc-invoice-check__box {
    border-color: #1463ff;
    background: #1463ff;
    box-shadow: 0 0 0 3px rgba(20, 99, 255, 0.14);
}

.wc-invoice-check input:checked + .wc-invoice-check__box i,
.wc-invoice-check input:indeterminate + .wc-invoice-check__box i {
    opacity: 1;
    transform: scale(1);
}

.wc-invoice-check input:focus-visible + .wc-invoice-check__box {
    outline: 3px solid rgba(20, 99, 255, 0.22);
    outline-offset: 2px;
}

.wc-payos-history-card__actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.wc-recharge-desc {
    color: #4a576d;
    line-height: 1.6;
}

.wc-recharge-code {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.wc-recharge-code--compact {
    gap: 6px;
}

.wc-recharge-code__value {
    color: #17324f;
    font-size: 14px;
    line-height: 1.4;
    word-break: break-word;
}

.wc-recharge-code__value--mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.wc-recharge-code__copy {
    min-height: 30px;
    padding: 0 10px;
    border: 0;
    border-radius: 999px;
    background: #e9f3ff;
    color: #1761c0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
}

.wc-recharge-code__copy:hover {
    background: #d9ebff;
}

.wc-recharge-desc [hidden] {
    display: none !important;
}

.wc-recharge-desc__toggle {
    border: 0;
    background: transparent;
    color: #2156f5;
    font-size: 14px;
    padding: 0;
    margin-left: 6px;
}

.wc-recharge-money {
    font-size: 15px;
}

.wc-recharge-money--green {
    color: #06a728;
}

.wc-recharge-money--red {
    color: #ff1f1f;
}

.wc-recharge-money--blue {
    color: #173df4;
}

.wc-recharge-status {
    font-size: 15px;
}

.wc-recharge-status.is-success {
    color: #0b9e3a;
}

.wc-recharge-status.is-pending {
    color: #c78314;
}

.wc-recharge-totals {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: #39475e;
    font-size: 15px;
}

.wc-recharge-footer {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.wc-recharge-footer p {
    margin: 0;
    color: #5c677b;
    font-size: 14px;
}

.wc-ledger-page {
    padding: 22px;
    display: grid;
    gap: 20px;
    background:
        radial-gradient(circle at top right, rgba(30, 111, 255, 0.08), transparent 28%),
        radial-gradient(circle at top left, rgba(14, 168, 109, 0.1), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.wc-ledger-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.wc-ledger-hero__copy {
    max-width: 720px;
}

.wc-ledger-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(15, 122, 84, 0.1);
    color: #0d7e57;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-ledger-hero h2 {
    margin: 0;
    color: #16324d;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.06;
}

.wc-ledger-hero p {
    margin: 12px 0 0;
    color: #5a6880;
    font-size: 15px;
    line-height: 1.7;
}

.wc-ledger-hero__badge {
    min-width: 220px;
    padding: 18px 20px;
    border-radius: 24px;
    border: 1px solid rgba(23, 50, 77, 0.08);
    background: linear-gradient(145deg, #133552 0%, #1b7f5a 100%);
    box-shadow: 0 18px 42px rgba(17, 47, 72, 0.2);
    text-align: right;
}

.wc-ledger-hero__badge span {
    display: block;
    color: rgba(239, 248, 255, 0.8);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-ledger-hero__badge strong {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-size: 28px;
    line-height: 1.1;
}

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

.wc-ledger-kpi {
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(20, 50, 77, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 30px rgba(20, 38, 64, 0.08);
}

.wc-ledger-kpi span,
.wc-ledger-kpi small {
    display: block;
}

.wc-ledger-kpi span {
    color: #617086;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-ledger-kpi strong {
    display: block;
    margin-top: 10px;
    color: #16324d;
    font-size: 26px;
    line-height: 1.12;
}

.wc-ledger-kpi small {
    margin-top: 8px;
    color: #76849b;
    font-size: 13px;
    line-height: 1.55;
}

.wc-ledger-kpi--credit {
    background: linear-gradient(180deg, rgba(233, 252, 242, 0.98) 0%, rgba(249, 255, 251, 0.96) 100%);
}

.wc-ledger-kpi--credit strong {
    color: #0b9d59;
}

.wc-ledger-kpi--debit {
    background: linear-gradient(180deg, rgba(255, 242, 240, 0.98) 0%, rgba(255, 251, 251, 0.96) 100%);
}

.wc-ledger-kpi--debit strong {
    color: #d2534d;
}

.wc-ledger-kpi--balance {
    background: linear-gradient(180deg, rgba(239, 245, 255, 0.98) 0%, rgba(250, 252, 255, 0.96) 100%);
}

.wc-ledger-kpi--balance strong {
    color: #1d4fd7;
}

.wc-coin-overview-card {
    padding: 14px 16px;
    border-color: rgba(110, 88, 255, 0.14);
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(28, 38, 52, 0.08);
}

.wc-coin-overview-card .wc-dashboard-card__head {
    align-items: flex-start;
}

.wc-coin-overview-card .wc-dashboard-card__head h2 {
    font-size: 21px;
    line-height: 1.18;
}

.wc-coin-overview-card .wc-copy {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.45;
}

.wc-coin-overview-card .wc-dashboard-card__line {
    width: 44px;
    margin: 10px 0 12px;
}

.wc-coin-kpis {
    display: grid;
    grid-template-columns: minmax(180px, 0.8fr) repeat(2, minmax(210px, 1fr));
    gap: 10px;
}

.wc-coin-kpi {
    display: grid;
    align-content: center;
    gap: 4px;
    min-height: 78px;
    padding: 11px 14px;
    border-radius: 14px;
    border: 1px solid rgba(15, 122, 84, 0.11);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 252, 249, 0.94) 100%);
    box-shadow: 0 8px 18px rgba(20, 38, 64, 0.05);
}

.wc-coin-kpi--balance {
    border-color: rgba(240, 139, 85, 0.2);
    background: linear-gradient(180deg, rgba(255, 249, 244, 0.98) 0%, rgba(246, 251, 248, 0.94) 100%);
}

.wc-coin-kpi span {
    color: var(--wc-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wc-coin-kpi strong {
    color: var(--wc-primary-strong);
    font-size: 22px;
    line-height: 1.1;
}

.wc-coin-kpi small {
    color: #5f796c;
    font-size: 12px;
    line-height: 1.35;
}

.wc-coin-kpi a,
.wc-coin-guide a {
    color: var(--wc-primary-strong);
    font-weight: 800;
}

.wc-coin-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.wc-coin-guide {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    margin-top: 0;
    min-height: 0;
    padding: 9px 11px;
    border-radius: 13px;
    border: 1px solid rgba(240, 139, 85, 0.2);
    background: rgba(255, 249, 244, 0.82);
    color: #5f644f;
    font-size: 12px;
    line-height: 1.45;
}

.wc-coin-guide i {
    margin-top: 1px;
    color: var(--wc-accent);
}

.wc-coin-guide--wide {
    grid-column: 1 / -1;
}

.wc-coin-guide--security {
    border-color: rgba(15, 122, 84, 0.18);
    background: rgba(240, 253, 244, 0.9);
    color: #365d4e;
}

.wc-coin-guide--security i {
    color: var(--wc-primary-strong);
}

.wc-coin-guide--danger {
    border-color: rgba(220, 38, 38, 0.28);
    background: #fff1f2;
    color: #991b1b;
}

.wc-coin-guide--danger i,
.wc-coin-guide--danger strong {
    color: #dc2626;
}

.wc-coin-tabs {
    margin-bottom: 0;
}

.wc-coin-subtabs-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.wc-coin-subtabs-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    padding: 0 10px;
    border-radius: 10px;
    background: rgba(15, 122, 84, 0.08);
    color: var(--wc-primary-strong);
    font-size: 13px;
    font-weight: 850;
}

.wc-coin-subtabs {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    width: fit-content;
    max-width: 100%;
    padding: 4px;
    border: 1px solid rgba(15, 122, 84, 0.14);
    border-radius: 10px;
    background: rgba(246, 251, 248, 0.95);
}

.wc-coin-subtabs__link {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    border-radius: 8px;
    color: #5a6d63;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
}

.wc-coin-subtabs__link:hover,
.wc-coin-subtabs__link:focus-visible {
    color: var(--wc-primary-strong);
    text-decoration: none;
}

.wc-coin-subtabs__link.is-active {
    background: #ffffff;
    color: var(--wc-primary-strong);
    box-shadow: 0 8px 18px rgba(15, 122, 84, 0.1);
}

.wc-card-exchange-page {
    gap: 14px;
}

.wc-card-exchange-shell .wc-ledger-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wc-card-exchange-tabs {
    margin: 0;
}

.wc-card-exchange-tabs .wc-orders-tabs__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wc-card-bank-summary {
    display: grid;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(20, 50, 77, 0.08);
    border-radius: 14px;
    background: rgba(248, 251, 255, 0.9);
}

.wc-card-bank-summary__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #66758b;
    font-size: 13px;
}

.wc-card-bank-summary__row strong {
    color: #1d3553;
    font-size: 14px;
    text-align: right;
}

.wc-card-bank-edit {
    width: auto;
    min-height: 38px;
    padding: 0 14px;
    white-space: nowrap;
}

.wc-coin-mode-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    max-width: 100%;
    padding: 4px;
    border: 1px solid rgba(15, 122, 84, 0.14);
    border-radius: 10px;
    background: rgba(246, 251, 248, 0.95);
}

.wc-coin-mode-toggle button {
    min-height: 38px;
    padding: 0 12px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #5a6d63;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.wc-coin-mode-toggle button.is-active {
    background: #fff;
    color: var(--wc-primary-strong);
    box-shadow: 0 8px 18px rgba(15, 122, 84, 0.1);
}

.wc-coin-mode-fields--single {
    display: contents;
}

.wc-coin-mode-fields--bulk {
    grid-column: 1 / -1;
    display: grid;
    gap: 14px;
}

.wc-coin-mode-fields[hidden] {
    display: none !important;
}

.wc-coin-mode-fields textarea {
    width: 100%;
    min-height: 168px;
    resize: vertical;
    padding: 14px 16px;
    border: 1px solid #dfe4ea;
    border-radius: 8px;
    background: #edf1f5;
    color: #263449;
    font-size: 14px;
    line-height: 1.5;
}

.wc-coin-mode-fields textarea:focus {
    outline: 0;
    border-color: #18b244;
    box-shadow: 0 0 0 4px rgba(24, 178, 68, 0.12);
}

.wc-coin-formula {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 12px 14px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 10px;
    background: #f4f8ff;
    color: #31456a;
}

.wc-coin-formula i {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #e7f0ff;
    color: #2563eb;
}

.wc-coin-formula strong,
.wc-coin-formula span {
    display: block;
}

.wc-coin-formula strong {
    color: #1d3553;
    font-size: 13px;
    font-weight: 900;
}

.wc-coin-formula span {
    margin-top: 3px;
    color: #53647f;
    font-size: 13px;
    line-height: 1.5;
}

.wc-coin-bulk-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(15, 122, 84, 0.12);
    border-radius: 10px;
    background: rgba(246, 251, 248, 0.95);
    color: #466457;
}

.wc-coin-bulk-summary.is-error {
    border-color: rgba(220, 38, 38, 0.22);
    background: rgba(254, 242, 242, 0.92);
    color: #9f2323;
}

.wc-coin-bulk-summary strong {
    color: var(--wc-primary-strong);
    white-space: nowrap;
}

.wc-coin-status {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--wc-border);
    background: rgba(246, 251, 248, 0.9);
}

.wc-coin-status--completed {
    border-color: rgba(22, 163, 74, 0.24);
    background: rgba(240, 253, 244, 0.9);
}

.wc-coin-status--failed {
    border-color: rgba(220, 38, 38, 0.22);
    background: rgba(254, 242, 242, 0.92);
}

.wc-coin-status--review {
    border-color: rgba(217, 119, 6, 0.24);
    background: rgba(255, 251, 235, 0.92);
}

.wc-coin-status__head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.wc-coin-status__head i {
    color: var(--wc-primary);
}

.wc-coin-status__head strong {
    color: var(--wc-text);
    font-size: 16px;
}

.wc-coin-status p {
    margin: 0;
    color: var(--wc-muted);
    line-height: 1.6;
}

.wc-coin-status__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wc-coin-status__meta span {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--wc-muted);
    font-size: 13px;
}

.wc-coin-status__meta strong {
    color: var(--wc-primary-strong);
}

.wc-coin-result-list {
    display: grid;
    gap: 10px;
}

.wc-coin-result-row {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(130px, 0.7fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(15, 122, 84, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.82);
}

.wc-coin-result-row__main,
.wc-coin-result-row__amount {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.wc-coin-result-row__main strong,
.wc-coin-result-row__amount strong {
    color: var(--wc-text);
    overflow-wrap: anywhere;
}

.wc-coin-result-row__main span,
.wc-coin-result-row__amount span,
.wc-coin-result-row p {
    color: var(--wc-muted);
    font-size: 12px;
}

.wc-coin-result-row__status {
    justify-self: end;
}

.wc-coin-result-row p {
    grid-column: 1 / -1;
    margin: 0;
}

.wc-coin-steps {
    display: grid;
    gap: 8px;
}

.wc-coin-step {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    color: #466457;
    font-size: 14px;
    line-height: 1.55;
}

.wc-coin-step i {
    margin-top: 2px;
    color: #64748b;
}

.wc-coin-step--success i {
    color: #16a34a;
}

.wc-coin-step--error i {
    color: #dc2626;
}

.wc-coin-step--pending i {
    color: #d97706;
}

.wc-product-modal.wc-coin-precheck-modal {
    align-items: center;
    padding-top: max(16px, env(safe-area-inset-top));
    padding-bottom: max(16px, env(safe-area-inset-bottom));
}

.wc-coin-precheck-modal__dialog {
    align-self: center;
    width: min(780px, 100%);
    margin-top: auto;
    margin-bottom: auto;
    border-radius: 18px;
}

.wc-coin-precheck {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 24px;
    border: 1px solid rgba(15, 122, 84, 0.16);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 54px rgba(24, 52, 35, 0.18);
}

.wc-coin-precheck__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
}

.wc-coin-precheck__head {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding-right: 62px;
}

.wc-coin-precheck__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #16a34a 0%, #0f766e 100%);
    color: #fff;
    font-size: 23px;
}

.wc-coin-precheck__head span {
    display: inline-flex;
    color: var(--wc-primary-strong);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.wc-coin-precheck__head h2 {
    margin: 3px 0 4px;
    color: var(--wc-text);
    font-size: 22px;
    line-height: 1.25;
}

.wc-coin-precheck__head p {
    margin: 0;
    color: var(--wc-muted);
    line-height: 1.55;
}

.wc-coin-precheck__progress {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #e5efe9;
}

.wc-coin-precheck__progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #16a34a 0%, #0ea5e9 100%);
    transition: width 0.25s ease;
}

.wc-coin-precheck__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wc-coin-precheck__stats span {
    padding: 7px 10px;
    border-radius: 999px;
    background: #f3f8f5;
    color: var(--wc-muted);
    font-size: 13px;
}

.wc-coin-precheck__stats strong {
    color: var(--wc-primary-strong);
}

.wc-coin-precheck__list {
    display: grid;
    gap: 10px;
    max-height: min(46vh, 420px);
    overflow: auto;
    padding-right: 2px;
}

.wc-coin-precheck-row {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 10px 12px;
    align-items: start;
    padding: 12px;
    border: 1px solid rgba(15, 122, 84, 0.12);
    border-radius: 10px;
    background: #fbfefc;
}

.wc-coin-precheck-row--valid {
    border-color: rgba(22, 163, 74, 0.26);
    background: #f0fdf4;
}

.wc-coin-precheck-row--invalid {
    border-color: rgba(220, 38, 38, 0.2);
    background: #fff7f7;
}

.wc-coin-precheck-row--checking {
    border-color: rgba(14, 165, 233, 0.24);
    background: #f0f9ff;
}

.wc-coin-precheck-row--adjusted {
    border-color: rgba(217, 119, 6, 0.28);
    background: #fffbeb;
}

.wc-coin-precheck-row__status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--wc-muted);
    font-size: 13px;
    font-weight: 800;
}

.wc-coin-precheck-row--valid .wc-coin-precheck-row__status {
    color: #15803d;
}

.wc-coin-precheck-row--invalid .wc-coin-precheck-row__status {
    color: #b91c1c;
}

.wc-coin-precheck-row--checking .wc-coin-precheck-row__status {
    color: #0369a1;
}

.wc-coin-precheck-row--adjusted .wc-coin-precheck-row__status {
    color: #b45309;
}

.wc-coin-precheck-row__main,
.wc-coin-precheck-row__meta {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.wc-coin-precheck-row__main strong {
    color: var(--wc-text);
    overflow-wrap: anywhere;
}

.wc-coin-precheck-row__main span,
.wc-coin-precheck-row__meta span,
.wc-coin-precheck-row p {
    color: var(--wc-muted);
    font-size: 12px;
    line-height: 1.45;
}

.wc-coin-precheck-row__meta {
    grid-column: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wc-coin-precheck-row__meta strong {
    color: var(--wc-primary-strong);
}

.wc-coin-precheck-row p {
    grid-column: 1 / -1;
    margin: 0;
}

.wc-coin-precheck__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.wc-coin-history-code {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 220px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #1761c0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
}

.wc-coin-history-code span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wc-coin-history-code i {
    flex: 0 0 auto;
    font-size: 12px;
    opacity: 0.72;
}

.wc-coin-history-code:hover,
.wc-coin-history-code:focus-visible {
    color: #0b4ea2;
    text-decoration: underline;
}

.wc-coin-history-table {
    min-width: 1980px;
    table-layout: fixed;
}

.wc-coin-history-table th,
.wc-coin-history-table td {
    padding: 10px 12px;
    vertical-align: middle;
}

.wc-coin-history-col-time {
    width: 190px;
}

.wc-coin-history-col-trans {
    width: 250px;
}

.wc-coin-history-col-source {
    width: 190px;
}

.wc-coin-history-col-account {
    width: 310px;
}

.wc-coin-history-col-coin {
    width: 300px;
}

.wc-coin-history-col-credit {
    width: 240px;
}

.wc-coin-history-col-status {
    width: 170px;
}

.wc-coin-history-col-note {
    width: 330px;
}

.wc-coin-history-time,
.wc-coin-history-trans,
.wc-coin-history-source,
.wc-coin-history-account,
.wc-coin-history-coin,
.wc-coin-history-credit,
.wc-coin-history-status,
.wc-coin-history-note-cell {
    white-space: nowrap;
}

.wc-coin-history-source,
.wc-coin-history-account,
.wc-coin-history-note-cell {
    overflow: hidden;
    text-overflow: ellipsis;
}

.wc-coin-history-source strong,
.wc-coin-history-account {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wc-coin-history-subline {
    display: inline;
    margin-left: 8px;
    color: var(--wc-muted);
    font-size: .78rem;
    line-height: 1.25;
}

.wc-coin-history-subline::before {
    content: "· ";
}

.wc-coin-history-subline--warning {
    color: #b45309;
}

.wc-coin-history-table .wc-badge {
    white-space: nowrap;
}

.wc-coin-history-filter,
.wc-coin-history-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin: 12px 0;
}

.wc-coin-history-filter span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(15, 122, 84, 0.12);
    background: rgba(246, 251, 248, 0.92);
    color: #365d4e;
    font-size: 12px;
    font-weight: 800;
}

.wc-coin-history-filter i {
    color: var(--wc-primary-strong);
}

.wc-coin-history-footer {
    margin-bottom: 0;
}

.wc-coin-history-footer p {
    margin: 0;
    color: var(--wc-muted);
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .wc-coin-kpis {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wc-coin-kpi--balance {
        grid-column: auto;
    }

    .wc-coin-kpi {
        padding-inline: 12px;
    }

    .wc-coin-kpi strong {
        font-size: 20px;
    }

    .wc-coin-guide-grid {
        grid-template-columns: 1fr;
    }

    .wc-coin-guide--wide {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .wc-coin-overview-card {
        padding: 12px;
        border-radius: 14px;
    }

    .wc-coin-overview-card .wc-dashboard-card__head h2 {
        font-size: 19px;
    }

    .wc-coin-overview-card .wc-copy {
        font-size: 13px;
    }

    .wc-coin-overview-card .wc-dashboard-card__line {
        margin: 8px 0 10px;
    }

    .wc-coin-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .wc-coin-kpi--balance {
        grid-column: 1 / -1;
    }

    .wc-coin-kpi {
        min-height: 0;
        padding: 9px 10px;
    }

    .wc-coin-kpi strong {
        font-size: 18px;
        line-height: 1.16;
    }

    .wc-coin-kpi small {
        font-size: 11px;
        line-height: 1.3;
    }

    .wc-coin-guide-grid {
        display: flex;
        gap: 7px;
        margin-top: 8px;
        margin-inline: -2px;
        overflow-x: auto;
        padding: 0 2px 2px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .wc-coin-guide-grid::-webkit-scrollbar {
        display: none;
    }

    .wc-coin-guide {
        grid-template-columns: 17px minmax(0, 1fr);
        flex: 0 0 min(286px, calc(100vw - 58px));
        padding: 8px 10px;
        border-radius: 12px;
        font-size: 11.8px;
        line-height: 1.42;
        scroll-snap-align: start;
    }

    .wc-coin-guide--wide {
        grid-column: auto;
    }

    .wc-coin-guide--danger {
        order: -1;
    }

    .wc-coin-mode-toggle {
        width: 100%;
    }

    .wc-coin-mode-toggle button {
        flex: 1;
        justify-content: center;
        padding-inline: 8px;
    }

    .wc-coin-result-row {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .wc-coin-result-row__status {
        justify-self: start;
    }

    .wc-coin-precheck {
        padding: 20px 16px;
    }

    .wc-coin-precheck__head {
        grid-template-columns: 44px minmax(0, 1fr);
        padding-right: 46px;
    }

    .wc-coin-precheck__icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 19px;
    }

    .wc-coin-precheck__head h2 {
        font-size: 19px;
    }

    .wc-coin-precheck-row {
        grid-template-columns: 1fr;
    }

    .wc-coin-precheck-row__meta {
        grid-column: 1;
        grid-template-columns: 1fr;
    }

    .wc-coin-precheck__actions .wc-btn {
        width: 100%;
        justify-content: center;
    }
}

.wc-ledger-filter {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(17, 58, 44, 0.08);
    border-radius: 24px;
    background: rgba(249, 252, 255, 0.9);
}

.wc-ledger-field {
    display: grid;
    gap: 8px;
}

.wc-ledger-field span {
    color: #607088;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wc-ledger-field input,
.wc-ledger-field select {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid #dbe4ef;
    border-radius: 16px;
    background: #fff;
    color: #273651;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.wc-ledger-field select {
    appearance: none;
    padding-right: 42px;
    background-image: linear-gradient(45deg, transparent 50%, #778296 50%), linear-gradient(135deg, #778296 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.wc-ledger-field input:focus,
.wc-ledger-field select:focus {
    outline: none;
    border-color: rgba(15, 122, 84, 0.45);
    box-shadow: 0 0 0 4px rgba(15, 122, 84, 0.12);
}

.wc-ledger-field--search {
    grid-column: span 2;
}

.wc-ledger-filter__actions {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

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

.wc-ledger-item {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 18px 18px 18px 24px;
    border-radius: 24px;
    border: 1px solid rgba(20, 50, 77, 0.08);
    background: #fff;
    box-shadow: 0 16px 32px rgba(17, 33, 58, 0.08);
    overflow: hidden;
}

.wc-ledger-item::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    border-radius: 999px;
    background: linear-gradient(180deg, #7e8aa1 0%, #b0bac8 100%);
}

.wc-ledger-item.is-credit::before {
    background: linear-gradient(180deg, #0bb45c 0%, #49d38b 100%);
}

.wc-ledger-item.is-debit::before {
    background: linear-gradient(180deg, #f26a53 0%, #d84951 100%);
}

.wc-ledger-item.is-neutral::before {
    background: linear-gradient(180deg, #8b97ab 0%, #c3ccd8 100%);
}

.wc-ledger-item__top {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.wc-ledger-item__icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 50, 77, 0.06);
    color: #17324d;
    font-size: 20px;
}

.wc-ledger-item.is-credit .wc-ledger-item__icon {
    background: rgba(11, 180, 92, 0.12);
    color: #0b9d59;
}

.wc-ledger-item.is-debit .wc-ledger-item__icon {
    background: rgba(242, 106, 83, 0.12);
    color: #d44e4d;
}

.wc-ledger-item__meta {
    min-width: 0;
}

.wc-ledger-item__meta h3 {
    margin: 0;
    color: #1b3552;
    font-size: 18px;
    line-height: 1.45;
    word-break: break-word;
}

.wc-ledger-item__meta p {
    margin: 6px 0 0;
    color: #73839a;
    font-size: 13px;
}

.wc-ledger-item__change {
    text-align: right;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.wc-ledger-item__change.is-credit {
    color: #0b9d59;
}

.wc-ledger-item__change.is-debit {
    color: #d44e4d;
}

.wc-ledger-item__change.is-neutral {
    color: #516178;
}

.wc-ledger-item__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.wc-ledger-item__grid div {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid #e5ebf3;
    background: #f8fbff;
}

.wc-ledger-item__grid span,
.wc-ledger-item__grid strong {
    display: block;
}

.wc-ledger-item__grid span {
    color: #6c7a90;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wc-ledger-item__grid strong {
    margin-top: 10px;
    color: #1f3653;
    font-size: 18px;
    line-height: 1.3;
    word-break: break-word;
}

.wc-ledger-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.wc-ledger-footer p {
    margin: 0;
    color: #5f6d83;
    font-size: 14px;
}

.wc-activity-page {
    padding: 22px;
    display: grid;
    gap: 20px;
    background:
        radial-gradient(circle at top right, rgba(46, 117, 255, 0.08), transparent 28%),
        radial-gradient(circle at top left, rgba(17, 167, 116, 0.09), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.wc-activity-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.wc-activity-hero__copy {
    max-width: 760px;
}

.wc-activity-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(24, 178, 68, 0.1);
    color: #12864d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-activity-hero h2 {
    margin: 0;
    color: #16324d;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.06;
}

.wc-activity-hero p {
    margin: 12px 0 0;
    color: #5a6880;
    font-size: 15px;
    line-height: 1.7;
}

.wc-activity-hero__badge {
    min-width: 190px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(20, 50, 77, 0.08);
    background: linear-gradient(145deg, #16324d 0%, #0f7a54 100%);
    box-shadow: 0 14px 30px rgba(17, 47, 72, 0.16);
    text-align: right;
}

.wc-activity-hero__badge span {
    display: block;
    color: rgba(239, 248, 255, 0.8);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-activity-hero__badge strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 24px;
    line-height: 1.1;
}

.wc-activity-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.wc-activity-kpi {
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(20, 50, 77, 0.08);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 10px 22px rgba(20, 38, 64, 0.07);
}

.wc-activity-kpi span,
.wc-activity-kpi small {
    display: block;
}

.wc-activity-kpi span {
    color: #617086;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wc-activity-kpi strong {
    display: block;
    margin-top: 6px;
    color: #16324d;
    font-size: 22px;
    line-height: 1.12;
}

.wc-activity-kpi small {
    display: -webkit-box;
    margin-top: 5px;
    color: #76849b;
    font-size: 11px;
    line-height: 1.4;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.wc-activity-kpi--login {
    background: linear-gradient(180deg, rgba(238, 245, 255, 0.98) 0%, rgba(251, 253, 255, 0.96) 100%);
}

.wc-activity-kpi--login strong {
    color: #265fca;
}

.wc-activity-kpi--purchase {
    background: linear-gradient(180deg, rgba(255, 248, 238, 0.98) 0%, rgba(255, 252, 248, 0.96) 100%);
}

.wc-activity-kpi--purchase strong {
    color: #cb6a2e;
}

.wc-activity-kpi--recharge {
    background: linear-gradient(180deg, rgba(232, 252, 242, 0.98) 0%, rgba(250, 255, 252, 0.96) 100%);
}

.wc-activity-kpi--recharge strong {
    color: #0c9b59;
}

.wc-activity-filter {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(17, 58, 44, 0.08);
    border-radius: 24px;
    background: rgba(249, 252, 255, 0.9);
}

.wc-activity-filter__toggle {
    display: none;
}

.wc-activity-filter__body {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.wc-activity-field {
    display: grid;
    gap: 8px;
}

.wc-activity-field span {
    color: #607088;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wc-activity-field input,
.wc-activity-field select {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid #dbe4ef;
    border-radius: 16px;
    background: #fff;
    color: #273651;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.wc-activity-field select {
    appearance: none;
    padding-right: 42px;
    background-image: linear-gradient(45deg, transparent 50%, #778296 50%), linear-gradient(135deg, #778296 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.wc-activity-field input:focus,
.wc-activity-field select:focus {
    outline: none;
    border-color: rgba(15, 122, 84, 0.45);
    box-shadow: 0 0 0 4px rgba(15, 122, 84, 0.12);
}

.wc-activity-field--search {
    grid-column: span 2;
}

.wc-activity-filter__actions {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.wc-activity-list {
    display: grid;
    gap: 12px;
}

.wc-activity-item {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    padding: 16px 16px 16px 20px;
    border-radius: 20px;
    border: 1px solid rgba(20, 50, 77, 0.08);
    background: #fff;
    box-shadow: 0 12px 26px rgba(17, 33, 58, 0.07);
    overflow: hidden;
}

.wc-activity-item::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    border-radius: 999px;
    background: linear-gradient(180deg, #93a0b3 0%, #c4ccd9 100%);
}

.wc-activity-item.is-login::before {
    background: linear-gradient(180deg, #2256e0 0%, #5c84f5 100%);
}

.wc-activity-item.is-security::before {
    background: linear-gradient(180deg, #7a49df 0%, #aa72f5 100%);
}

.wc-activity-item.is-purchase::before {
    background: linear-gradient(180deg, #f08b55 0%, #d46a35 100%);
}

.wc-activity-item.is-recharge::before {
    background: linear-gradient(180deg, #0bb45c 0%, #49d38b 100%);
}

.wc-activity-item.is-account::before {
    background: linear-gradient(180deg, #1f7f9d 0%, #57a6bf 100%);
}

.wc-activity-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 50, 77, 0.06);
    color: #17324d;
    font-size: 17px;
}

.wc-activity-item.is-login .wc-activity-item__icon {
    background: rgba(34, 86, 224, 0.12);
    color: #2256e0;
}

.wc-activity-item.is-security .wc-activity-item__icon {
    background: rgba(122, 73, 223, 0.12);
    color: #7a49df;
}

.wc-activity-item.is-purchase .wc-activity-item__icon {
    background: rgba(240, 139, 85, 0.14);
    color: #cb6a2e;
}

.wc-activity-item.is-recharge .wc-activity-item__icon {
    background: rgba(11, 180, 92, 0.12);
    color: #0b9d59;
}

.wc-activity-item.is-account .wc-activity-item__icon {
    background: rgba(31, 127, 157, 0.12);
    color: #1f7f9d;
}

.wc-activity-item__body {
    min-width: 0;
    display: grid;
    gap: 10px;
}

.wc-activity-item__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
}

.wc-activity-item__copy {
    min-width: 0;
}

.wc-activity-item__badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.wc-activity-kind {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.wc-activity-kind--login {
    background: rgba(34, 86, 224, 0.12);
    color: #2256e0;
}

.wc-activity-kind--security {
    background: rgba(122, 73, 223, 0.12);
    color: #7a49df;
}

.wc-activity-kind--purchase {
    background: rgba(240, 139, 85, 0.16);
    color: #cb6a2e;
}

.wc-activity-kind--recharge {
    background: rgba(11, 180, 92, 0.12);
    color: #0b9d59;
}

.wc-activity-kind--account {
    background: rgba(31, 127, 157, 0.12);
    color: #1f7f9d;
}

.wc-activity-kind--other {
    background: rgba(93, 108, 126, 0.12);
    color: #55657a;
}

.wc-activity-item__copy h3 {
    margin: 0;
    color: #1b3552;
    font-size: 17px;
    line-height: 1.38;
    word-break: break-word;
}

.wc-activity-item__copy p {
    margin: 6px 0 0;
    color: #607088;
    font-size: 13px;
    line-height: 1.55;
}

.wc-activity-item__time {
    display: grid;
    gap: 4px;
    justify-items: end;
    text-align: right;
}

.wc-activity-item__time strong {
    color: #1b3552;
    font-size: 13px;
}

.wc-activity-item__time span {
    color: #73839a;
    font-size: 11px;
}

.wc-activity-item__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.wc-activity-item__meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f5f8fc;
    color: #5c6b80;
    font-size: 12px;
    border: 1px solid #e4eaf2;
}

.wc-activity-item__meta i {
    color: #6d7b8f;
}

.wc-activity-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.wc-activity-footer p {
    margin: 0;
    color: #5f6d83;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .wc-ledger-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wc-card-exchange-shell .wc-ledger-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .wc-ledger-field--search {
        grid-column: 1 / -1;
    }

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

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

    .wc-activity-field--search {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .wc-ledger-page {
        padding: 16px;
        gap: 16px;
    }

    .wc-ledger-hero {
        flex-direction: column;
    }

    .wc-ledger-hero__badge {
        width: 100%;
        min-width: 0;
        text-align: left;
    }

    .wc-ledger-kpis,
    .wc-ledger-filter,
    .wc-ledger-item__grid {
        grid-template-columns: 1fr;
    }

    .wc-card-exchange-shell .wc-ledger-kpis {
        grid-template-columns: 1fr;
    }

    .wc-card-bank-summary__row {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .wc-card-bank-summary__row strong {
        text-align: left;
    }

    .wc-ledger-field--search {
        grid-column: auto;
    }

    .wc-ledger-filter {
        padding: 14px;
        border-radius: 20px;
    }

    .wc-ledger-filter__actions {
        justify-content: stretch;
    }

    .wc-ledger-filter__actions .wc-btn {
        width: 100%;
    }

    .wc-ledger-item {
        padding: 16px 16px 16px 20px;
        border-radius: 20px;
    }

    .wc-activity-page {
        padding: 14px;
        gap: 12px;
    }

    .wc-activity-hero {
        flex-direction: column;
        gap: 10px;
    }

    .wc-activity-hero__badge {
        width: auto;
        min-width: 132px;
        max-width: 184px;
        align-self: flex-start;
        text-align: left;
        padding: 12px 14px;
        border-radius: 16px;
        box-shadow: 0 10px 20px rgba(17, 47, 72, 0.12);
    }

    .wc-activity-hero__badge span {
        font-size: 10px;
    }

    .wc-activity-hero__badge strong {
        margin-top: 6px;
        font-size: 18px;
    }

    .wc-activity-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .wc-activity-filter {
        gap: 10px;
    }

    .wc-activity-field--search {
        grid-column: auto;
    }

    .wc-activity-kpi {
        padding: 11px 11px 10px;
        border-radius: 16px;
        box-shadow: 0 8px 18px rgba(20, 38, 64, 0.05);
    }

    .wc-activity-kpi span {
        font-size: 10px;
        letter-spacing: 0.04em;
        line-height: 1.35;
    }

    .wc-activity-kpi strong {
        margin-top: 5px;
        font-size: 17px;
    }

    .wc-activity-kpi small {
        margin-top: 4px;
        font-size: 10px;
        line-height: 1.35;
    }

    .wc-activity-filter {
        padding: 12px;
        border-radius: 18px;
    }

    .wc-activity-filter__toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 12px 14px;
        border: 1px solid rgba(17, 58, 44, 0.08);
        border-radius: 16px;
        background: #fff;
        color: #1b314c;
        text-align: left;
        box-shadow: 0 8px 18px rgba(20, 38, 64, 0.05);
    }

    .wc-activity-filter__toggle-copy {
        min-width: 0;
        display: grid;
        gap: 3px;
        flex: 1 1 auto;
    }

    .wc-activity-filter__toggle-copy strong {
        color: #17324d;
        font-size: 14px;
        line-height: 1.25;
    }

    .wc-activity-filter__toggle-copy small {
        color: #76849b;
        font-size: 11px;
        line-height: 1.35;
    }

    .wc-activity-filter__toggle-meta {
        flex: 0 0 auto;
        padding: 5px 9px;
        border-radius: 999px;
        background: rgba(15, 122, 84, 0.1);
        color: #0f7a54;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .wc-activity-filter__toggle i {
        flex: 0 0 auto;
        color: #728198;
        transition: transform 0.2s ease;
    }

    .wc-activity-filter:not(.is-collapsed) .wc-activity-filter__toggle i {
        transform: rotate(180deg);
    }

    .wc-activity-filter.is-collapsed .wc-activity-filter__body {
        display: none;
    }

    .wc-activity-filter__body {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .wc-activity-filter__actions {
        justify-content: stretch;
    }

    .wc-activity-filter__actions .wc-btn {
        width: 100%;
    }

    .wc-activity-item {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: start;
        gap: 12px;
        padding: 14px 14px 14px 18px;
        border-radius: 18px;
    }

    .wc-activity-item__top {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .wc-activity-item__time {
        justify-items: start;
        text-align: left;
    }

    .wc-activity-item__icon {
        width: 38px;
        height: 38px;
        border-radius: 13px;
        font-size: 15px;
    }

    .wc-activity-item__body {
        gap: 8px;
    }

    .wc-activity-item__badges {
        gap: 6px;
        margin-bottom: 6px;
    }

    .wc-activity-kind {
        min-height: 24px;
        padding: 0 9px;
        font-size: 10px;
    }

    .wc-activity-item__copy h3 {
        font-size: 15px;
        line-height: 1.34;
    }

    .wc-activity-item__copy p {
        margin-top: 4px;
        font-size: 12px;
        line-height: 1.45;
    }

    .wc-activity-item__time strong {
        font-size: 12px;
    }

    .wc-activity-item__time span {
        font-size: 10px;
    }

    .wc-activity-item__meta {
        gap: 6px;
    }

    .wc-activity-item__meta span {
        min-height: 26px;
        padding: 0 8px;
        gap: 6px;
        font-size: 11px;
    }

    .wc-ledger-item__top {
        grid-template-columns: auto 1fr;
    }

    .wc-ledger-item__change {
        grid-column: 1 / -1;
        text-align: left;
        font-size: 24px;
        padding-left: 2px;
    }

    .wc-ledger-item__meta h3 {
        font-size: 16px;
    }
}

.wc-payos-focus {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
        "qr"
        "meta";
    gap: 20px;
    align-items: start;
}

.wc-payos-focus__meta {
    grid-area: meta;
    order: 0;
    display: grid;
    gap: 0;
    min-width: 0;
}

.wc-payos-focus__qr {
    grid-area: qr;
    order: -1;
    display: flex;
    justify-content: center;
    width: 100%;
    min-width: 0;
}

.wc-payos-qr {
    width: 100%;
    padding: 18px;
    border: 1px solid #dfe7f1;
    border-radius: 24px;
    background: linear-gradient(180deg, #f9fffc 0%, #f4fbff 100%);
    box-shadow: 0 18px 36px rgba(20, 38, 64, 0.08);
    display: grid;
    gap: 14px;
}

.wc-payos-qr__brand {
    display: grid;
    justify-items: center;
    gap: 12px;
    text-align: center;
}

.wc-payos-qr__brand img {
    display: block;
    width: min(100%, 196px);
    height: auto;
}

.wc-payos-qr__status {
    display: flex;
    justify-content: center;
}

.wc-payos-qr__status .wc-badge {
    justify-content: center;
}

.wc-payos-qr__frame {
    padding: 14px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid #e5ebf2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.wc-payos-qr__image {
    display: block;
    width: min(100%, 320px);
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 18px;
    background: #fff;
}

.wc-payos-qr__summary {
    display: grid;
    gap: 6px;
    text-align: center;
}

.wc-payos-qr__summary small {
    color: #76859a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-payos-qr__summary strong {
    color: #16324c;
    font-size: 26px;
    line-height: 1.15;
}

.wc-payos-qr__summary span {
    color: #5d6a7f;
    font-size: 14px;
    line-height: 1.6;
}

.wc-payos-qr__placeholder {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 22px 16px;
    text-align: center;
    color: #5a687e;
}

.wc-payos-qr__placeholder i {
    color: #0ea86d;
    font-size: 44px;
}

.wc-payos-qr__placeholder strong {
    color: #18324f;
    font-size: 20px;
}

.wc-payos-qr-modal__dialog {
    width: min(96vw, 860px);
}

.wc-payos-qr-modal__panel {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 24px;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.98) 100%);
    border: 1px solid rgba(92, 118, 160, 0.18);
    box-shadow: 0 30px 80px rgba(19, 35, 61, 0.26);
}

.wc-payos-qr-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    min-width: 42px;
    min-height: 42px;
    justify-content: center;
}

.wc-payos-qr-modal__head {
    display: grid;
    gap: 8px;
    padding-right: 64px;
}

.wc-payos-qr-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #edf8f2;
    border: 1px solid #cceadb;
    color: #166b45;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wc-payos-qr-modal__head h2 {
    margin: 0;
    color: #162d4a;
    font-size: 28px;
    line-height: 1.18;
}

.wc-payos-qr-modal__head p {
    margin: 0;
    max-width: 58ch;
    color: #5a6c83;
    font-size: 14px;
    line-height: 1.6;
}

.wc-payos-qr-modal__content {
    display: grid;
    grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
}

.wc-payos-qr-modal__qr {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 390px;
    padding: 18px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid #e0e9f4;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 14px 30px rgba(39, 67, 107, 0.12);
}

.wc-payos-qr-modal__qr img {
    display: block;
    width: min(100%, 340px);
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 20px;
    background: #fff;
}

.wc-payos-qr-modal__placeholder {
    display: grid;
    justify-items: center;
    gap: 10px;
    text-align: center;
    color: #5d6d82;
}

.wc-payos-qr-modal__placeholder i {
    color: #168a5c;
    font-size: 42px;
}

.wc-payos-qr-modal__placeholder strong {
    color: #18324f;
    font-size: 18px;
}

.wc-payos-qr-modal__side {
    display: grid;
    gap: 12px;
    align-content: start;
}

.wc-payos-qr-modal__status {
    display: flex;
    justify-content: flex-start;
}

.wc-payos-qr-modal__status .wc-badge {
    min-height: 36px;
    padding: 0 12px;
}

.wc-payos-qr-modal__stat {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e0e8f2;
    box-shadow: 0 10px 22px rgba(40, 73, 116, 0.08);
}

.wc-payos-qr-modal__stat span {
    color: #697b92;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-payos-qr-modal__stat strong {
    color: #17324f;
    font-size: 17px;
    line-height: 1.35;
    word-break: break-word;
}

.wc-payos-qr-modal__stat .wc-recharge-money {
    font-size: 26px;
    line-height: 1.12;
}

.wc-payos-qr-modal__actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.wc-payos-qr-modal__actions .wc-btn {
    min-height: 44px;
}

.wc-payos-qr-modal__cancel {
    color: #9b2f27;
    border-color: #f0ccc7;
    background: #fff8f7;
}

.wc-payos-qr-loading-modal {
    align-items: center;
}

.wc-payos-qr-loading-modal__dialog {
    width: min(92vw, 420px);
}

.wc-payos-qr-loading-modal__panel {
    display: grid;
    justify-items: center;
    gap: 18px;
    padding: 30px 24px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid #dfe8f2;
    box-shadow: 0 28px 70px rgba(19, 35, 61, 0.24);
    text-align: center;
}

.wc-payos-qr-loading-modal__spinner {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 5px solid #e2edf7;
    border-top-color: #168a5c;
    animation: wc-payos-qr-loading-spin 0.8s linear infinite;
}

.wc-payos-qr-loading-modal__copy {
    display: grid;
    gap: 8px;
}

.wc-payos-qr-loading-modal__copy span {
    color: #168a5c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-payos-qr-loading-modal__copy h2 {
    margin: 0;
    color: #162d4a;
    font-size: 24px;
    line-height: 1.2;
}

.wc-payos-qr-loading-modal__copy p {
    margin: 0;
    color: #5d6d82;
    font-size: 14px;
    line-height: 1.55;
}

@keyframes wc-payos-qr-loading-spin {
    to {
        transform: rotate(360deg);
    }
}

.wc-payos-qr--empty .wc-payos-qr__frame {
    min-height: 260px;
}

.wc-payos-page {
    gap: 22px;
}

.wc-payos-notice,
.wc-payos-create,
.wc-payos-panel {
    position: relative;
    overflow: hidden;
}

.wc-payos-notice > *,
.wc-payos-create > *,
.wc-payos-panel > * {
    position: relative;
    z-index: 1;
}

.wc-payos-notice {
    padding: 18px 20px;
    border-color: rgba(84, 114, 173, 0.18);
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 54%, #eefbf5 100%);
    box-shadow: 0 18px 34px rgba(38, 74, 122, 0.1);
}

.wc-payos-notice::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, #2a7fff 0%, #18b244 100%);
}

.wc-payos-notice .shoptd-notice-card {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.wc-payos-notice p,
.wc-payos-notice li,
.wc-payos-notice .wc-copy {
    color: #54657d;
    line-height: 1.72;
}

.wc-payos-create {
    padding: 20px;
    border-color: rgba(78, 106, 162, 0.16);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.wc-payos-create::after,
.wc-payos-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(73, 134, 247, 0.12), transparent 32%),
        radial-gradient(circle at bottom left, rgba(15, 122, 84, 0.1), transparent 34%);
    pointer-events: none;
}

.wc-payos-create .wc-dashboard-card__head--split,
.wc-payos-panel .wc-dashboard-card__head--split {
    align-items: flex-start;
    flex-wrap: wrap;
}

.wc-payos-create__hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #d8e4f2;
    color: #486485;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(38, 74, 122, 0.08);
}

.wc-recharge-card__discount {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 18px;
    border: 1px solid #d7e6f4;
    background: linear-gradient(135deg, #fbfdff 0%, #eef6ff 100%);
    color: #35506f;
    box-shadow: 0 10px 24px rgba(43, 87, 143, 0.08);
}

.wc-recharge-card__discount[hidden] {
    display: none;
}

.wc-recharge-card__discount i {
    color: #276ca8;
}

.wc-recharge-card__discount-label {
    color: #698199;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-recharge-card__discount-value {
    color: #1d5788;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

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

.wc-recharge-card-form__field {
    gap: 9px;
}

.wc-recharge-card-form__field-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.wc-recharge-card-form__field > span {
    color: #324962;
    font-size: 14px;
    font-weight: 700;
}

.wc-recharge-card-form__field-head > span {
    color: #324962;
    font-size: 14px;
    font-weight: 700;
}

.wc-recharge-card__discount--inline {
    margin-left: auto;
    min-height: 36px;
    padding: 7px 12px;
    gap: 8px;
    border-radius: 14px;
}

.wc-recharge-card__discount--inline .wc-recharge-card__discount-label {
    font-size: 10px;
}

.wc-recharge-card__discount--inline .wc-recharge-card__discount-value {
    font-size: 16px;
}

.wc-recharge-card-form__field :is(input, select) {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid #d9e5ef;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    color: #22354d;
    font-size: 15px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.wc-recharge-card-form__field select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #6f8196 50%),
        linear-gradient(135deg, #6f8196 50%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px),
        0 0;
    background-size:
        7px 7px,
        7px 7px,
        100% 100%;
    background-repeat: no-repeat;
    padding-right: 46px;
}

.wc-recharge-card-form__field :is(input, select):focus {
    outline: 0;
    border-color: rgba(24, 139, 216, 0.42);
    box-shadow: 0 0 0 4px rgba(24, 139, 216, 0.1);
}

.wc-recharge-card-form__field :is(input, select)::placeholder {
    color: #8c9bb0;
}

.wc-recharge-card-form__field input[readonly] {
    color: #344760;
    background: linear-gradient(180deg, #f7fbff 0%, #eef6fc 100%);
    cursor: default;
}

.wc-bank-account-lookup {
    display: block;
    min-height: 18px;
    margin-top: 8px;
    color: #6b7f96;
    font-size: 12px;
    line-height: 1.5;
}

.wc-bank-account-lookup.is-loading {
    color: #286a9c;
}

.wc-bank-account-lookup.is-success {
    color: #12734a;
}

.wc-bank-account-lookup.is-error {
    color: #b43232;
}

.wc-recharge-card-form__field--wide,
.wc-recharge-card-form__submit {
    grid-column: 1 / -1;
}

.wc-recharge-card-preview {
    display: grid;
    gap: 10px;
    padding: 22px 24px;
    border: 1px dashed #d5e0ec;
    border-radius: 22px;
    background:
        radial-gradient(circle at top left, rgba(26, 139, 216, 0.08), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.wc-recharge-card-preview__eyebrow {
    color: #74859c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-recharge-card-preview__value {
    display: block;
    margin: 0;
    font-size: clamp(30px, 5vw, 38px);
    line-height: 1.05;
    font-weight: 800;
}

.wc-recharge-card-preview__caption {
    margin: 0;
    color: #5d7189;
    font-size: 14px;
    line-height: 1.65;
}

.wc-recharge-card-form__submit {
    min-height: 54px;
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(24, 178, 68, 0.18);
}

.wc-recharge-card-form__submit span {
    font-weight: 800;
}

@media (max-width: 860px) {
    .wc-recharge-card__discount {
        width: 100%;
        justify-content: space-between;
    }

    .wc-recharge-card-form {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .wc-recharge-card-preview {
        padding: 18px 18px 20px;
        border-radius: 18px;
    }

    .wc-recharge-card-preview__value {
        font-size: clamp(28px, 8vw, 34px);
    }
}

.wc-recharge-filter--payos-create {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 14px;
    align-items: end;
}

.wc-payos-create__field {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.wc-payos-create__field span {
    color: #5b6d84;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-payos-create__field input {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid #d8e3f0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: #193351;
    font-size: 16px;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.wc-payos-create__field input:focus {
    outline: 0;
    border-color: #2f78ff;
    box-shadow: 0 0 0 4px rgba(47, 120, 255, 0.12);
}

.wc-recharge-filter__action--primary {
    min-width: 0;
    min-height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2f78ff 0%, #0f7a54 100%);
    box-shadow: 0 18px 28px rgba(24, 82, 175, 0.22);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.wc-payos-limits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.wc-payos-limits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #dbe5f2;
    color: #50627b;
    font-size: 13px;
    font-weight: 700;
}

.wc-payos-panel {
    padding: 20px;
    border-color: rgba(78, 106, 162, 0.16);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.wc-payos-page .wc-recharge-history {
    padding: 18px;
    border-color: rgba(78, 106, 162, 0.16);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.wc-payos-page #wcPayosFilter > input,
.wc-payos-page #wcPayosFilter > select {
    border-radius: 14px;
    border-color: #dbe5f1;
    background: rgba(245, 248, 252, 0.92);
}

.wc-payos-page #wcPayosFilter.wc-recharge-filter--compact {
    gap: 10px;
}

.wc-payos-page #wcPayosFilter .wc-recharge-filter__inlinefield {
    border-color: #dbe5f1;
    background: rgba(245, 248, 252, 0.92);
}

.wc-payos-page #wcPayosFilter .wc-recharge-filter__action {
    min-height: 46px;
    border-radius: 14px;
    border: 1px solid #dbe5f1;
    background: #f4f7fb;
    color: #53657d;
    font-weight: 700;
}

.wc-payos-page #wcPayosFilter .wc-recharge-filter__action[type="submit"] {
    background: linear-gradient(135deg, #eef5ff 0%, #eefaf5 100%);
    color: #31599f;
    border-color: #d7e4f6;
}

.wc-payos-page .wc-recharge-tablewrap {
    margin-top: 16px;
    border-radius: 20px;
    border-color: #dce5f2;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.wc-payos-page .wc-recharge-table th {
    background: #f6f9fc;
}

.wc-payos-history-mobile,
.wc-payos-history-mobile-summary {
    display: none;
}

.wc-payos-history-card {
    padding: 14px;
    border-radius: 18px;
    border: 1px solid #dce5f2;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 10px 22px rgba(37, 60, 92, 0.08);
    display: grid;
    gap: 12px;
}

.wc-payos-history-card__top,
.wc-payos-history-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.wc-payos-history-card__top {
    align-items: flex-start;
}

.wc-payos-history-card__identity {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.wc-payos-history-card__identity span,
.wc-payos-history-card__stat span {
    color: #6d7f98;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-payos-history-card__identity strong {
    color: #17324f;
    font-size: 14px;
    line-height: 1.4;
    word-break: break-word;
}

.wc-payos-history-card__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.wc-payos-history-card__stat {
    display: grid;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(244, 248, 252, 0.92);
    border: 1px solid #e1e8f2;
}

.wc-payos-history-card__stat strong {
    font-size: 16px;
    line-height: 1.3;
}

.wc-payos-history-card__time {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #63758d;
    font-size: 12px;
    line-height: 1.4;
}

.wc-payos-history-mobile-summary {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid #dce5f2;
    background: rgba(246, 249, 252, 0.96);
    display: none;
    gap: 10px;
}

.wc-payos-history-mobile-summary span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #4e6078;
    font-size: 13px;
}

.wc-payos-panel [data-payos-status-badge] .wc-badge {
    padding: 8px 14px;
    box-shadow: 0 10px 18px rgba(37, 60, 92, 0.08);
}

.wc-payos-focus {
    grid-template-columns: 1fr;
    grid-template-areas:
        "qr"
        "meta";
    gap: 18px;
    align-items: start;
}

.wc-payos-focus__meta {
    grid-area: meta;
    order: 0;
    gap: 16px;
    width: 100%;
}

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

.wc-payos-meta-card {
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e0e9f4;
    box-shadow: 0 10px 22px rgba(38, 74, 122, 0.08);
}

.wc-payos-meta-card span {
    color: #697c95;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-payos-meta-card strong {
    color: #17324f;
    font-size: 16px;
    line-height: 1.4;
    word-break: break-word;
}

.wc-payos-meta-card__value--mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 14px;
}

.wc-payos-focus__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wc-payos-focus__actions .wc-btn {
    min-height: 48px;
    padding: 0 20px;
}

.wc-payos-focus__qr {
    grid-area: qr;
    align-items: stretch;
    justify-content: center;
    order: -1;
}

.wc-payos-focus__qr .wc-payos-qr {
    max-width: 440px;
}

.wc-payos-qr {
    padding: 22px;
    border-color: rgba(74, 106, 162, 0.16);
    border-radius: 30px;
    background: linear-gradient(180deg, #fcfeff 0%, #f4f8ff 100%);
    box-shadow: 0 20px 40px rgba(37, 60, 92, 0.12);
    gap: 16px;
}

.wc-payos-qr__brand {
    gap: 14px;
}

.wc-payos-qr__brand img {
    width: min(100%, 176px);
}

.wc-payos-qr__frame {
    min-height: 336px;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid rgba(81, 113, 168, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 10px 24px rgba(53, 83, 129, 0.08);
}

.wc-payos-qr__image {
    width: min(100%, 286px);
}

.wc-payos-qr__summary {
    gap: 8px;
}

.wc-payos-qr__summary strong {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.wc-payos-qr__summary span {
    max-width: 30ch;
    justify-self: center;
}

.wc-payos-qr__placeholder {
    min-height: 100%;
    align-content: center;
}

.wc-payos-qr__placeholder strong {
    font-size: 22px;
}

@media (max-width: 1100px) {
    .wc-header__main {
        grid-template-columns: 48px 240px minmax(0, 1fr) auto;
        gap: 18px;
    }

    .wc-logo--shop img {
        width: 220px;
    }

    .wc-order-detail-filter {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wc-recharge-filter {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .wc-recharge-filter--payos-create {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    }

    .wc-payos-focus {
        grid-template-columns: 1fr;
    }

    .wc-payos-focus__qr {
        justify-content: stretch;
    }

    .wc-payos-focus__qr .wc-payos-qr {
        max-width: none;
    }

    .wc-payos-qr-modal__content {
        grid-template-columns: 1fr;
    }

    .wc-payos-qr-modal__qr {
        min-height: 0;
    }

    .wc-user-meta strong,
    .wc-user-meta small {
        display: none;
    }
}

@media (min-width: 901px) {
    .wc-main--shop {
        padding-bottom: 88px;
    }

    .wc-header__main {
        gap: 18px;
    }

    .wc-bottomdock {
        display: none !important;
    }

    .wc-dashboard-shell .wc-main--dashboard-shop {
        padding-top: 28px;
        padding-bottom: 88px;
    }

    .wc-floating-support {
        right: 22px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 54px);
        width: 80px;
        height: 80px;
    }

    .wc-dashboard-footer {
        padding-bottom: 136px;
    }

    .wc-dashboard-header-desktop {
        display: block;
        background: #fff;
        box-shadow: 0 10px 24px rgba(24, 36, 52, 0.08);
    }

    .wc-dashboard-header {
        display: none;
    }
}

@media (max-width: 900px) {
    .wc-header--shop {
        position: sticky;
        top: 0;
        z-index: 24;
        box-shadow: 0 10px 24px rgba(30, 48, 76, 0.08);
    }

    .wc-public-shell .wc-topbar__inner {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 6px 0;
    }

    .wc-header__main {
        grid-template-columns: auto 1fr auto;
        min-height: 70px;
        gap: 14px;
        padding: 10px 0;
    }

    .wc-mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 17px;
    }

    .wc-header__widgets .wc-action-icon:nth-child(1),
    .wc-header__widgets .wc-action-icon:nth-child(2),
    .wc-header__widgets .wc-action-icon:nth-child(3),
    .wc-navrow,
    .wc-account-menu,
    .wc-user-chip,
    .wc-login-chip {
        display: none;
    }

    .wc-searchbar {
        min-height: 42px;
        padding: 0 8px 0 12px;
        border-radius: 13px;
    }

    .wc-logo--shop img {
        width: 190px;
    }

    .wc-searchbar input {
        font-size: 15px;
    }

    .wc-searchbar__suggestions {
        top: calc(100% + 8px);
        padding: 10px;
        border-radius: 16px;
    }

    .wc-searchbar__suggestion {
        padding: 10px 11px;
        gap: 10px;
    }

    .wc-searchbar__suggestion-title {
        font-size: 13px;
    }

    .wc-searchbar__suggestion-price {
        font-size: 13px;
    }

    .wc-public-shell .shoptd-notice-grid,
    .wc-classic-panel__head {
        grid-template-columns: 1fr;
        display: grid;
    }

    .wc-client-home-hero {
        grid-template-columns: 1fr;
        padding: 18px;
        border-radius: 20px;
    }

    .wc-client-home-hero h1 {
        font-size: 32px;
    }

    .wc-client-home-hero__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .wc-home-filter__shell {
        padding: 12px;
    }

    .wc-home-filter__section {
        padding: 12px;
    }

    .wc-home-filter__controls--primary,
    .wc-home-filter__controls--secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wc-home-filter__actions {
        grid-column: 1 / -1;
    }

    .wc-catalog-card {
        grid-template-columns: minmax(0, 1fr) 110px;
        gap: 14px;
    }

    .wc-home-stats {
        justify-content: flex-start;
        gap: 6px;
    }

    .wc-home-stage__frame {
        padding: 18px 14px;
    }

    .wc-home-stage__content {
        padding: 12px;
    }

    .wc-classic-panel {
        padding: 16px;
    }

    .wc-bottomdock {
        display: grid;
    }
}

@media (max-width: 640px) {
    .wc-public-shell .wc-container {
        width: min(100%, calc(100% - 14px));
    }

    .wc-classic-panel--filters .wc-classic-panel__head h2 {
        font-size: 20px;
    }

    .wc-classic-panel--filters .wc-classic-panel__head p {
        font-size: 14px;
    }

    .wc-client-home-hero {
        padding: 16px;
    }

    .wc-client-home-hero h1 {
        font-size: 28px;
    }

    .wc-client-home-hero p {
        font-size: 14px;
        line-height: 1.6;
    }

    .wc-client-home-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .wc-client-home-hero__actions .wc-btn {
        width: 100%;
        justify-content: center;
    }

    .wc-client-home-hero__stats,
    .wc-client-home-grid {
        grid-template-columns: 1fr;
    }

    .wc-client-home-hero__stats span,
    .wc-client-home-card {
        min-height: 0;
    }

    .wc-home-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wc-header__main {
        min-height: 64px;
        gap: 10px;
        padding: 8px 0;
    }

    .wc-topbar__left {
        font-size: 12px;
    }

    .wc-topbar__right {
        gap: 12px;
        font-size: 12px;
    }

    .wc-topbar__inner--dashboard {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 22px;
        padding: 0;
    }

    .wc-toplink {
        display: none;
    }

    .wc-floating-support {
        right: 10px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 78px);
        width: 60px;
        height: 60px;
    }

    .wc-floating-support__icon {
        width: 44px;
        height: 44px;
    }

    .wc-floating-support__icon img {
        width: 30px;
        height: 30px;
    }

    .wc-floating-chat.is-open .wc-floating-chat__panel {
        top: max(6px, calc(env(safe-area-inset-top, 0px) + 6px));
        right: max(6px, calc(env(safe-area-inset-right, 0px) + 6px));
        left: max(6px, calc(env(safe-area-inset-left, 0px) + 6px));
        width: auto;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 6px);
        border-radius: 20px;
    }

    .wc-logo--shop img {
        width: 168px;
    }

    .wc-searchbar input {
        font-size: 14px;
    }

    .wc-searchbar__suggestions-head {
        font-size: 11px;
    }

    .wc-searchbar__suggestion-meta {
        font-size: 11px;
    }

    .wc-public-shell .shoptd-notice-card {
        padding: 16px 14px;
    }

    .wc-recharge-filter {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .wc-recharge-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .wc-recharge-toolbar__field {
        justify-content: space-between;
    }

    .wc-recharge-toolbar__field--date {
        margin-left: 0;
    }

    .wc-recharge-toolbar__field select {
        min-width: 120px;
        flex: 1;
    }

    .wc-recharge-table {
        min-width: 760px;
    }

    .wc-invoice-toolbar {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .wc-invoice-toolbar__button {
        width: 100%;
        justify-content: center;
    }

    .wc-invoice-col {
        width: 42px;
        min-width: 42px;
    }

    .wc-payos-page .wc-recharge-tablewrap {
        display: none;
    }

    .wc-payos-page #wcPayosFilter {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .wc-payos-page #wcPayosFilter > input[name="time"] {
        grid-column: 1 / -1;
    }

    .wc-payos-page #wcPayosFilter .wc-recharge-filter__inlinefield {
        min-height: 42px;
        padding: 0 12px;
    }

    .wc-payos-page #wcPayosFilter .wc-recharge-filter__inlinefield span {
        font-size: 12px;
    }

    .wc-payos-history-mobile {
        display: grid;
        gap: 12px;
        margin-top: 16px;
    }

    .wc-payos-history-mobile-summary {
        display: grid;
    }

    .wc-payos-history-card__meta {
        align-items: center;
        flex-direction: row;
    }

    .wc-payos-history-card {
        padding: 12px;
        gap: 10px;
    }

    .wc-payos-history-card .wc-badge {
        padding: 5px 8px;
        font-size: 11px;
    }

    .wc-payos-history-card__stat {
        padding: 8px 10px;
    }

    .wc-payos-history-card__stat strong {
        font-size: 15px;
    }

    .wc-payos-history-card__time {
        font-size: 11px;
    }

    .wc-payos-history-card__meta .wc-orders-action {
        min-height: 32px;
        padding: 0 12px;
        border-radius: 10px;
    }

    .wc-payos-notice,
    .wc-payos-create,
    .wc-payos-panel {
        padding: 16px;
        border-radius: 20px;
    }

    .wc-recharge-filter--payos-create {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
        gap: 10px;
        align-items: end;
    }

    .wc-recharge-filter--payos-create .wc-payos-create__field {
        gap: 8px;
    }

    .wc-recharge-filter--payos-create .wc-payos-create__field input {
        min-height: 54px;
        padding: 0 14px;
        font-size: 15px;
    }

    .wc-recharge-filter__action--primary {
        min-width: 0;
        min-height: 54px;
        padding: 0 10px;
        font-size: 13px;
    }

    .wc-payos-create__hint {
        width: 100%;
        justify-content: center;
    }

    .wc-payos-meta-grid {
        grid-template-columns: 1fr;
    }

    .wc-payos-focus__actions {
        flex-direction: column;
    }

    .wc-payos-focus__actions .wc-btn {
        width: 100%;
    }

    .wc-payos-qr {
        padding: 14px;
        border-radius: 20px;
    }

    .wc-payos-qr__brand img {
        width: min(100%, 164px);
    }

    .wc-payos-qr__frame {
        min-height: 0;
        padding: 12px;
        border-radius: 22px;
    }

    .wc-payos-qr__image {
        width: min(100%, 280px);
    }

    .wc-payos-qr__summary strong {
        font-size: 22px;
    }

    .wc-payos-qr-modal__dialog {
        width: min(100vw, calc(100vw - 12px));
    }

    .wc-payos-qr-modal__panel {
        max-height: calc(100dvh - 18px);
        overflow-y: auto;
        padding: 18px 14px;
        border-radius: 22px;
    }

    .wc-payos-qr-modal__close {
        top: 12px;
        right: 12px;
        min-width: 40px;
        min-height: 40px;
        padding: 0;
    }

    .wc-payos-qr-modal__close span {
        display: none;
    }

    .wc-payos-qr-modal__head {
        padding-right: 48px;
    }

    .wc-payos-qr-modal__head h2 {
        font-size: 22px;
    }

    .wc-payos-qr-modal__head p {
        font-size: 13px;
    }

    .wc-payos-qr-modal__qr {
        padding: 12px;
        border-radius: 22px;
    }

    .wc-payos-qr-modal__qr img {
        width: min(100%, 300px);
        border-radius: 16px;
    }

    .wc-payos-qr-modal__side {
        gap: 10px;
    }

    .wc-payos-qr-modal__stat {
        padding: 12px;
        border-radius: 16px;
    }

    .wc-payos-qr-modal__stat .wc-recharge-money {
        font-size: 22px;
    }

    .wc-payos-qr-modal__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .wc-payos-qr-modal__actions .wc-btn {
        width: 100%;
        min-height: 44px;
        justify-content: center;
    }

    .wc-payos-qr-loading-modal__dialog {
        width: min(100vw, calc(100vw - 24px));
    }

    .wc-payos-qr-loading-modal__panel {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .wc-payos-qr-loading-modal__copy h2 {
        font-size: 22px;
    }

    .wc-order-detail-top {
        flex-direction: column;
    }

    .wc-order-detail-top__actions {
        justify-content: flex-start;
    }

    .wc-order-summary {
        padding: 14px 14px;
    }

    .wc-order-summary__title {
        font-size: 18px;
        line-height: 1.24;
    }

    .wc-order-detail-card {
        padding: 14px 12px;
    }

    .wc-order-detail-filter {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .wc-order-detail-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .wc-order-detail-show {
        justify-content: space-between;
    }

    .wc-order-detail-show select {
        min-width: 120px;
        flex: 1;
    }

    .wc-order-tools {
        width: 100%;
    }

    .wc-order-tools__summary {
        width: 100%;
        justify-content: center;
    }

    .wc-order-tools__menu {
        left: 0;
        right: 0;
        min-width: 0;
    }

    .wc-logo--dashboard img {
        width: 156px;
    }

    .wc-dashboard-card {
        padding: 16px 14px;
        border-radius: 14px;
    }

    .wc-dashboard-card__head h2 {
        font-size: 18px;
    }

    .wc-dashboard-wallet__amount {
        font-size: 28px;
    }

    .wc-home-stats span {
        min-width: 0;
        padding: 9px 10px;
        font-size: 11px;
        gap: 2px;
    }

    .wc-home-stats strong {
        font-size: 17px;
    }

    .wc-home-filter__keyword {
        padding: 12px;
        gap: 10px;
    }

    .wc-home-filter__shell {
        padding: 12px;
        gap: 12px;
        border-radius: 18px;
    }

    .wc-home-filter__section {
        padding: 12px;
        gap: 12px;
        border-radius: 16px;
    }

    .wc-home-filter__section-head {
        align-items: center;
    }

    .wc-home-filter__controls--primary {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .wc-home-filter__controls--secondary {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .wc-home-field {
        gap: 6px;
    }

    .wc-home-field select {
        min-height: 44px;
        padding: 0 40px 0 13px;
        border-radius: 14px;
        font-size: 14px;
    }

    .wc-home-filter__actions .wc-btn {
        min-height: 44px;
        font-size: 13px;
    }

    .wc-dashboard-info-grid,
    .wc-dashboard-form,
    .wc-dashboard-wallet__stats {
        grid-template-columns: 1fr;
    }

    .wc-profile-account-grid,
    .wc-dashboard-form--password {
        grid-template-columns: 1fr;
    }

    .wc-profile-avatar-card {
        align-items: center;
    }

    .wc-dashboard-wallet__stat {
        min-height: 0;
        padding: 16px 14px;
    }

    .wc-dashboard-card__head--split {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .wc-btn--compact {
        min-height: 40px;
        padding: 0 14px;
    }

    .wc-order-trans {
        font-size: 13px;
    }

    .wc-order-trans strong {
        display: block;
        margin-top: 4px;
        font-size: 15px;
    }

    .wc-order-topbtn {
        min-height: 38px;
        padding: 0 10px;
        font-size: 12px;
        justify-content: center;
    }

    .wc-order-detail-top__actions {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .wc-order-summary__badges {
        gap: 6px;
    }

    .wc-order-summary__pill {
        min-height: 28px;
        padding: 0 10px;
        font-size: 12px;
    }

    .wc-order-statusnote {
        margin-top: 10px;
        padding: 10px 12px;
        font-size: 13px;
        line-height: 1.55;
    }

    .wc-order-detail-filter input,
    .wc-order-detail-filter__action,
    .wc-order-detail-show select,
    .wc-order-tools__summary {
        min-height: 40px;
        font-size: 13px;
    }

    .wc-order-detail-toolbar {
        gap: 10px;
    }

    .wc-order-detail-show {
        font-size: 11px;
    }

    .wc-order-detail-table {
        min-width: 640px;
    }

    .wc-orders-titlebar {
        min-height: 56px;
        padding: 0 16px;
        font-size: 17px;
    }

    .wc-orders-filter {
        grid-template-columns: 1fr 1fr;
    }

    .wc-dashboard-footer {
        padding-bottom: 86px;
    }

    .wc-catalog-group__head {
        padding: 10px 12px;
    }

    .wc-catalog-card {
        grid-template-columns: 1fr;
        padding: 16px 14px;
    }

    .wc-catalog-card__side {
        grid-template-columns: 1fr auto;
        align-items: center;
        justify-items: stretch;
    }

    .wc-catalog-card__price {
        justify-items: start;
        text-align: left;
    }

    .wc-catalog-card__action {
        min-width: 92px;
        width: auto;
        min-height: 48px;
    }

    .wc-free-tool__grid {
        grid-template-columns: 1fr;
    }

    .wc-free-tool {
        padding: 24px 20px;
    }

    .wc-free-tool__composer,
    .wc-free-tool__result-head,
    .wc-free-tool-entry {
        padding: 18px;
        border-radius: 20px;
    }

    .wc-free-tool__result-head,
    .wc-free-tool-entry__head {
        flex-direction: column;
    }

    .wc-free-tool-card-list,
    .wc-free-tool__summary-grid {
        grid-template-columns: 1fr;
    }

    .wc-free-tool-card {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .wc-free-tool-card__icon {
        width: 64px;
        height: 64px;
        font-size: 26px;
        border-radius: 18px;
    }

    .wc-free-tool-card__content strong {
        font-size: 20px;
    }

    .wc-free-tool__composer textarea {
        min-height: 220px;
    }

    .wc-free-tool__result-copy strong {
        font-size: 22px;
    }

    .wc-free-tool__actions .wc-btn {
        width: 100%;
        justify-content: center;
    }

    .wc-free-tool-bucket,
    .wc-free-tool-bucket__head {
        padding: 18px;
        border-radius: 20px;
    }

    .wc-free-tool-bucket__head {
        padding: 0;
        flex-direction: column;
    }

    .wc-free-tool-bucket__actions .wc-btn {
        width: 100%;
        justify-content: center;
    }

    .wc-free-tool-entry__code {
        font-size: 30px;
        letter-spacing: 0.1em;
        min-height: 64px;
    }

    .wc-note-tool__hero,
    .wc-note-tool__login,
    .wc-note-composer__footer,
    .wc-note-section-head,
    .wc-note-editor__head,
    .wc-note-recent__item {
        flex-direction: column;
        align-items: stretch;
    }

    .wc-note-tool__hero h2 {
        font-size: 24px;
    }

    .wc-note-tool__hero-badge {
        justify-content: center;
        width: 100%;
    }

    .wc-note-tool__layout,
    .wc-note-plan-grid,
    .wc-note-composer__options,
    .wc-note-manager__grid,
    .wc-note-drive__grid,
    .wc-note-file-upload__options,
    .wc-note-folder-form > div {
        grid-template-columns: 1fr;
    }

    .wc-note-composer,
    .wc-note-tool__side,
    .wc-note-api,
    .wc-note-recent,
    .wc-note-manager,
    .wc-note-file-upload {
        padding: 18px;
        border-radius: 20px;
    }

    .wc-note-composer textarea {
        min-height: 300px;
    }

    .wc-note-file-toolbar {
        align-items: stretch;
    }

    .wc-note-file-table {
        gap: 12px;
    }

    .wc-note-file-row--head {
        display: none;
    }

    .wc-note-file-row {
        grid-template-columns: auto minmax(0, 1fr);
        grid-template-areas:
            "check name"
            "check folder"
            "check status"
            "check date"
            "actions actions";
        align-items: start;
    }

    .wc-note-storage-manager .wc-note-file-row {
        grid-template-columns: auto minmax(0, 1fr);
        grid-template-areas:
            "check name"
            "check status"
            "check date"
            "actions actions";
    }

    .wc-note-file-row > .wc-note-file-check {
        grid-area: check;
        padding-top: 8px;
    }

    .wc-note-file-name {
        grid-area: name;
    }

    .wc-note-file-folder {
        grid-area: folder;
    }

    .wc-note-status {
        grid-area: status;
        width: fit-content;
    }

    .wc-note-file-date {
        grid-area: date;
    }

    .wc-note-file-actions {
        grid-area: actions;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding-left: 30px;
    }

    .wc-note-upload-result article {
        grid-template-columns: minmax(0, 1fr);
        align-items: stretch;
    }

    .wc-note-composer__footer .wc-btn,
    .wc-note-tool__login .wc-btn,
    .wc-note-plan .wc-btn,
    .wc-note-main-tabs button,
    .wc-note-tabs button,
    .wc-note-folder-form .wc-btn,
    .wc-note-file-upload .wc-btn,
    .wc-note-file-toolbar .wc-btn,
    .wc-note-recent__actions .wc-btn {
        width: 100%;
        justify-content: center;
    }

    .wc-note-recent__actions {
        width: 100%;
    }

.wc-public-shell .wc-grid--products {
        grid-template-columns: 1fr;
    }
}

.wc-product-view {
    padding-top: 10px;
}

.wc-product-modal-open {
    overflow: hidden;
}

.wc-product-modal {
    position: fixed;
    inset: 0;
    z-index: 1600;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 32px 18px;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

#wcDashboardHomeNoticeModal {
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 24px;
}

.wc-modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    flex: 0 0 auto;
}

.wc-product-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(18, 24, 36, 0.56);
    backdrop-filter: blur(6px);
}

.wc-product-modal__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(1120px, 100%);
    max-height: calc(100vh - 64px);
    overflow: auto;
    min-height: 0;
    border-radius: 30px;
}

.wc-product-modal__body {
    padding: 0;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
}

.wc-product-modal .wc-section {
    margin: 0;
}

.wc-recharge-approval-modal-shell {
    width: min(640px, 100%);
}

.wc-recharge-approval-modal {
    position: relative;
    padding: 30px;
    border-radius: 30px;
    border: 1px solid #deebdf;
    background:
        radial-gradient(circle at top right, rgba(19, 182, 88, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fdf9 100%);
    box-shadow: 0 24px 54px rgba(24, 52, 35, 0.18);
    display: grid;
    gap: 22px;
}

.wc-recharge-approval-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
}

.wc-recharge-approval-modal__hero {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.wc-recharge-approval-modal__icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #14bf57 0%, #0f8f42 100%);
    color: #fff;
    font-size: 28px;
    box-shadow: 0 18px 34px rgba(20, 191, 87, 0.24);
}

.wc-recharge-approval-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(20, 191, 87, 0.1);
    color: #10974a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-recharge-approval-modal__hero h2 {
    margin: 0;
    color: #183046;
    font-size: 34px;
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.wc-recharge-approval-modal__hero p {
    margin: 0;
    color: #5f7187;
    font-size: 15px;
    line-height: 1.7;
}

.wc-recharge-approval-modal__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.wc-recharge-approval-modal__stat {
    display: grid;
    gap: 6px;
    min-height: 96px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid #dce8e0;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.wc-recharge-approval-modal__stat span {
    color: #6a7d93;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-recharge-approval-modal__stat strong {
    color: #183046;
    font-size: 18px;
    line-height: 1.45;
    word-break: break-word;
}

.wc-recharge-approval-modal__stat--wide {
    grid-column: 1 / -1;
    min-height: 0;
}

.wc-recharge-approval-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.wc-dashboard-home-notice-modal-shell {
    width: min(1040px, calc(100vw - 36px));
    height: auto;
    max-height: none;
    display: flex;
    flex-direction: column;
    min-height: auto;
    overflow: visible;
    border-radius: 32px;
}

#wcDashboardHomeNoticeModal .wc-product-modal__body {
    overflow: visible;
}

.wc-dashboard-home-notice-modal {
    display: grid;
    grid-template-rows: auto auto auto auto;
    gap: 18px;
    padding: 28px;
    flex: none;
    min-height: auto;
    height: auto;
    max-height: none;
    overflow: visible;
    border-radius: inherit;
    border: 1px solid rgba(210, 224, 212, 0.96);
    background:
        radial-gradient(circle at top left, rgba(27, 160, 92, 0.2), transparent 26%),
        radial-gradient(circle at top right, rgba(255, 178, 102, 0.18), transparent 28%),
        linear-gradient(180deg, #fffefb 0%, #f7fbf6 100%);
    box-shadow: 0 30px 70px rgba(18, 34, 26, 0.22);
    color: #203346;
    font-family: var(--wc-modal-body);
}

.wc-dashboard-home-notice-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.wc-dashboard-home-notice-modal__hero-copy {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.wc-dashboard-home-notice-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(19, 113, 66, 0.1);
    color: #0f7042;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-dashboard-home-notice-modal__title {
    margin: 0;
    color: #17324f;
    font-family: var(--wc-modal-display);
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.wc-dashboard-home-notice-modal__subtitle {
    margin: 0;
    max-width: 64ch;
    color: #586b82;
    font-size: 15px;
    line-height: 1.72;
}

.wc-dashboard-home-notice-modal .wc-modal-close {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(34, 67, 50, 0.08);
    box-shadow: 0 16px 26px rgba(27, 45, 34, 0.1);
}

.wc-dashboard-home-notice-modal__tone {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wc-dashboard-home-notice-modal__tone span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(26, 71, 46, 0.08);
    color: #29435d;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(25, 43, 31, 0.06);
}

.wc-dashboard-home-notice-modal__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(310px, 0.86fr);
    gap: 18px;
    min-height: auto;
    overflow: visible;
    align-items: start;
}

.wc-dashboard-home-notice-modal__content {
    display: grid;
    gap: 18px;
    min-height: auto;
    overflow: visible;
    padding-right: 0;
    scrollbar-gutter: auto;
}

.wc-dashboard-home-notice-modal__content .shoptd-notice-stack {
    display: grid;
    gap: 16px;
}

.wc-dashboard-home-notice-modal__content .shoptd-notice-content--home {
    margin-bottom: 0;
}

.wc-dashboard-home-notice-modal__content .shoptd-notice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.wc-dashboard-home-notice-modal__content .shoptd-notice-card {
    padding: 22px 22px 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 252, 246, 0.96) 100%);
    border: 1px solid rgba(205, 219, 207, 0.86);
    border-left: 0;
    box-shadow: 0 18px 34px rgba(25, 39, 31, 0.08);
}

.wc-dashboard-home-notice-modal__content .shoptd-notice-card--hero {
    background:
        radial-gradient(circle at top right, rgba(255, 193, 106, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(13, 87, 56, 0.96) 0%, rgba(26, 133, 82, 0.94) 58%, rgba(255, 170, 96, 0.92) 100%);
    border-color: rgba(18, 87, 57, 0.2);
    color: #f8fff9;
}

.wc-dashboard-home-notice-modal__content .shoptd-notice-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(244, 255, 246, 0.9);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wc-dashboard-home-notice-modal__content .shoptd-notice-card h4,
.wc-dashboard-home-notice-modal__content .shoptd-notice-card h5,
.wc-dashboard-home-notice-modal__content .shoptd-notice-card h3 {
    margin: 0 0 12px;
    color: #18324e;
    font-family: var(--wc-modal-display);
    font-size: 28px;
    line-height: 1.16;
    letter-spacing: -0.03em;
}

.wc-dashboard-home-notice-modal__content .shoptd-notice-card p,
.wc-dashboard-home-notice-modal__content .shoptd-notice-card li {
    margin: 0;
    color: #42556c;
    font-size: 14px;
    line-height: 1.78;
}

.wc-dashboard-home-notice-modal__content .shoptd-notice-card ol,
.wc-dashboard-home-notice-modal__content .shoptd-notice-card ul {
    margin: 0;
    padding-left: 22px;
}

.wc-dashboard-home-notice-modal__content .shoptd-notice-card li + li {
    margin-top: 6px;
}

.wc-dashboard-home-notice-modal__content .shoptd-notice-chiplist {
    margin-top: 14px;
    color: rgba(245, 255, 247, 0.82);
    font-weight: 700;
}

.wc-dashboard-home-notice-modal__content .shoptd-notice-card a {
    color: #1e58f2;
    font-weight: 700;
}

.wc-dashboard-home-notice-modal__content .shoptd-notice-card--hero :is(h3, h4, h5, p, li, a) {
    color: #f7fff7;
}

.wc-dashboard-home-notice-modal__support {
    display: grid;
    gap: 14px;
    min-height: auto;
    overflow: visible;
    padding-right: 0;
    scrollbar-gutter: auto;
}

.wc-dashboard-home-notice-modal__support-card {
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(209, 220, 211, 0.9);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 34px rgba(23, 40, 29, 0.08);
}

.wc-dashboard-home-notice-modal__support-card--primary {
    background:
        radial-gradient(circle at top right, rgba(18, 142, 81, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 248, 0.98) 100%);
}

.wc-dashboard-home-notice-modal__support-card--soft {
    background:
        radial-gradient(circle at bottom right, rgba(255, 186, 112, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 251, 246, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.wc-dashboard-home-notice-modal__support-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(18, 142, 81, 0.1);
    color: #0f7243;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-dashboard-home-notice-modal__support-card h3 {
    margin: 0;
    color: #17324f;
    font-family: var(--wc-modal-display);
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.wc-dashboard-home-notice-modal__support-card p {
    margin: 0;
    color: #5d7087;
    font-size: 14px;
    line-height: 1.7;
}

.wc-dashboard-home-notice-modal__contact-list {
    display: grid;
    gap: 10px;
}

.wc-dashboard-home-notice-modal__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(217, 226, 220, 0.92);
    background: rgba(255, 255, 255, 0.92);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

a.wc-dashboard-home-notice-modal__contact-item:hover {
    transform: translateY(-1px);
    border-color: rgba(19, 113, 66, 0.18);
    box-shadow: 0 12px 24px rgba(18, 40, 29, 0.08);
}

.wc-dashboard-home-notice-modal__contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(18, 142, 81, 0.1);
    color: #117646;
    font-size: 16px;
}

.wc-dashboard-home-notice-modal__contact-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.wc-dashboard-home-notice-modal__contact-copy strong {
    color: #1f3650;
    font-size: 13px;
    line-height: 1.2;
}

.wc-dashboard-home-notice-modal__contact-copy span {
    color: #5f7188;
    font-size: 13px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.wc-dashboard-home-notice-modal__contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wc-dashboard-home-notice-modal__contact-actions .wc-btn {
    min-height: 44px;
    padding: 0 16px;
}

.wc-dashboard-home-notice-modal__tips {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.wc-dashboard-home-notice-modal__tips li {
    position: relative;
    padding: 0 0 0 18px;
    color: #495d74;
    font-size: 14px;
    line-height: 1.7;
}

.wc-dashboard-home-notice-modal__tips li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, #129b59 0%, #f2a35f 100%);
}

.wc-dashboard-home-notice-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 2px;
}

.wc-dashboard-home-notice-modal__actions .wc-btn {
    min-width: 150px;
}

.wc-email-verification-notice {
    position: fixed;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    z-index: 1700;
    width: min(460px, calc(100vw - 32px));
    max-height: calc(100dvh - 32px);
    overflow: auto;
    box-sizing: border-box;
    padding: 18px;
    border: 1px solid rgba(92, 107, 255, 0.18);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(169, 60, 255, 0.11) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(225deg, rgba(0, 216, 255, 0.14) 0%, rgba(255, 255, 255, 0) 42%),
        rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 58px rgba(37, 43, 92, 0.2);
    color: var(--wc-text);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
}

.wc-email-verification-notice__x {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(92, 107, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--wc-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.wc-email-verification-notice__x:hover,
.wc-email-verification-notice__x:focus-visible {
    color: var(--wc-logo-violet-strong);
    border-color: rgba(169, 60, 255, 0.32);
    outline: 0;
}

.wc-email-verification-notice__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--wc-logo-violet) 0%, var(--wc-logo-blue) 55%, var(--wc-logo-cyan) 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    box-shadow: var(--wc-logo-glow);
}

.wc-email-verification-notice__body {
    min-width: 0;
    padding-right: 28px;
    display: grid;
    gap: 8px;
}

.wc-email-verification-notice__eyebrow {
    width: fit-content;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(169, 60, 255, 0.1);
    color: var(--wc-logo-violet-strong);
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.wc-email-verification-notice h2 {
    margin: 0;
    color: var(--wc-logo-text);
    font-size: 18px;
    line-height: 1.28;
    font-weight: 800;
}

.wc-email-verification-notice p {
    margin: 0;
    color: var(--wc-logo-muted);
    font-size: 13px;
    line-height: 1.55;
}

.wc-email-verification-notice p strong {
    color: var(--wc-logo-text);
    word-break: break-word;
}

.wc-email-verification-notice__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 4px;
}

.wc-email-verification-notice__actions .wc-btn {
    min-height: 36px;
}

@media (min-width: 768px) {
    .wc-dashboard-home-notice-modal-shell {
        height: auto;
        max-height: none;
        overflow: visible;
    }

    #wcDashboardHomeNoticeModal .wc-product-modal__body {
        overflow: visible;
    }

    .wc-dashboard-home-notice-modal {
        flex: none;
        grid-template-rows: auto auto auto auto;
        min-height: auto;
        height: auto;
        max-height: none;
        overflow: visible;
    }

    .wc-dashboard-home-notice-modal__layout {
        min-height: auto;
        overflow: visible;
    }

    .wc-dashboard-home-notice-modal__content,
    .wc-dashboard-home-notice-modal__support {
        min-height: auto;
        overflow: visible;
        padding-right: 0;
        scrollbar-gutter: auto;
    }
}

.wc-product-layout {
    display: grid;
    gap: 22px;
}

.wc-product-detail-card,
.wc-product-buy-card {
    border-radius: 24px;
    border: 1px solid #e6ebf1;
    background: #fff;
    box-shadow: 0 16px 32px rgba(24, 36, 52, 0.09);
}

.wc-product-detail-card {
    padding: 26px 24px 24px;
}

.wc-product-detail-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.wc-product-detail-card__intro {
    min-width: 0;
    display: grid;
    gap: 14px;
}

.wc-product-detail-card__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: #eef9ef;
    color: #15a145;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wc-product-detail-card__title {
    margin: 0;
    color: #3a4453;
    font-size: 28px;
    line-height: 1.22;
    font-weight: 700;
}

.wc-product-detail-card__close {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #2cc45b 0%, #18ad43 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(25, 179, 72, 0.22);
}

.wc-product-detail-card__stock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 8px;
    background: #bb34c8;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.wc-product-detail-card__stock.is-empty {
    background: #9099a8;
}

.wc-product-detail-card__price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.wc-product-detail-card__price strong {
    color: #1bb146;
    font-size: 26px;
    font-weight: 700;
}

.wc-product-detail-card__price del {
    color: #98a2b3;
    font-size: 16px;
}

.wc-product-detail-card__copy {
    margin-top: 18px;
    color: #4d5564;
    font-size: 18px;
    line-height: 1.65;
    word-break: break-word;
}

.wc-product-detail-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.wc-product-detail-card__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f5f7fa;
    color: #586377;
    font-size: 13px;
    font-weight: 600;
}

.wc-product-share {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.wc-product-share__label {
    color: #4a5567;
    font-size: 16px;
}

.wc-product-share__list {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wc-product-share__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #f3f3f3;
    color: #4d5564;
    font-size: 18px;
    transition: transform 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

.wc-product-share__link:hover {
    transform: translateY(-1px);
    background: #19b64b;
    color: #fff;
}

.wc-product-buy-card {
    padding: 22px;
}

.wc-product-buy-form {
    display: grid;
    gap: 16px;
}

.wc-product-buy-table {
    overflow: hidden;
    border: 1px solid #d9e0e8;
    border-radius: 0;
    background: #fff;
}

.wc-product-buy-table__title {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border-bottom: 1px solid #d9e0e8;
    color: #4a4a4a;
    font-size: 16px;
    font-weight: 800;
}

.wc-product-buy-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
    border-bottom: 1px solid #e3e7ee;
}

.wc-product-buy-row:last-child {
    border-bottom: 0;
}

.wc-product-buy-row__label,
.wc-product-buy-row__value {
    min-width: 0;
    padding: 14px 16px;
}

.wc-product-buy-row__label {
    color: #555f6f;
    font-size: 16px;
}

.wc-product-buy-row__value {
    border-left: 1px solid #e3e7ee;
    text-align: right;
    color: #444f60;
    font-size: 16px;
    font-weight: 600;
}

.wc-product-buy-row__value strong {
    font-size: 16px;
    font-weight: 700;
}

.wc-product-buy-row--discount .wc-product-buy-row__value strong {
    color: #e64c4c;
}

.wc-product-buy-row--discount.is-hidden {
    display: none;
}

.wc-product-wallet {
    color: #fff;
    text-shadow:
        -1px -1px 0 #df1111,
        1px -1px 0 #df1111,
        -1px 1px 0 #df1111,
        1px 1px 0 #df1111,
        0 0 12px rgba(255, 60, 60, 0.44);
}

.wc-product-pay {
    color: #1d39ff;
}

.wc-required {
    color: #d03030;
    font-weight: 700;
}

.wc-product-stepper {
    display: inline-grid;
    grid-template-columns: 48px minmax(88px, 1fr) 48px;
    gap: 6px;
    width: min(100%, 220px);
    margin-left: auto;
}

.wc-product-stepper__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    background: #f0f1f3;
    color: #505865;
    font-size: 18px;
    font-weight: 700;
}

.wc-product-stepper input,
.wc-product-buy-input {
    width: 100%;
    min-height: 42px;
    border: 1px solid #dbe1e9;
    border-radius: 8px;
    background: #fbfbfc;
    color: #4a5364;
}

.wc-product-stepper input {
    padding: 0 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

.wc-product-buy-input {
    padding: 0 14px;
    font-size: 15px;
}

.wc-product-extra-field {
    gap: 10px;
}

.wc-product-comment-guide {
    display: grid;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid #dbe7f0;
    border-radius: 14px;
    background: #f7fbff;
}

.wc-product-comment-guide strong {
    color: #2f3e53;
    font-size: 15px;
    font-weight: 700;
}

.wc-product-comment-guide ul {
    margin: 0;
    padding-left: 18px;
    color: #5d6a7d;
    font-size: 13px;
    line-height: 1.65;
}

.wc-interaction-warning {
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    border: 1px solid rgba(194, 67, 32, 0.18);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 240, 232, 0.96), rgba(255, 249, 244, 0.98));
    color: #7a2d17;
    box-shadow: 0 12px 26px rgba(194, 67, 32, 0.08);
}

.wc-interaction-warning strong {
    color: #8f2f12;
    font-size: 15px;
    font-weight: 800;
}

.wc-interaction-warning p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
}

.wc-product-extra-field input,
.wc-product-extra-field textarea {
    border-radius: 12px;
}

.wc-target-link-status {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px dashed #d6e3ec;
    border-radius: 14px;
    background: #f8fbfd;
    color: #567084;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 600;
}

.wc-target-link-status i {
    margin-top: 2px;
    font-size: 15px;
}

.wc-target-link-status.is-success {
    border-style: solid;
    border-color: #b8ebc4;
    background: #edfdf1;
    color: #14783a;
}

.wc-target-link-status.is-warning,
.wc-target-link-status.is-error {
    border-style: solid;
    border-color: #f3dea0;
    background: #fff8df;
    color: #8a6511;
}

.wc-target-link-status.is-info {
    border-style: solid;
    border-color: #bfdcf6;
    background: #f3f9ff;
    color: #225b95;
}

.wc-product-extra-field input.is-valid,
.wc-interaction-field input.is-valid,
.wc-form-grid input.is-valid {
    border-color: #8cd3a1;
    box-shadow: 0 0 0 4px rgba(20, 120, 58, 0.08);
}

.wc-product-extra-field input.is-invalid,
.wc-interaction-field input.is-invalid,
.wc-form-grid input.is-invalid {
    border-color: #e5b44b;
    box-shadow: 0 0 0 4px rgba(195, 134, 17, 0.1);
}

.wc-product-hint {
    color: #687386;
    font-size: 13px;
    line-height: 1.55;
}

.wc-reaction-picker {
    display: grid;
    gap: 10px;
}

.wc-reaction-picker__label {
    color: #23344d;
    font-size: 13px;
    font-weight: 700;
}

.wc-reaction-picker__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wc-reaction-picker__option {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 6px;
    cursor: pointer;
}

.wc-reaction-picker__option input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.wc-reaction-picker__icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1.5px solid rgba(107, 25, 247, 0.14);
    background: #fff;
    box-shadow: 0 10px 20px rgba(26, 44, 74, 0.08);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.wc-reaction-picker__option.is-selected .wc-reaction-picker__icon {
    border-color: #7a26ff;
    box-shadow: 0 14px 28px rgba(122, 38, 255, 0.18);
    transform: translateY(-1px);
}

.wc-reaction-picker__icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.wc-reaction-picker__text {
    color: #33445f;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.wc-product-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 14px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
}

.wc-product-alert.is-hidden {
    display: none;
}

.wc-product-alert i {
    margin-top: 2px;
    font-size: 16px;
}

.wc-product-alert.is-success {
    border-color: #b8ebc4;
    background: #edfdf1;
    color: #14783a;
}

.wc-product-alert.is-warning {
    border-color: #f3dea0;
    background: #fff8df;
    color: #8a6511;
}

.wc-product-alert.is-error {
    border-color: #f1b2b2;
    background: #fff0f0;
    color: #b12d2d;
}

.wc-product-alert.is-info {
    border-color: #bfdcf6;
    background: #f3f9ff;
    color: #225b95;
}

.wc-product-buy-actions {
    display: grid;
    gap: 10px;
    margin-top: 4px;
}

.wc-product-pay-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(90deg, #22c145 0%, #168edd 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(34, 162, 118, 0.24);
}

.wc-product-pay-button[disabled] {
    background: linear-gradient(90deg, #98a3af 0%, #7c8795 100%);
    box-shadow: none;
}

.wc-product-pay-button--link {
    text-decoration: none;
}

.wc-product-cart-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    border: 1px solid #d4e7d8;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f5fbf7 100%);
    color: #117843;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(20, 50, 33, 0.06);
}

.wc-product-cart-button:hover {
    border-color: #badebf;
    background: linear-gradient(180deg, #fbfffc 0%, #eef8f1 100%);
}

.wc-product-secondary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wc-product-secondary-actions .wc-btn {
    flex: 1 1 180px;
    justify-content: center;
}

.wc-product-buy-card--guest {
    display: flex;
    align-items: stretch;
}

.wc-product-buy-card--guest .wc-product-buy-table {
    width: 100%;
}

.wc-product-buy-guest {
    display: grid;
    gap: 18px;
    padding: 22px 18px;
    color: #5a6576;
    font-size: 15px;
    line-height: 1.65;
}

.wc-cart-page {
    display: grid;
    gap: 22px;
}

.wc-cart-hero {
    display: grid;
    gap: 14px;
    padding: 22px;
    border: 1px solid #e4ebf2;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(21, 174, 72, 0.12), transparent 26%),
        radial-gradient(circle at bottom left, rgba(22, 142, 221, 0.12), transparent 28%),
        #fff;
    box-shadow: 0 18px 42px rgba(21, 36, 55, 0.08);
}

.wc-cart-hero__copy {
    display: grid;
    gap: 8px;
}

.wc-cart-hero__copy h1 {
    margin: 0;
    color: #17324f;
    font-size: clamp(22px, 2.6vw, 36px);
    line-height: 1.12;
}

.wc-cart-hero__copy p {
    margin: 0;
    max-width: 68ch;
    color: #63738a;
    font-size: 14px;
    line-height: 1.62;
}

.wc-cart-hero__eyebrow,
.wc-cart-summary__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(19, 113, 66, 0.1);
    color: #0f7042;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-cart-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wc-cart-hero__stats div,
.wc-cart-summary__rows div {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #e7edf4;
    background: rgba(255, 255, 255, 0.92);
}

.wc-cart-hero__stats div {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.wc-cart-hero__stats span,
.wc-cart-summary__rows span {
    display: block;
    color: #708096;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wc-cart-hero__stats span {
    display: inline;
    font-size: 11px;
    letter-spacing: 0.04em;
}

.wc-cart-hero__stats strong,
.wc-cart-summary__rows strong {
    display: block;
    margin-top: 10px;
    color: #17324f;
    font-size: 24px;
    line-height: 1.12;
}

.wc-cart-hero__stats strong {
    display: inline;
    margin-top: 0;
    font-size: 15px;
    line-height: 1.2;
}

.wc-cart-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.wc-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 18px;
    align-items: start;
}

.wc-cart-list {
    display: grid;
    gap: 16px;
}

.wc-cart-item,
.wc-cart-summary__card,
.wc-cart-empty {
    border: 1px solid #e5ebf2;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(20, 35, 55, 0.08);
}

.wc-cart-item {
    display: grid;
    grid-template-columns: auto 72px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
    align-items: start;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, opacity 0.18s ease;
}

.wc-cart-item:not(.is-selected) {
    opacity: 0.8;
    border-color: #e8eef4;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.wc-cart-item.is-selected {
    border-color: rgba(25, 154, 60, 0.26);
    box-shadow:
        0 18px 40px rgba(20, 35, 55, 0.1),
        0 0 0 1px rgba(25, 154, 60, 0.08);
}

.wc-cart-item.is-updating {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
}

.wc-cart-item.is-updating .wc-cart-item__pricing,
.wc-cart-item.is-updating .wc-cart-item__stepper {
    opacity: 0.72;
}

.wc-cart-item__selector {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 4px;
}

.wc-cart-item__check {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    cursor: pointer;
}

.wc-cart-item__check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wc-cart-item__check span {
    position: relative;
    width: 24px;
    height: 24px;
    border: 1.5px solid #c7d2de;
    border-radius: 8px;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.wc-cart-item__check span::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) scale(0);
    transform-origin: center;
    transition: transform 0.18s ease;
}

.wc-cart-item__check input:checked + span {
    border-color: #169a43;
    background: linear-gradient(180deg, #1bc14d 0%, #14953f 100%);
    box-shadow: 0 10px 18px rgba(24, 178, 68, 0.22);
    transform: translateY(-1px);
}

.wc-cart-item__check input:checked + span::after {
    transform: rotate(-45deg) scale(1);
}

.wc-cart-item__media {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, #f4f8fb 0%, #eef4f8 100%);
    display: grid;
    place-items: center;
    align-self: start;
}

.wc-cart-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wc-cart-item__media-fallback {
    color: #8ea0b6;
    font-size: 24px;
}

.wc-cart-item__body,
.wc-cart-item__titleblock,
.wc-cart-summary__card {
    display: grid;
    gap: 10px;
}

.wc-cart-item__body {
    min-width: 0;
}

.wc-cart-item__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.wc-cart-item__titleblock strong {
    color: #1b3552;
    font-size: 17px;
    line-height: 1.35;
}

.wc-cart-item__titleblock span {
    color: #6f8096;
    font-size: 12px;
    line-height: 1.6;
}

.wc-cart-item__sku {
    color: #8795a8;
    font-weight: 700;
}

.wc-cart-item__scope {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eef8f0;
    color: #128145;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.wc-cart-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wc-cart-item__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f4f8fb;
    color: #5f7188;
    font-size: 12px;
    font-weight: 700;
}

.wc-cart-item__meta strong {
    margin-left: 4px;
    color: #163350;
}

.wc-cart-item__purchase {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
    gap: 12px;
    align-items: start;
}

.wc-cart-item__form {
    display: grid;
    grid-template-columns: minmax(118px, 144px) minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.wc-cart-item__field {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.wc-cart-item__field-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: #f4f8fb;
    color: #607088;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wc-cart-item__field input {
    width: 100%;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid #dce4ed;
    border-radius: 12px;
    background: #fff;
    color: #23344a;
    font-size: 14px;
}

.wc-cart-item__stepper {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    min-height: 40px;
    border: 1px solid #dce4ed;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.wc-cart-item__stepper-btn {
    border: 0;
    background: #f7fafc;
    color: #17324f;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.wc-cart-item__stepper-btn:hover {
    background: #eef4f8;
}

.wc-cart-item__stepper-btn:active {
    background: #e4edf4;
}

.wc-cart-item__stepper input {
    min-height: 100%;
    padding: 0 6px;
    border: 0;
    border-left: 1px solid #eef3f7;
    border-right: 1px solid #eef3f7;
    border-radius: 0;
    text-align: center;
    font-weight: 800;
    -moz-appearance: textfield;
    appearance: textfield;
}

.wc-cart-item__stepper input::-webkit-outer-spin-button,
.wc-cart-item__stepper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.wc-cart-item__notes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wc-cart-item__notes span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f4f8fb;
    color: #50647c;
    font-size: 11px;
    font-weight: 700;
}

.wc-cart-item__memo {
    display: grid;
    gap: 6px;
    padding: 12px 14px;
    border: 1px dashed #dbe5ef;
    border-radius: 14px;
    background: #f8fbfd;
}

.wc-cart-item__memo span {
    color: #5e738c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-cart-item__memo p {
    margin: 0;
    color: #23344a;
    font-size: 13px;
    line-height: 1.6;
}

.wc-cart-item__pricing {
    display: grid;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid #e7edf4;
    background: linear-gradient(180deg, #fff 0%, #f8fbfe 100%);
}

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

.wc-cart-item__price-row span {
    color: #708096;
    font-size: 12px;
    font-weight: 700;
}

.wc-cart-item__price-row strong {
    color: #17324f;
    font-size: 15px;
    line-height: 1.35;
    text-align: right;
}

.wc-cart-item__price-row.is-total {
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px dashed #dbe5ef;
}

.wc-cart-item__price-row.is-total strong {
    color: #e2572d;
    font-size: 18px;
}

.wc-cart-item__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.wc-cart-item__actions .wc-btn {
    justify-content: center;
}

.wc-cart-item__link {
    color: #0f7042;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.wc-cart-item__link:hover {
    text-decoration: underline;
}

.wc-cart-summary {
    position: sticky;
    top: 20px;
}

.wc-cart-summary__card {
    display: grid;
    gap: 14px;
    padding: 18px;
}

.wc-cart-summary__card h2 {
    margin: 0;
    color: #17324f;
    font-size: 24px;
    line-height: 1.12;
}

.wc-cart-summary__card p {
    margin: 0;
    color: #68798f;
    font-size: 13px;
    line-height: 1.58;
}

.wc-cart-summary__actions {
    display: grid;
    gap: 8px;
}

.wc-cart-summary__actions .wc-btn {
    width: 100%;
    justify-content: center;
}

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

.wc-cart-summary__rows .is-total {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eef8f0 0%, #f6fcf7 54%, #eef8fb 100%);
    border-color: #d4e8d8;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.wc-cart-summary__rows > div {
    display: grid;
    gap: 6px;
    min-height: 84px;
    padding: 12px 14px;
    border-radius: 16px;
}

.wc-cart-summary__rows span {
    font-size: 11px;
    letter-spacing: 0.05em;
}

.wc-cart-summary__rows strong {
    margin-top: 0;
    font-size: 22px;
    line-height: 1.1;
}

.wc-cart-summary__rows .is-total span,
.wc-cart-summary__rows .is-total strong {
    display: block;
}

.wc-cart-summary__rows .is-total strong {
    color: #e2572d;
    font-size: 28px;
    text-align: right;
}

.wc-cart-summary__hint {
    padding: 10px 12px;
    border-radius: 14px;
    background: #f7fafc;
    border: 1px solid #edf2f7;
}

.wc-cart-empty {
    padding: 40px 24px;
    justify-items: center;
    text-align: center;
}

.wc-cart-empty__icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: linear-gradient(180deg, #19be49 0%, #18b244 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 18px 34px rgba(24, 178, 68, 0.2);
}

.wc-cart-empty h1 {
    margin: 0;
    color: #17324f;
    font-size: 30px;
}

.wc-cart-empty p {
    margin: 0;
    max-width: 48ch;
    color: #66778d;
    line-height: 1.7;
}

.wc-cart-empty__actions {
    display: flex;
    justify-content: center;
}

.wc-product-note,
.wc-product-description {
    border-radius: 24px;
}

@media (min-width: 980px) {
    .wc-product-layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
        align-items: start;
    }

    .wc-product-buy-card {
        position: sticky;
        top: 24px;
    }
}

@media (max-width: 767px) {
    .wc-toast-wrap {
        top: calc(env(safe-area-inset-top) + 10px);
        right: calc(env(safe-area-inset-right) + 10px);
        left: calc(env(safe-area-inset-left) + 10px);
        width: auto;
        gap: 8px;
    }

    .wc-toast {
        max-width: none;
        padding: 12px 13px;
        border-radius: 14px;
        font-size: 13px;
        line-height: 1.45;
        box-shadow: 0 16px 30px rgba(8, 22, 17, 0.24);
    }

    .wc-product-modal {
        align-items: flex-end;
        padding:
            max(8px, env(safe-area-inset-top))
            8px
            calc(env(safe-area-inset-bottom) + 8px);
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .wc-product-modal.wc-coin-precheck-modal {
        align-items: center;
        justify-content: center;
        min-height: 100dvh;
        padding:
            max(12px, env(safe-area-inset-top))
            8px
            max(12px, env(safe-area-inset-bottom));
    }

    #wcDashboardHomeNoticeModal {
        align-items: flex-start;
        padding:
            max(12px, env(safe-area-inset-top))
            10px
            calc(env(safe-area-inset-bottom) + 14px);
    }

    .wc-product-modal__dialog {
        width: 100%;
        max-height: min(84vh, calc(100vh - env(safe-area-inset-top) - 14px));
        border-radius: 24px;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 24px 42px rgba(16, 24, 39, 0.26);
    }

    #wcDashboardHomeNoticeModal .wc-product-modal__dialog {
        max-height: none;
        overflow: visible;
    }

    .wc-product-modal__body {
        min-height: 0;
    }

    .wc-recharge-approval-modal {
        padding: 16px 14px 14px;
        border-radius: 22px;
        gap: 14px;
    }

    .wc-dashboard-home-notice-modal {
        padding: 14px 12px 12px;
        gap: 12px;
    }

    .wc-dashboard-home-notice-modal__head {
        position: sticky;
        top: 0;
        z-index: 2;
        padding-bottom: 8px;
        background:
            radial-gradient(circle at top left, rgba(27, 160, 92, 0.16), transparent 26%),
            radial-gradient(circle at top right, rgba(255, 178, 102, 0.16), transparent 28%),
            linear-gradient(180deg, #fffefb 0%, #f7fbf6 100%);
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: row;
    }

    .wc-modal-close {
        min-width: 38px;
        width: 38px;
        min-height: 38px;
        height: 38px;
        padding: 0;
        border-radius: 999px;
    }

    .wc-modal-close span {
        display: none;
    }

    .wc-dashboard-home-notice-modal__eyebrow {
        min-height: 28px;
        padding: 0 10px;
        font-size: 10px;
        letter-spacing: 0.06em;
    }

    .wc-dashboard-home-notice-modal__title {
        font-size: 26px;
        line-height: 1.08;
    }

    .wc-dashboard-home-notice-modal__subtitle {
        font-size: 13px;
        line-height: 1.58;
    }

    .wc-dashboard-home-notice-modal__tone {
        gap: 8px;
    }

    .wc-dashboard-home-notice-modal__tone span {
        min-height: 34px;
        padding: 0 12px;
        font-size: 11px;
        flex: 1 1 calc(50% - 4px);
        justify-content: center;
    }

    .wc-dashboard-home-notice-modal__layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .wc-dashboard-home-notice-modal__content {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .wc-dashboard-home-notice-modal__content .shoptd-notice-stack {
        gap: 12px;
    }

    .wc-dashboard-home-notice-modal__content .shoptd-notice-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .wc-dashboard-home-notice-modal__content .shoptd-notice-card {
        padding: 14px 12px;
        border-radius: 16px;
    }

    .wc-dashboard-home-notice-modal__content .shoptd-notice-kicker {
        margin-bottom: 8px;
        font-size: 12px;
    }

    .wc-dashboard-home-notice-modal__content .shoptd-notice-card h4,
    .wc-dashboard-home-notice-modal__content .shoptd-notice-card h5,
    .wc-dashboard-home-notice-modal__content .shoptd-notice-card h3 {
        margin-bottom: 10px;
        font-size: 18px;
        line-height: 1.28;
    }

    .wc-dashboard-home-notice-modal__support {
        gap: 12px;
    }

    .wc-dashboard-home-notice-modal__support-card {
        padding: 14px 12px;
        border-radius: 18px;
        gap: 12px;
    }

    .wc-dashboard-home-notice-modal__support-card h3 {
        font-size: 22px;
    }

    .wc-dashboard-home-notice-modal__contact-item {
        padding: 10px 11px;
        border-radius: 16px;
        gap: 10px;
    }

    .wc-dashboard-home-notice-modal__contact-icon {
        min-width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 14px;
    }

    .wc-dashboard-home-notice-modal__contact-copy strong,
    .wc-dashboard-home-notice-modal__contact-copy span,
    .wc-dashboard-home-notice-modal__tips li {
        font-size: 13px;
    }

    .wc-dashboard-home-notice-modal__contact-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .wc-dashboard-home-notice-modal__content .shoptd-notice-card p,
    .wc-dashboard-home-notice-modal__content .shoptd-notice-card li {
        font-size: 14px;
        line-height: 1.58;
    }

    .wc-dashboard-home-notice-modal__actions {
        display: grid;
        position: sticky;
        bottom: 0;
        z-index: 2;
        padding-top: 8px;
        background:
            radial-gradient(circle at top left, rgba(27, 160, 92, 0.16), transparent 26%),
            radial-gradient(circle at top right, rgba(255, 178, 102, 0.16), transparent 28%),
            linear-gradient(180deg, #fffefb 0%, #f7fbf6 100%);
    }

    .wc-dashboard-home-notice-modal__actions .wc-btn {
        width: 100%;
        min-height: 46px;
    }

    .wc-email-verification-notice {
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
        width: min(420px, calc(100vw - 24px));
        max-height: calc(100dvh - 24px);
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 10px;
        padding: 14px 12px;
        border-radius: 16px;
    }

    .wc-email-verification-notice__icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 16px;
    }

    .wc-email-verification-notice__body {
        padding-right: 30px;
        gap: 7px;
    }

    .wc-email-verification-notice h2 {
        font-size: 16px;
    }

    .wc-email-verification-notice p {
        font-size: 12px;
        line-height: 1.5;
    }

    .wc-email-verification-notice__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .wc-email-verification-notice__actions .wc-btn {
        width: 100%;
        min-height: 40px;
    }

    .wc-dashboard-telegram__actions,
    .wc-dashboard-telegram-linkbox__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .wc-dashboard-telegram__actions .wc-btn,
    .wc-dashboard-telegram-linkbox__actions .wc-btn {
        width: 100%;
        min-height: 42px;
    }

    .wc-recharge-approval-modal__icon {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        font-size: 22px;
    }

    .wc-recharge-approval-modal__hero {
        gap: 8px;
        padding-right: 42px;
    }

    .wc-recharge-approval-modal__hero h2 {
        font-size: 23px;
        line-height: 1.14;
    }

    .wc-recharge-approval-modal__hero p {
        font-size: 13px;
        line-height: 1.55;
    }

    .wc-recharge-approval-modal__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .wc-recharge-approval-modal__stat {
        min-height: 0;
        padding: 12px;
        border-radius: 14px;
    }

    .wc-recharge-approval-modal__stat span {
        font-size: 10px;
    }

    .wc-recharge-approval-modal__stat strong {
        font-size: 15px;
        line-height: 1.35;
    }

    .wc-recharge-approval-modal__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        position: sticky;
        bottom: 0;
        z-index: 2;
        padding-top: 8px;
        background:
            radial-gradient(circle at top right, rgba(19, 182, 88, 0.12), transparent 28%),
            linear-gradient(180deg, #ffffff 0%, #f8fdf9 100%);
    }

    .wc-recharge-approval-modal__actions .wc-btn {
        width: 100%;
        min-height: 44px;
        font-size: 14px;
        padding-inline: 12px;
    }

    .wc-product-alert {
        gap: 8px;
        padding: 11px 12px;
        border-radius: 12px;
        font-size: 13px;
        line-height: 1.5;
    }

    .wc-product-alert i {
        font-size: 15px;
    }

    .wc-product-detail-card {
        padding: 18px 14px 18px;
    }

    .wc-product-detail-card__head {
        position: relative;
        display: block;
    }

    .wc-product-detail-card__close {
        position: absolute;
        top: -8px;
        right: -6px;
        min-height: 34px;
        padding: 0 12px;
        font-size: 14px;
    }

    .wc-product-detail-card__title {
        padding-right: 84px;
        font-size: 24px;
    }

    .wc-product-detail-card__price strong {
        font-size: 20px;
    }

    .wc-product-detail-card__copy {
        font-size: 15px;
        line-height: 1.6;
    }

    .wc-product-buy-card {
        padding: 14px;
    }

    .wc-cart-hero {
        padding: 16px 14px;
        border-radius: 20px;
    }

    .wc-cart-layout,
    .wc-cart-item__purchase {
        grid-template-columns: 1fr;
    }

    .wc-cart-item__form {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 8px;
    }

    .wc-cart-hero__copy h1 {
        font-size: 18px;
        line-height: 1.2;
    }

    .wc-cart-hero__copy p {
        font-size: 13px;
        line-height: 1.55;
    }

    .wc-cart-hero__stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .wc-cart-hero__stats div {
        display: grid;
        gap: 3px;
        align-items: start;
        padding: 10px 12px;
        border-radius: 14px;
    }

    .wc-cart-hero__stats span,
    .wc-cart-hero__stats strong {
        display: block;
    }

    .wc-cart-hero__stats strong {
        margin-top: 0;
        font-size: 18px;
    }

    .wc-cart-item {
        grid-template-columns: auto 64px minmax(0, 1fr);
        gap: 10px;
        padding: 14px 12px;
    }

    .wc-cart-item__selector {
        padding-top: 0;
        justify-content: flex-start;
    }

    .wc-cart-item__media {
        width: 64px;
        height: 64px;
        border-radius: 12px;
    }

    .wc-cart-summary {
        position: static;
    }

    .wc-cart-summary__card,
    .wc-cart-empty {
        padding: 16px 14px;
        border-radius: 18px;
    }

    .wc-cart-summary__card {
        gap: 12px;
    }

    .wc-cart-summary__card h2 {
        font-size: 20px;
    }

    .wc-cart-summary__rows {
        gap: 8px;
    }

    .wc-cart-summary__rows > div {
        min-height: 72px;
        padding: 10px 12px;
        border-radius: 14px;
    }

    .wc-cart-summary__rows strong {
        font-size: 18px;
    }

    .wc-cart-summary__rows .is-total {
        padding: 12px 14px;
        border-radius: 16px;
    }

    .wc-cart-summary__rows .is-total strong {
        font-size: 24px;
    }

    .wc-cart-item__head,
    .wc-cart-hero__actions,
    .wc-cart-item__actions {
        display: grid;
    }

    .wc-cart-item__actions .wc-btn,
    .wc-cart-hero__actions .wc-btn {
        width: 100%;
    }

    .wc-cart-item__link {
        width: 100%;
        text-align: center;
    }

    .wc-product-buy-row {
        grid-template-columns: 1fr;
    }

    .wc-product-buy-row__label {
        padding-bottom: 8px;
    }

    .wc-product-buy-row__value {
        padding-top: 0;
        border-left: 0;
        text-align: left;
    }

    .wc-product-buy-row--quantity .wc-product-buy-row__value {
        padding-top: 12px;
    }

    .wc-product-stepper {
        width: 100%;
        margin-left: 0;
    }

    .wc-product-secondary-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .wc-dashboard-home-notice-modal__content {
        max-height: none;
    }

    .wc-recharge-approval-modal__stats,
    .wc-recharge-approval-modal__actions {
        grid-template-columns: 1fr;
    }
}

.wc-orders-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 16px;
}

.wc-orders-tabs__link {
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(26, 188, 84, 0.18);
    background: #fff;
    color: #35506f;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.wc-orders-tabs__link:hover {
    color: #284564;
    border-color: rgba(26, 188, 84, 0.28);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
    transform: translateY(-1px);
}

.wc-orders-tabs__link.is-active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(120deg, #20c63f, #0f8bd8);
    box-shadow: 0 12px 24px rgba(15, 139, 216, 0.15);
}

.wc-interaction-builder {
    margin-top: 18px;
    display: grid;
    gap: 16px;
}

.wc-interaction-builder__hero {
    display: grid;
    gap: 10px;
}

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

.wc-interaction-builder__tabs--history {
    gap: 10px;
    margin-bottom: 14px;
}

.wc-interaction-builder__tab {
    min-height: 54px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid rgba(26, 188, 156, 0.12);
    background: #fff;
    color: #1d2d44;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.wc-interaction-builder__tabs--history .wc-interaction-builder__tab {
    min-height: 50px;
    padding: 0 14px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 700;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.wc-interaction-builder__tabs--history .wc-interaction-builder__tab i {
    font-size: 14px;
}

.wc-interaction-builder__tab:hover {
    color: #1d2d44;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.wc-interaction-builder__tab.is-active {
    border-color: transparent;
    background: linear-gradient(135deg, #10b981 0%, #17a2b8 100%);
    color: #fff;
    box-shadow: 0 16px 30px rgba(16, 185, 129, 0.24);
}

.wc-interaction-builder__tabs--history .wc-interaction-builder__tab.is-active {
    box-shadow: 0 14px 24px rgba(16, 185, 129, 0.2);
}

.wc-interaction-builder__submit {
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #6b19f7, #7a26ff 55%, #4a10e9);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    padding: 13px 16px;
    box-shadow: 0 16px 30px rgba(90, 32, 241, 0.2);
}

.wc-interaction-builder__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wc-interaction-builder__headline {
    padding: 10px 10px 0;
}

.wc-interaction-builder__eyebrow {
    color: #6b19f7;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-interaction-builder__headline h2 {
    margin: 6px 0 4px;
    font-size: 22px;
    color: #1d2d44;
}

.wc-interaction-builder__headline p,
.wc-interaction-builder__login p {
    margin: 0;
    color: #55657d;
    line-height: 1.5;
    font-size: 13px;
}

.wc-interaction-builder__login {
    padding: 14px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 44px rgba(16, 40, 66, 0.12);
}

.wc-interaction-form {
    display: grid;
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 22px 48px rgba(15, 36, 62, 0.12);
}

.wc-interaction-field {
    display: grid;
    gap: 7px;
}

.wc-interaction-field > span {
    color: #23344d;
    font-size: 13px;
    font-weight: 700;
}

.wc-interaction-field input,
.wc-interaction-field textarea {
    width: 100%;
    border: 1.5px solid rgba(104, 41, 247, 0.3);
    border-radius: 14px;
    background: #fff;
    padding: 12px 14px;
    color: #20304a;
    font-size: 13px;
}

.wc-interaction-field textarea {
    resize: vertical;
    min-height: 96px;
}

.wc-interaction-services {
    display: grid;
    gap: 4px;
}

.wc-interaction-service {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    align-items: flex-start;
    padding: 7px 2px;
    cursor: pointer;
}

.wc-interaction-service input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wc-interaction-service__radio {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    border-radius: 50%;
    border: 2px solid rgba(107, 25, 247, 0.25);
    background: #fff;
    box-shadow: inset 0 0 0 4px transparent;
    transition: 0.2s ease;
}

.wc-interaction-service.is-selected .wc-interaction-service__radio {
    border-color: #7a26ff;
    box-shadow: inset 0 0 0 4px #7a26ff;
}

.wc-interaction-service__body {
    display: grid;
    gap: 5px;
}

.wc-interaction-service__meta {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.wc-interaction-service__badge,
.wc-interaction-service__price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 7px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.wc-interaction-service__badge {
    background: #ff8b16;
    color: #fff;
}

.wc-interaction-service__price {
    background: #6b19f7;
    color: #fff;
}

.wc-interaction-service__name {
    color: #2a3550;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
}

.wc-interaction-server {
    padding: 14px;
    border-radius: 16px;
    background: linear-gradient(180deg, #41b9e9, #2e9fe3);
    color: #fff;
    box-shadow: 0 18px 34px rgba(44, 159, 227, 0.18);
}

.wc-interaction-server__head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.wc-interaction-server__body {
    display: grid;
    gap: 5px;
    font-size: 12px;
    line-height: 1.45;
    word-break: break-word;
}

.wc-interaction-server__body div,
.wc-interaction-server__body p {
    margin: 0;
}

.wc-interaction-server__body b,
.wc-interaction-server__body strong {
    font-weight: 800;
}

.wc-interaction-server__service-name {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 800;
    word-break: break-word;
}

.wc-interaction-server__service-copy {
    display: grid;
    gap: 6px;
}

.wc-interaction-server__service-runtime {
    display: grid;
    gap: 4px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 11px;
    line-height: 1.45;
}

.wc-interaction-server__service-spec {
    display: grid;
    gap: 4px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 11px;
    line-height: 1.45;
    opacity: 0.96;
}

.wc-interaction-comment.is-hidden {
    display: none;
}

.wc-interaction-comment__hint {
    margin: -6px 0 0;
    color: #66768d;
    line-height: 1.45;
    font-size: 12px;
}

.wc-interaction-summary {
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    background: #f8f4ff;
    border: 1px solid rgba(107, 25, 247, 0.12);
}

.wc-interaction-summary__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #24324a;
    font-size: 13px;
}

.wc-interaction-summary__row strong {
    font-size: 16px;
}

.wc-interaction-summary__row.is-total strong {
    color: #6b19f7;
}

.wc-interaction-summary__subtext {
    padding-top: 10px;
    border-top: 1px solid rgba(107, 25, 247, 0.12);
    color: #4b5e78;
    font-weight: 600;
    font-size: 12px;
}

.wc-interaction-order-card {
    padding: 22px;
}

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

.wc-interaction-order-panel {
    padding: 18px;
    border-radius: 20px;
    background: #f8fbff;
    border: 1px solid rgba(22, 126, 214, 0.12);
}

.wc-interaction-order-panel h3 {
    margin: 0 0 14px;
    color: #20314b;
    font-size: 18px;
}

.wc-interaction-order-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.wc-interaction-order-list--compact {
    gap: 8px;
    margin-top: 8px;
}

.wc-interaction-order-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    color: #48607d;
}

.wc-interaction-order-list strong {
    color: #1e2f49;
    text-align: right;
}

.wc-interaction-order-lines {
    display: grid;
    gap: 10px;
    color: #31506f;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .wc-orders-tabs {
        gap: 8px;
    }

    .wc-orders-tabs__link {
        flex: 1 1 calc(50% - 5px);
        text-align: center;
        padding: 9px 12px;
        font-size: 12px;
    }

    .wc-orders-titlebar {
        min-height: 46px;
        padding: 0 14px;
        border-radius: 16px;
        font-size: 14px;
        gap: 8px;
    }

    .wc-orders-filter--compact {
        gap: 8px;
        padding: 8px;
        border-radius: 18px;
    }

    .wc-orders-filter--compact input,
    .wc-orders-filter--compact select,
    .wc-orders-filter--compact .wc-orders-filter__search,
    .wc-orders-filter--compact .wc-orders-filter__reset {
        min-height: 42px;
        border-radius: 12px;
        font-size: 12px;
    }

    .wc-interaction-history__tablewrap {
        margin-top: 14px;
        padding: 0;
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .wc-interaction-history__table {
        min-width: 0;
        display: block;
        background: transparent;
    }

    .wc-interaction-history__table thead {
        display: none;
    }

    .wc-interaction-history__table tbody {
        display: grid;
        gap: 14px;
    }

    .wc-interaction-history__table tbody tr {
        display: grid;
        gap: 12px;
        padding: 14px;
        border: 1px solid rgba(216, 226, 238, 0.92);
        border-radius: 22px;
        background:
            radial-gradient(circle at top right, rgba(64, 154, 235, 0.12), transparent 34%),
            linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
        box-shadow: 0 16px 34px rgba(22, 39, 64, 0.08);
    }

    .wc-interaction-history__table tbody td {
        display: grid;
        gap: 7px;
        padding: 0;
        border: 0;
        background: transparent !important;
        box-shadow: none;
    }

    .wc-interaction-history__table tbody td:first-child {
        border-left: 0;
    }

    .wc-interaction-history__table tbody td::before {
        color: #71849a;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .wc-interaction-history__table .wc-empty {
        display: block;
        padding: 22px 16px;
        text-align: center;
        border: 1px dashed rgba(183, 198, 216, 0.92);
        border-radius: 18px;
        background: #fff;
    }

    .wc-interaction-history__table .wc-empty::before {
        content: none;
    }

    .wc-interaction-history__index {
        width: auto;
        min-width: 0;
        text-align: left;
        color: #203a56;
        font-size: 15px;
    }

    .wc-interaction-history__index::before {
        content: "STT";
    }

    .wc-interaction-history__order::before {
        content: "Thông tin đơn";
    }

    .wc-interaction-history__service::before {
        content: "Link / Dịch vụ";
    }

    .wc-interaction-history__status::before {
        content: "Trạng thái";
    }

    .wc-interaction-history__updated::before {
        content: "Cập nhật";
    }

    .wc-interaction-history__adminnote::before {
        content: "Admin note";
    }

    .wc-interaction-history__note::before {
        content: "Ghi chú";
    }

    .wc-interaction-history__trans {
        width: fit-content;
        min-height: 32px;
        padding-inline: 12px;
        font-size: 13px;
    }

    .wc-interaction-history__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .wc-interaction-history__actions .wc-orders-action {
        width: 100%;
        min-height: 40px;
        padding-inline: 10px;
        border-radius: 12px;
    }

    .wc-interaction-history__servicehead {
        gap: 8px;
    }

    .wc-interaction-history__servicehead a {
        font-size: 14px;
        line-height: 1.55;
    }

    .wc-interaction-history__targetwrap {
        margin-top: 2px;
        padding: 10px 12px;
        border-radius: 14px;
    }

    .wc-interaction-history__statusline {
        font-size: 13px;
        gap: 8px;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .wc-interaction-history__updated strong {
        font-size: 15px;
    }

    .wc-interaction-history__updated span,
    .wc-interaction-history__adminnote,
    .wc-interaction-history__stamp,
    .wc-interaction-history__relative {
        font-size: 12px;
        line-height: 1.65;
    }

    .wc-interaction-history__note textarea {
        min-height: 104px;
        border-radius: 14px;
        font-size: 14px;
    }

    .wc-interaction-builder__headline {
        padding: 6px 2px 0;
    }

    .wc-interaction-builder__headline h2 {
        font-size: 19px;
    }

    .wc-interaction-builder__tabs {
        gap: 10px;
    }

    .wc-interaction-builder__tab {
        min-height: 50px;
        padding-inline: 12px;
        font-size: 13px;
    }

    .wc-interaction-builder__tabs--history {
        gap: 8px;
        margin-bottom: 12px;
    }

    .wc-interaction-builder__tabs--history .wc-interaction-builder__tab {
        min-height: 46px;
        padding-inline: 10px;
        border-radius: 16px;
        font-size: 12px;
        gap: 7px;
    }

    .wc-interaction-form {
        gap: 12px;
        padding: 13px;
        border-radius: 18px;
    }

    .wc-interaction-service {
        gap: 8px;
        padding: 6px 0;
    }

    .wc-interaction-service__name {
        font-size: 12px;
        line-height: 1.35;
    }

    .wc-interaction-service__badge,
    .wc-interaction-service__price {
        font-size: 10px;
        padding: 2px 6px;
    }

    .wc-interaction-server {
        padding: 12px;
    }

    .wc-interaction-server__body {
        font-size: 11px;
    }

    .wc-interaction-order-grid {
        grid-template-columns: 1fr;
    }

    .wc-interaction-order-list li {
        display: grid;
        gap: 6px;
    }

    .wc-interaction-order-list strong {
        text-align: left;
    }
}

/* SHOPTDMMO logo style sync for cards and menus */
:root {
    --wc-logo-ink: #070a1f;
    --wc-logo-panel: #0b1028;
    --wc-logo-text: #141a35;
    --wc-logo-muted: #65718e;
    --wc-logo-violet: #a93cff;
    --wc-logo-violet-strong: #7a2cff;
    --wc-logo-blue: #4b7dff;
    --wc-logo-cyan: #00d8ff;
    --wc-logo-cyan-soft: rgba(0, 216, 255, 0.16);
    --wc-logo-violet-soft: rgba(169, 60, 255, 0.14);
    --wc-logo-border: rgba(92, 107, 255, 0.16);
    --wc-logo-shadow: 0 22px 54px rgba(37, 43, 92, 0.14);
    --wc-logo-glow: 0 18px 38px rgba(169, 60, 255, 0.18), 0 8px 24px rgba(0, 216, 255, 0.1);
    --wc-bg: #f4f6ff;
    --wc-surface: rgba(255, 255, 255, 0.92);
    --wc-border: var(--wc-logo-border);
    --wc-text: var(--wc-logo-text);
    --wc-muted: var(--wc-logo-muted);
    --wc-primary: var(--wc-logo-violet);
    --wc-primary-strong: var(--wc-logo-violet-strong);
    --wc-accent: var(--wc-logo-cyan);
    --wc-shadow: var(--wc-logo-shadow);
}

body {
    background:
        linear-gradient(120deg, rgba(169, 60, 255, 0.1) 0%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(240deg, rgba(0, 216, 255, 0.1) 0%, rgba(255, 255, 255, 0) 32%),
        linear-gradient(180deg, #fbfcff 0%, var(--wc-bg) 100%);
}

.wc-card,
.wc-panel,
.wc-hero,
.wc-table-wrap,
.wc-auth-card,
.wc-side-card,
.wc-docapi-card,
.wc-product-card,
.wc-catalog-card,
.wc-client-home-card,
.wc-free-tool-card,
.wc-free-tool__summary-card,
.wc-free-tool-entry,
.wc-product-detail-card,
.wc-product-buy-card,
.wc-cart-summary__card,
.wc-order-detail-card,
.wc-interaction-order-card,
.wc-dashboard-card,
.wc-dashboard-linkcard,
.wc-dashboard-home-notice-modal__support-card,
.wc-dashboard-wallet__stat,
.wc-payos-meta-card,
.wc-payos-history-card,
.wc-recharge-bankcard,
.wc-recharge-manualcard,
.wc-recharge-card-form,
.wc-recharge-card-preview {
    border-color: var(--wc-logo-border);
    background:
        linear-gradient(135deg, rgba(169, 60, 255, 0.08) 0%, rgba(255, 255, 255, 0) 36%),
        linear-gradient(225deg, rgba(0, 216, 255, 0.08) 0%, rgba(255, 255, 255, 0) 34%),
        rgba(255, 255, 255, 0.96);
    box-shadow: var(--wc-logo-shadow);
}

.wc-hero,
.wc-docapi-hero,
.wc-cart-hero {
    background:
        linear-gradient(120deg, rgba(0, 216, 255, 0.22) 0%, rgba(0, 216, 255, 0) 34%),
        linear-gradient(240deg, rgba(169, 60, 255, 0.28) 0%, rgba(169, 60, 255, 0) 38%),
        linear-gradient(135deg, #070a1f 0%, #15104a 54%, #4230c8 100%);
    color: #f7fbff;
    box-shadow: 0 28px 70px rgba(10, 14, 48, 0.22);
}

.wc-public-shell .wc-docapi-hero {
    background:
        linear-gradient(120deg, rgba(0, 216, 255, 0.22) 0%, rgba(0, 216, 255, 0) 34%),
        linear-gradient(240deg, rgba(169, 60, 255, 0.3) 0%, rgba(169, 60, 255, 0) 38%),
        linear-gradient(135deg, #070a1f 0%, #15104a 54%, #4230c8 100%);
    color: #f7fbff;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 70px rgba(10, 14, 48, 0.22);
}

.wc-public-shell .wc-docapi-hero h1 {
    color: #ffffff;
}

.wc-public-shell .wc-docapi-hero p,
.wc-public-shell .wc-docapi-workspace {
    color: rgba(247, 251, 255, 0.82);
}

.wc-public-shell .wc-docapi-hero__eyebrow,
.wc-public-shell .wc-docapi-chip {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
    color: rgba(247, 251, 255, 0.9);
}

.wc-header,
.wc-topbar,
.wc-dashboard-header,
.wc-dashboard-header-desktop,
.wc-footer,
.wc-dashboard-footer {
    border-color: var(--wc-logo-border);
}

.wc-header--shop,
.wc-dashboard-header-desktop,
.wc-dashboard-header,
.wc-footer,
.wc-dashboard-footer {
    background:
        linear-gradient(115deg, rgba(169, 60, 255, 0.08) 0%, rgba(255, 255, 255, 0) 36%),
        linear-gradient(245deg, rgba(0, 216, 255, 0.08) 0%, rgba(255, 255, 255, 0) 34%),
        rgba(255, 255, 255, 0.96);
}

.wc-logo img,
.wc-dashboard-footer__brand img {
    filter: drop-shadow(0 10px 18px rgba(169, 60, 255, 0.16)) drop-shadow(0 4px 10px rgba(0, 216, 255, 0.14));
}

.wc-nav a.is-active,
.wc-nav a:hover,
.wc-menu-link.is-active,
.wc-menu-link:hover,
.wc-account-menu__dropdown a:hover,
.wc-account-menu__dropdown button:hover,
.wc-drawer-link.is-active,
.wc-drawer-link:hover,
.wc-drawer-sublink.is-active,
.wc-drawer-sublink:hover,
.wc-drawer-subsection:hover,
.wc-side-menu a.is-active,
.wc-side-menu a:hover,
.wc-dashboard-linkcard.is-active {
    color: var(--wc-logo-violet-strong);
    background:
        linear-gradient(135deg, rgba(169, 60, 255, 0.11) 0%, rgba(0, 216, 255, 0.09) 100%);
    border-color: rgba(169, 60, 255, 0.22);
}

.wc-menu-link i,
.wc-menu-dropdown__icon,
.wc-drawer-link__icon,
.wc-drawer-sublink__icon,
.wc-drawer-subsection__icon,
.wc-dashboard-linkcard__icon,
.wc-dashboard-footer__item i,
.wc-support-links i {
    color: var(--wc-logo-violet-strong);
}

.wc-menu-dropdown,
.wc-account-menu__dropdown,
.wc-drawer__panel,
.wc-bottomdock,
.wc-order-tools__menu {
    border-color: var(--wc-logo-border);
    background:
        linear-gradient(135deg, rgba(169, 60, 255, 0.1) 0%, rgba(255, 255, 255, 0) 36%),
        linear-gradient(225deg, rgba(0, 216, 255, 0.1) 0%, rgba(255, 255, 255, 0) 34%),
        rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 56px rgba(17, 21, 61, 0.16);
}

.wc-menu-dropdown--services,
.wc-menu-dropdown--interaction2 {
    --wc-service-accent: var(--wc-logo-violet);
    --wc-service-accent-strong: var(--wc-logo-violet-strong);
    --wc-service-accent-soft: rgba(169, 60, 255, 0.18);
    --wc-service-accent-alt: var(--wc-logo-cyan);
    border-color: rgba(169, 60, 255, 0.18);
    background:
        linear-gradient(135deg, rgba(169, 60, 255, 0.12) 0%, rgba(255, 255, 255, 0) 38%),
        linear-gradient(225deg, rgba(0, 216, 255, 0.14) 0%, rgba(255, 255, 255, 0) 36%),
        rgba(255, 255, 255, 0.985);
}

.wc-menu-dropdown--services .wc-menu-dropdown__group,
.wc-menu-dropdown--services .wc-menu-dropdown__grouphead,
.wc-menu-dropdown--services .wc-menu-dropdown__link--nested {
    border-color: rgba(92, 107, 255, 0.14);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 255, 0.98) 100%);
}

.wc-menu-dropdown--services .wc-menu-dropdown__grouphead .wc-menu-dropdown__icon,
.wc-menu-dropdown--services .wc-menu-dropdown__link--nested:hover .wc-menu-dropdown__icon,
.wc-client-home-card__icon,
.wc-free-tool-card__icon,
.wc-bottomdock__primary-icon,
.wc-dashboard-card__line,
.wc-dashboard-wallet__line,
.wc-action-badge {
    background: linear-gradient(135deg, var(--wc-logo-violet) 0%, var(--wc-logo-blue) 52%, var(--wc-logo-cyan) 100%);
    color: #ffffff;
    box-shadow: var(--wc-logo-glow);
}

.wc-btn--primary,
.wc-catalog-card__action,
.wc-drawer-balance,
.wc-drawer-login,
.wc-recharge-card-form__submit,
.wc-interaction-builder__submit {
    background: linear-gradient(135deg, var(--wc-logo-violet) 0%, var(--wc-logo-blue) 55%, var(--wc-logo-cyan) 100%);
    color: #ffffff;
    box-shadow: var(--wc-logo-glow);
}

.wc-action-icon.is-active,
.wc-action-icon.has-items,
.wc-bottomdock a.is-active,
.wc-bottomdock button.is-active,
.wc-bottomdock a:hover,
.wc-bottomdock button:hover {
    color: var(--wc-logo-violet-strong);
    background:
        linear-gradient(135deg, rgba(169, 60, 255, 0.12) 0%, rgba(0, 216, 255, 0.1) 100%);
    box-shadow: inset 0 0 0 1px rgba(169, 60, 255, 0.14);
}

.wc-bottomdock__primary {
    color: #ffffff !important;
}

.wc-searchbar,
.wc-dashboard-field input,
.wc-field input,
.wc-field select,
.wc-field textarea {
    border-color: rgba(92, 107, 255, 0.14);
    background: rgba(255, 255, 255, 0.88);
}

.wc-searchbar:focus-within,
.wc-searchbar.is-suggest-open,
.wc-dashboard-field input:focus,
.wc-field input:focus,
.wc-field select:focus,
.wc-field textarea:focus {
    border-color: rgba(169, 60, 255, 0.36);
    box-shadow: 0 0 0 4px rgba(169, 60, 255, 0.12), 0 12px 28px rgba(0, 216, 255, 0.08);
}

.wc-searchbar__suggestions,
.wc-searchbar__suggestion {
    border-color: rgba(92, 107, 255, 0.14);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 255, 0.98) 100%);
}

.wc-searchbar__suggestions-head strong,
.wc-searchbar__suggestions-head a,
.wc-searchbar__suggestion-price,
.wc-dashboard-wallet__amount,
.wc-free-tool__status.is-ready,
.wc-link-inline {
    color: var(--wc-logo-violet-strong);
}

.wc-drawer-link.is-open,
.wc-drawer-submenu.is-open {
    background:
        linear-gradient(135deg, rgba(169, 60, 255, 0.1) 0%, rgba(0, 216, 255, 0.08) 100%);
}

.wc-drawer-link.is-open .wc-drawer-link__arrow {
    color: var(--wc-logo-violet-strong);
}

@media (max-width: 768px) {
    .wc-card,
    .wc-panel,
    .wc-product-card,
    .wc-catalog-card,
    .wc-client-home-card,
    .wc-dashboard-card,
    .wc-dashboard-linkcard,
    .wc-cart-summary__card {
        border-radius: 18px;
    }
}

/* Final logo-accent pass for legacy hard-coded green surfaces. */
.wc-public-shell .wc-topbar,
.wc-topbar--dashboard {
    background: linear-gradient(135deg, var(--wc-logo-ink) 0%, #24105f 48%, var(--wc-logo-violet) 100%);
    box-shadow: 0 12px 28px rgba(37, 43, 92, 0.16);
}

.wc-public-shell .wc-topbar,
.wc-public-shell .wc-topbar a,
.wc-public-shell .wc-topbar__inner,
.wc-topbar--dashboard,
.wc-topbar--dashboard a,
.wc-topbar__inner--dashboard {
    color: #ffffff;
}

.wc-public-shell .wc-topselect,
.wc-topbar--dashboard .wc-topselect {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.wc-public-shell .wc-topselect option,
.wc-topbar--dashboard .wc-topselect option {
    color: var(--wc-logo-text);
}

.wc-public-shell .wc-btn--primary,
.wc-recharge-filter__action--primary,
.wc-bottomdock__primary,
.wc-bottomdock__primary.is-active,
.wc-orders-tabs__link.is-active {
    background: linear-gradient(135deg, var(--wc-logo-violet) 0%, var(--wc-logo-blue) 54%, var(--wc-logo-cyan) 100%) !important;
    color: #ffffff !important;
    box-shadow: var(--wc-logo-glow);
}

.wc-catalog-card__action--disabled {
    background: #a6aeb8 !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.wc-home-stage__frame,
.wc-home-stage__content,
.wc-classic-panel,
.wc-public-shell .wc-section,
.wc-public-shell .wc-panel,
.wc-public-shell .wc-card,
.wc-public-shell .wc-product-card,
.wc-public-shell .wc-table-wrap,
.wc-cart-summary__rows .is-total,
.wc-orders-notice__box {
    border-color: var(--wc-logo-border);
    background:
        linear-gradient(135deg, rgba(169, 60, 255, 0.08) 0%, rgba(255, 255, 255, 0) 36%),
        linear-gradient(225deg, rgba(0, 216, 255, 0.08) 0%, rgba(255, 255, 255, 0) 34%),
        rgba(255, 255, 255, 0.96);
    box-shadow: var(--wc-logo-shadow);
}

.wc-public-shell .wc-pill,
.wc-searchbar__suggestion:hover,
.wc-cart-summary__hint {
    border-color: rgba(169, 60, 255, 0.18);
    background:
        linear-gradient(135deg, rgba(169, 60, 255, 0.1) 0%, rgba(0, 216, 255, 0.08) 100%);
    color: var(--wc-logo-violet-strong);
}

.wc-client-home-card:hover,
.wc-public-shell .wc-product-card:hover,
.wc-dashboard-linkcard.is-active,
.wc-orders-tabs__link:hover {
    border-color: rgba(169, 60, 255, 0.26);
    box-shadow: 0 18px 36px rgba(37, 43, 92, 0.13);
}

.wc-client-home-card__icon,
.wc-client-home-card:nth-child(2) .wc-client-home-card__icon,
.wc-client-home-card:nth-child(3) .wc-client-home-card__icon,
.wc-client-home-card:nth-child(4) .wc-client-home-card__icon,
.wc-client-home-card:nth-child(5) .wc-client-home-card__icon,
.wc-cart-empty__icon,
.wc-activity-hero__badge {
    background: linear-gradient(135deg, var(--wc-logo-violet) 0%, var(--wc-logo-blue) 54%, var(--wc-logo-cyan) 100%);
    color: #ffffff;
    box-shadow: var(--wc-logo-glow);
}

.wc-searchbar__suggestions-head strong,
.wc-searchbar__suggestions-head a,
.wc-searchbar__suggestion-price,
.wc-client-home-card small,
.wc-support-links i,
.wc-dashboard-wallet__amount,
.wc-dashboard-footer__item i,
.wc-orders-notice__box h3 i,
.wc-catalog-card__stock--ok,
.wc-cart-item__link {
    color: var(--wc-logo-violet-strong);
}

.wc-dashboard-card__line,
.wc-dashboard-wallet__line,
.wc-payos-notice::before {
    background: linear-gradient(135deg, var(--wc-logo-violet) 0%, var(--wc-logo-blue) 54%, var(--wc-logo-cyan) 100%);
}

.wc-free-tool,
.wc-activity-hero,
.wc-payos-notice {
    border-color: var(--wc-logo-border);
    background:
        linear-gradient(135deg, rgba(169, 60, 255, 0.08) 0%, rgba(255, 255, 255, 0) 36%),
        linear-gradient(225deg, rgba(0, 216, 255, 0.08) 0%, rgba(255, 255, 255, 0) 34%),
        rgba(255, 255, 255, 0.96);
}

.wc-client-home-hero {
    border-color: var(--wc-logo-border);
    background:
        linear-gradient(135deg, rgba(169, 60, 255, 0.08) 0%, rgba(255, 255, 255, 0) 38%),
        linear-gradient(225deg, rgba(0, 216, 255, 0.08) 0%, rgba(255, 255, 255, 0) 36%),
        rgba(255, 255, 255, 0.96);
    box-shadow: var(--wc-logo-shadow);
}

.wc-client-home-hero__eyebrow,
.wc-home-stats span,
.wc-client-home-hero__stats span {
    border-color: rgba(169, 60, 255, 0.18);
    background:
        linear-gradient(135deg, rgba(169, 60, 255, 0.11) 0%, rgba(0, 216, 255, 0.09) 100%);
    color: var(--wc-logo-violet-strong);
}

.wc-client-home-hero__stats strong,
.wc-home-stats strong {
    color: var(--wc-logo-violet-strong);
}

.wc-user-avatar {
    background: linear-gradient(135deg, var(--wc-logo-violet) 0%, var(--wc-logo-blue) 54%, var(--wc-logo-cyan) 100%);
    color: #ffffff;
    box-shadow: var(--wc-logo-glow);
}

html.wc-client-security-locked,
html.wc-client-security-locked body {
    overflow: hidden !important;
    user-select: none;
    pointer-events: none;
}

.wc-client-security-guard {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    pointer-events: auto;
}

.wc-client-security-guard.is-active {
    display: flex;
}

.wc-client-security-guard__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 18%, rgba(169, 60, 255, 0.2), transparent 32%),
        radial-gradient(circle at 78% 20%, rgba(0, 216, 255, 0.18), transparent 30%),
        rgba(7, 10, 32, 0.82);
    backdrop-filter: blur(14px);
}

.wc-client-security-guard__dialog {
    position: relative;
    width: min(520px, 100%);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(37, 43, 92, 0.96) 0%, rgba(61, 35, 128, 0.96) 52%, rgba(12, 85, 128, 0.94) 100%);
    color: #ffffff;
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
    text-align: center;
    pointer-events: auto;
}

.wc-client-security-guard__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--wc-logo-violet) 0%, var(--wc-logo-cyan) 100%);
    box-shadow: var(--wc-logo-glow);
    font-size: 24px;
}

.wc-client-security-guard__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.wc-client-security-guard__dialog h2 {
    margin: 16px 0 10px;
    font-size: 26px;
    line-height: 1.18;
}

.wc-client-security-guard__dialog p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.6;
}

.wc-client-security-guard__hint {
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.5;
}

.wc-public-shell--blogs .wc-floating-chat,
.wc-public-shell--blogs .wc-floating-support,
.wc-public-shell--blogs .wc-floating-scrolltop,
.wc-public-shell--blogs .wc-bottomdock,
.wc-public-shell--blog .wc-floating-chat,
.wc-public-shell--blog .wc-floating-support,
.wc-public-shell--blog .wc-floating-scrolltop,
.wc-public-shell--blog .wc-bottomdock,
.wc-public-shell--document-api .wc-floating-chat,
.wc-public-shell--document-api .wc-floating-support,
.wc-public-shell--document-api .wc-floating-scrolltop {
    display: none !important;
}

.wc-blog-hero,
.wc-blog-filter-panel,
.wc-blog-layout {
    margin-bottom: 16px;
}

.wc-blog-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: 24px;
    align-items: end;
    padding: 28px;
    border: 1px solid rgba(89, 120, 255, 0.16);
    border-radius: 18px;
    background:
        linear-gradient(120deg, rgba(0, 216, 255, 0.2) 0%, rgba(0, 216, 255, 0) 34%),
        linear-gradient(240deg, rgba(169, 60, 255, 0.2) 0%, rgba(169, 60, 255, 0) 36%),
        linear-gradient(135deg, #10152f 0%, #18205a 58%, #2659a7 100%);
    color: #ffffff;
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
}

.wc-blog-hero__content {
    display: grid;
    gap: 10px;
}

.wc-blog-hero__content > span {
    width: fit-content;
    min-height: 30px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.wc-blog-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.08;
}

.wc-blog-hero p {
    max-width: 68ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.7;
}

.wc-blog-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.wc-blog-hero__stats div {
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
}

.wc-blog-hero__stats strong,
.wc-blog-hero__stats span {
    display: block;
}

.wc-blog-hero__stats strong {
    color: #ffffff;
    font-size: 22px;
    line-height: 1.15;
}

.wc-blog-hero__stats span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 700;
}

.wc-blog-filter-panel,
.wc-blog-feed,
.wc-blog-sidebox {
    border: 1px solid rgba(92, 107, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 34px rgba(25, 32, 72, 0.08);
}

.wc-blog-filter-panel {
    padding: 14px;
}

.wc-blog-filter {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(150px, 0.22fr) minmax(140px, 0.18fr) auto;
    gap: 12px;
    align-items: end;
}

.wc-blog-filter label {
    display: grid;
    gap: 7px;
    margin: 0;
    color: #172033;
    font-size: 13px;
    font-weight: 800;
}

.wc-blog-filter input,
.wc-blog-filter select {
    width: 100%;
    min-height: 44px;
    padding: 0 13px;
    border: 1px solid rgba(92, 107, 255, 0.18);
    border-radius: 10px;
    background: #ffffff;
    color: #182235;
    font: inherit;
    font-weight: 600;
}

.wc-blog-filter input::placeholder {
    color: #8b96aa;
}

.wc-blog-filter input:focus,
.wc-blog-filter select:focus {
    border-color: rgba(37, 99, 235, 0.42);
    outline: 3px solid rgba(37, 99, 235, 0.1);
}

.wc-blog-filter__actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.wc-blog-filter__actions .wc-btn {
    min-height: 44px;
    white-space: nowrap;
}

.wc-blog-active-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 9px 11px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 10px;
    background: rgba(239, 246, 255, 0.88);
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 700;
}

.wc-blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
    gap: 16px;
    align-items: start;
}

.wc-blog-feed,
.wc-blog-sidebox {
    padding: 16px;
}

.wc-blog-feed__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.wc-blog-feed__head span {
    color: #6b7280;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.wc-blog-feed__head h2 {
    margin: 4px 0 0;
    color: #182235;
    font-size: 24px;
    line-height: 1.2;
}

.wc-blog-feed__head small {
    color: #64748b;
    font-weight: 800;
    white-space: nowrap;
}

.blog-list,
.wc-blog-list,
.wc-blog-sidebar,
.wc-blog-mini-list,
.wc-blog-categories {
    display: grid;
    gap: 12px;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wc-blog-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.wc-blog-list > .wc-empty {
    grid-column: 1 / -1;
}

.blog-card,
.wc-blog-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.05);
}

.wc-blog-card.is-featured {
    border-color: rgba(37, 99, 235, 0.18);
    background:
        linear-gradient(135deg, rgba(239, 246, 255, 0.88) 0%, rgba(255, 255, 255, 0.96) 46%),
        #ffffff;
}

.wc-blog-card .post-thumbnail,
.wc-blog-card__media {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eef2ff;
    color: #4f46e5;
}

.wc-blog-card__media-link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.wc-blog-card .post-thumbnail img,
.wc-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wc-blog-card__badge {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    width: fit-content;
    max-width: 100%;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.86);
    color: #ffffff;
    font-size: 12px;
    font-weight: 850;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.22);
}

.wc-blog-card__badge i {
    font-size: 11px;
}

.wc-blog-card .post-content,
.wc-blog-card__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: auto;
    padding: 15px;
}

.wc-blog-card__meta,
.wc-blog-card__foot {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
}

.wc-blog-card__meta span,
.wc-blog-card__foot span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.wc-blog-chip {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    width: fit-content;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.wc-blog-card__title {
    display: block;
    color: #111827;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.35;
    overflow-wrap: anywhere;
    white-space: normal;
    text-decoration: none;
}

.wc-blog-card__title:hover,
.wc-blog-mini:hover strong {
    color: #4f46e5;
}

.wc-blog-card p {
    display: block;
    margin: 0;
    color: #526071;
    font-size: 13px;
    line-height: 1.58;
    overflow: visible;
    overflow-wrap: anywhere;
    white-space: normal;
}

.wc-blog-card__foot {
    margin-top: 0;
}

.wc-blog-card__foot > a {
    margin-left: auto;
    color: #2563eb;
    font-weight: 800;
    text-decoration: none;
}

.wc-blog-sidebox__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.wc-blog-sidebox__head i {
    color: #4f46e5;
}

.wc-blog-sidebox__head h3 {
    margin: 0;
    color: #182235;
    font-size: 17px;
}

.wc-blog-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 42px;
    padding: 0 11px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    color: #334155;
    text-decoration: none;
    font-weight: 800;
}

.wc-blog-category em {
    color: #64748b;
    font-style: normal;
    font-size: 12px;
}

.wc-blog-category:hover,
.wc-blog-category.is-active {
    border-color: rgba(79, 70, 229, 0.22);
    background: rgba(238, 242, 255, 0.78);
    color: #4338ca;
}

.wc-blog-mini {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: inherit;
    text-decoration: none;
}

.wc-blog-mini__thumb,
.wc-blog-mini__fallback {
    flex: 0 0 78px;
    width: 78px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
    background: #eef2ff;
}

.wc-blog-mini__thumb img,
.wc-blog-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wc-blog-mini__fallback {
    display: grid;
    place-items: center;
    color: #4f46e5;
}

.wc-blog-mini__content {
    min-width: 0;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 4px;
}

.wc-blog-mini em {
    color: #64748b;
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}

.wc-blog-mini strong {
    display: block;
    color: #172033;
    font-size: 13px;
    line-height: 1.38;
    overflow: visible;
    overflow-wrap: anywhere;
    white-space: normal;
}

.wc-blog-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 16px;
}

.wc-blog-pagination__link,
.wc-blog-pagination__ellipsis {
    min-width: 38px;
    min-height: 36px;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.wc-blog-pagination__link:hover,
.wc-blog-pagination__link.is-active {
    border-color: rgba(79, 70, 229, 0.28);
    background: #eef2ff;
    color: #4338ca;
}

.wc-blog-pagination__link.is-control {
    min-width: 66px;
}

.wc-blog-pagination__ellipsis {
    border-color: transparent;
    background: transparent;
    color: #94a3b8;
}

.wc-blog-detail > img {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    border-radius: 14px;
}

.wc-blog-detail__content {
    color: #1f2937;
    font-size: 16px;
    line-height: 1.78;
}

.wc-blog-detail__content h2,
.wc-blog-detail__content h3 {
    color: #111827;
    line-height: 1.28;
}

.wc-blog-detail__content h2 {
    margin: 34px 0 12px;
    font-size: 26px;
}

.wc-blog-detail__content h3 {
    margin: 24px 0 10px;
    font-size: 20px;
}

.wc-blog-detail__content p,
.wc-blog-detail__content ul,
.wc-blog-detail__content ol {
    margin: 0 0 16px;
}

.shoptd-article-toc,
.shoptd-article-note,
.shoptd-article-faq {
    margin: 22px 0;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #f8fafc;
}

.shoptd-article-toc strong,
.shoptd-article-note strong {
    display: block;
    margin-bottom: 10px;
    color: #111827;
    font-size: 15px;
}

.shoptd-article-toc ol {
    margin-bottom: 0;
    padding-left: 20px;
}

.shoptd-article-toc a {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

.shoptd-article-figure {
    width: 100%;
    margin: 28px 0;
    overflow: hidden;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.shoptd-article-figure picture {
    display: block;
    width: 100%;
    background: #f8fafc;
}

.shoptd-article-figure img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(72vh, 720px);
    object-fit: contain;
    object-position: top center;
    background: #f8fafc;
}

.shoptd-article-figure figcaption {
    margin: 0;
    padding: 11px 14px 12px;
    border-top: 1px solid #e5e7eb;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
}

.wc-blog-detail-side {
    align-self: start;
    position: sticky;
    top: 96px;
}

@media (max-width: 1100px) {
    .wc-blog-layout {
        grid-template-columns: 1fr;
    }

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

    .wc-blog-detail-side {
        position: static;
    }
}

@media (max-width: 900px) {
    .wc-public-shell--blogs .wc-main--shop,
    .wc-public-shell--blog .wc-main--shop {
        padding-bottom: 32px;
    }

    .wc-blog-hero {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
        border-radius: 16px;
    }

    .wc-blog-hero h1 {
        font-size: 30px;
    }

    .wc-blog-hero p {
        font-size: 14px;
    }

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

    .wc-blog-hero__stats div {
        padding: 11px;
    }

    .wc-blog-hero__stats strong {
        font-size: 18px;
    }

    .wc-blog-filter {
        grid-template-columns: 1fr 1fr;
    }

    .wc-blog-filter__search,
    .wc-blog-filter__actions {
        grid-column: 1 / -1;
    }

    .wc-blog-filter__actions .wc-btn {
        flex: 1;
    }

    .wc-blog-sidebar {
        grid-template-columns: 1fr;
    }

    .wc-blog-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .wc-blog-card__media {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 640px) {
    .wc-blog-hero,
    .wc-blog-filter-panel,
    .wc-blog-feed,
    .wc-blog-sidebox {
        border-radius: 14px;
    }

    .wc-blog-hero {
        padding: 16px;
    }

    .wc-blog-hero h1 {
        font-size: 26px;
    }

    .wc-blog-hero__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
    }

    .wc-blog-hero__stats div {
        display: block;
        padding: 9px 8px;
    }

    .wc-blog-hero__stats span {
        margin-top: 4px;
        font-size: 11px;
    }

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

    .wc-blog-filter__actions {
        flex-direction: row;
        align-items: stretch;
    }

    .wc-blog-filter input,
    .wc-blog-filter select,
    .wc-blog-filter__actions .wc-btn {
        min-height: 40px;
    }

    .wc-blog-feed,
    .wc-blog-sidebox,
    .wc-blog-filter-panel {
        padding: 12px;
    }

    .wc-blog-feed__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .wc-blog-feed__head h2 {
        font-size: 22px;
    }

    .wc-blog-card__body {
        padding: 14px;
    }

    .wc-blog-card__title {
        font-size: 18px;
    }

    .wc-blog-list {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .wc-blog-card__foot > a {
        width: 100%;
        margin-left: 0;
    }

    .shoptd-article-figure {
        margin: 20px 0;
        border-radius: 12px;
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    }

    .shoptd-article-figure img {
        max-height: none;
    }

    .shoptd-article-figure figcaption {
        padding: 10px 12px;
        font-size: 12px;
    }

    .wc-blog-pagination {
        justify-content: center;
    }
}

@media (min-width: 901px) {
    .wc-public-shell--document-api .wc-docapi-shell {
        grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
        gap: 16px;
    }

    .wc-public-shell--document-api .wc-docapi-summary {
        gap: 14px;
    }

    .wc-public-shell--document-api .wc-docapi-endpoints,
    .wc-public-shell--document-api .wc-docapi-example__body.has-response,
    .wc-public-shell--document-api .wc-docapi-statuses {
        grid-template-columns: 1fr;
    }

    .wc-public-shell--document-api .wc-docapi-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wc-public-shell--document-api .wc-docapi-endpoint__body {
        grid-template-columns: 1fr;
    }

    .wc-public-shell--document-api .wc-docapi-responsepane {
        border-top: 1px solid #e5e7eb;
        border-left: 0;
    }

    .wc-public-shell--document-api .wc-docapi-requestpane,
    .wc-public-shell--document-api .wc-docapi-responsepane {
        padding: 18px 20px 20px;
    }

    .wc-public-shell--document-api .wc-docapi-paramtable {
        display: grid;
        gap: 10px;
        overflow: visible;
        border: 0;
    }

    .wc-public-shell--document-api .wc-docapi-paramtable__head {
        display: none;
    }

    .wc-public-shell--document-api .wc-docapi-paramtable__row {
        grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
        gap: 10px 16px;
        padding: 12px 14px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        background: #ffffff;
    }

    .wc-public-shell--document-api .wc-docapi-paramtable__row:first-child {
        border-top: 1px solid #e5e7eb;
    }

    .wc-public-shell--document-api .wc-docapi-paramtable__row [data-docapi-label]::before {
        content: attr(data-docapi-label);
        display: block;
        margin-bottom: 4px;
        color: #6b7280;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .wc-public-shell--document-api .wc-docapi-paramtable p {
        max-width: 72ch;
    }

    .wc-public-shell--document-api .wc-docapi-code {
        max-height: 540px;
    }
}

@media (max-width: 900px) {
    .wc-public-shell--document-api .wc-main--shop {
        padding-bottom: 28px;
    }

    .wc-public-shell--document-api .wc-docapi-hero {
        padding: 16px 14px !important;
        border-radius: 16px;
    }

    .wc-public-shell--document-api .wc-docapi-hero__content {
        gap: 8px;
    }

    .wc-public-shell--document-api .wc-docapi-hero__eyebrow {
        padding: 5px 9px;
        font-size: 10px;
        letter-spacing: 0.07em;
    }

    .wc-public-shell--document-api .wc-docapi-hero h1 {
        margin: 0;
        font-size: 24px;
        line-height: 1.16;
    }

    .wc-public-shell--document-api .wc-docapi-hero p {
        font-size: 13px;
        line-height: 1.5;
    }

    .wc-public-shell--document-api .wc-docapi-workspace,
    .wc-public-shell--document-api .wc-docapi-chiprow,
    .wc-public-shell--document-api .wc-docapi-actions {
        display: none !important;
    }

    .wc-public-shell--document-api .wc-docapi-router {
        position: static !important;
        top: auto;
        z-index: auto;
        margin: 8px 0 12px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent !important;
        box-shadow: none;
        backdrop-filter: none;
    }

    .wc-public-shell--document-api .wc-docapi-router__inner {
        gap: 0;
        padding: 8px !important;
        border-radius: 12px;
    }

    .wc-public-shell--document-api .wc-docapi-router__label {
        display: none;
    }

    .wc-public-shell--document-api .wc-docapi-tabs {
        flex-wrap: nowrap;
        gap: 6px;
        overflow-x: auto;
        padding-bottom: 0;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .wc-public-shell--document-api .wc-docapi-tabs::-webkit-scrollbar,
    .wc-public-shell--document-api .wc-docapi-example-tabs__bar::-webkit-scrollbar {
        display: none;
    }

    .wc-public-shell--document-api .wc-docapi-tabs a {
        flex: 0 0 auto;
        min-height: 38px;
        padding: 0 10px;
        border-radius: 10px;
        font-size: 12px;
        white-space: nowrap;
    }

    .wc-public-shell--document-api .wc-docapi-shell {
        display: block;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .wc-public-shell--document-api .wc-docapi-summary,
    .wc-public-shell--document-api .wc-bottomdock {
        display: none !important;
    }

    .wc-public-shell--document-api .wc-docapi-section {
        gap: 12px;
        padding: 14px !important;
        border-radius: 16px;
    }

    .wc-public-shell--document-api .wc-docapi-section > .wc-section__head {
        align-items: flex-start;
        margin-bottom: 4px;
    }

    .wc-public-shell--document-api .wc-docapi-section > .wc-section__head h2 {
        font-size: 19px;
        line-height: 1.25;
    }

    .wc-public-shell--document-api .wc-docapi-section > .wc-section__head p {
        display: none;
    }

    .wc-public-shell--document-api .wc-docapi-endpoints,
    .wc-public-shell--document-api .wc-docapi-examples,
    .wc-public-shell--document-api .wc-docapi-example-tabs {
        gap: 10px;
    }

    .wc-public-shell--document-api .wc-docapi-endpoint {
        border-radius: 14px;
    }

    .wc-public-shell--document-api .wc-docapi-endpoint__head {
        gap: 10px;
        padding: 14px 12px 0;
    }

    .wc-public-shell--document-api .wc-docapi-endpoint__head h3 {
        margin-top: 6px;
        font-size: 16px;
        line-height: 1.3;
    }

    .wc-public-shell--document-api .wc-docapi-endpoint__head p {
        font-size: 13px;
        line-height: 1.55;
    }

    .wc-public-shell--document-api .wc-docapi-channel {
        display: none;
    }

    .wc-public-shell--document-api .wc-docapi-requestbar {
        margin: 0 12px;
        padding: 8px;
        gap: 8px;
    }

    .wc-public-shell--document-api .wc-docapi-requestbar code,
    .wc-public-shell--document-api .wc-docapi-paramtable code {
        font-size: 12px;
    }

    .wc-public-shell--document-api .wc-docapi-requestpane,
    .wc-public-shell--document-api .wc-docapi-responsepane {
        padding: 12px;
    }

    .wc-public-shell--document-api .wc-docapi-panehead {
        gap: 12px;
        min-height: 30px;
        margin-bottom: 10px;
    }

    .wc-public-shell--document-api .wc-docapi-panehead span {
        min-height: 30px;
        font-size: 12px;
    }

    .wc-public-shell--document-api .wc-docapi-paramtable__row {
        gap: 6px;
        padding: 9px 10px;
    }

    .wc-public-shell--document-api .wc-docapi-notes {
        margin-top: 10px;
        padding: 10px 11px;
        font-size: 12px;
    }

    .wc-public-shell--document-api .wc-docapi-code {
        max-height: 260px;
        padding: 12px;
        font-size: 11px;
        line-height: 1.58;
    }

    .wc-public-shell--document-api .wc-docapi-example {
        gap: 10px;
        padding: 14px;
        border-radius: 14px;
    }

    .wc-public-shell--document-api .wc-docapi-example__head {
        gap: 8px;
    }

    .wc-public-shell--document-api .wc-docapi-example__head h3 {
        font-size: 16px;
    }

    .wc-public-shell--document-api .wc-docapi-example__head p {
        display: none;
    }

    .wc-public-shell--document-api .wc-docapi-example-tabs__bar {
        gap: 5px;
        overflow-x: auto;
        padding: 5px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .wc-public-shell--document-api .wc-docapi-example-tabs__bar button {
        min-height: 34px;
        padding: 0 10px;
        font-size: 12px;
    }

    .wc-public-shell--document-api .wc-docapi-example-tabs__bar button em {
        display: none;
    }

    .wc-public-shell--document-api .wc-footer__inner {
        padding-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .wc-public-shell--document-api .wc-floating-chat:not(.is-open),
    .wc-public-shell--document-api .wc-floating-support,
    .wc-public-shell--document-api .wc-floating-scrolltop {
        display: none;
    }

    .wc-floating-chat:not(.is-open) .wc-floating-chat__teaser {
        display: none;
    }

    .wc-client-security-guard__dialog {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .wc-client-security-guard__dialog h2 {
        font-size: 22px;
    }
}

.wc-pagination {
    display: grid;
    gap: 8px;
}

.wc-pagination__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.wc-pagination .wc-pagination__link,
.wc-pagination__ellipsis {
    min-width: 40px;
    min-height: 40px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.wc-pagination .wc-pagination__link {
    padding: 0 13px;
    transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.wc-pagination .wc-pagination__link:hover {
    transform: translateY(-1px);
}

.wc-pagination .wc-pagination__link.is-active,
.wc-public-shell .wc-pagination .wc-pagination__link.is-active {
    background: var(--wc-primary);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(15, 122, 84, 0.24), 0 0 0 1px rgba(15, 122, 84, 0.28);
}

.wc-pagination .wc-pagination__link.is-disabled {
    cursor: default;
    opacity: 0.52;
    transform: none;
}

.wc-pagination__link--control {
    min-width: 86px;
}

.wc-pagination__ellipsis {
    display: inline-flex;
    color: var(--wc-muted);
    font-size: 13px;
    font-weight: 700;
}

.wc-pagination__summary {
    color: var(--wc-muted);
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 640px) {
    .wc-pagination__list {
        justify-content: center;
        gap: 7px;
    }

    .wc-pagination__summary {
        text-align: center;
    }
}

/* Bank transfer withdrawal experience */
.wc-bank-transfer-grid {
    align-items: start;
}

.wc-bank-transfer-setup,
.wc-bank-transfer-panel {
    position: relative;
    overflow: hidden;
}

.wc-bank-transfer-setup::before,
.wc-bank-transfer-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 0%, rgba(169, 60, 255, 0.16), transparent 28%),
        radial-gradient(circle at 96% 12%, rgba(0, 216, 255, 0.16), transparent 30%);
}

.wc-bank-transfer-setup > *,
.wc-bank-transfer-panel > * {
    position: relative;
    z-index: 1;
}

.wc-bank-transfer-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(170px, 230px);
    align-items: stretch;
    gap: 16px;
    margin-bottom: 16px;
}

.wc-bank-transfer-hero__copy {
    display: grid;
    align-content: start;
    gap: 10px;
}

.wc-bank-transfer-eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(169, 60, 255, 0.18);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(169, 60, 255, 0.12), rgba(0, 216, 255, 0.12));
    color: var(--wc-logo-violet-strong);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.wc-bank-transfer-hero h2 {
    margin: 0;
    color: var(--wc-logo-text);
    font-size: 24px;
    line-height: 1.15;
}

.wc-bank-transfer-hero p {
    margin: 0;
    color: var(--wc-logo-muted);
    font-size: 14px;
    line-height: 1.6;
}

.wc-bank-transfer-balance {
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 6px;
    min-height: 132px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(7, 10, 31, 0.94) 0%, rgba(36, 16, 95, 0.94) 54%, rgba(75, 125, 255, 0.92) 100%);
    color: #ffffff;
    box-shadow: var(--wc-logo-glow);
}

.wc-bank-transfer-balance span,
.wc-bank-transfer-balance small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 750;
}

.wc-bank-transfer-balance strong {
    color: #ffffff;
    font-size: 24px;
    line-height: 1.1;
    word-break: break-word;
}

.wc-bank-transfer-account {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
    padding: 16px;
    border: 1px solid rgba(92, 107, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 32px rgba(37, 43, 92, 0.08);
}

.wc-bank-transfer-account__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--wc-logo-violet) 0%, var(--wc-logo-blue) 55%, var(--wc-logo-cyan) 100%);
    color: #ffffff;
    box-shadow: var(--wc-logo-glow);
    font-size: 20px;
}

.wc-bank-transfer-account__body {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.wc-bank-transfer-account__body span {
    color: var(--wc-logo-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.wc-bank-transfer-account__body strong {
    color: var(--wc-logo-text);
    font-size: 16px;
    line-height: 1.25;
}

.wc-bank-transfer-account__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.wc-bank-transfer-account__meta code,
.wc-bank-transfer-account__meta em {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(169, 60, 255, 0.09);
    color: var(--wc-logo-text);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    word-break: break-word;
}

.wc-bank-transfer-account.is-empty {
    border-style: dashed;
    background: rgba(248, 250, 255, 0.78);
}

.wc-bank-transfer-account.is-empty .wc-bank-transfer-account__icon {
    background: linear-gradient(135deg, rgba(101, 113, 142, 0.92), rgba(75, 125, 255, 0.86));
}

.wc-bank-transfer-form {
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(169, 60, 255, 0.08), rgba(255, 255, 255, 0) 36%),
        linear-gradient(225deg, rgba(0, 216, 255, 0.08), rgba(255, 255, 255, 0) 34%),
        rgba(255, 255, 255, 0.9);
}

.wc-bank-transfer-amount input {
    min-height: 54px;
    border-color: rgba(169, 60, 255, 0.24);
    background: rgba(255, 255, 255, 0.96);
    color: var(--wc-logo-text);
    font-size: 20px;
    font-weight: 850;
}

.wc-bank-transfer-process {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wc-bank-transfer-process li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px 12px;
    align-items: center;
    min-height: 58px;
    padding: 10px 12px;
    border: 1px solid rgba(92, 107, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
}

.wc-bank-transfer-process li span {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--wc-logo-violet) 0%, var(--wc-logo-blue) 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.wc-bank-transfer-process li strong {
    color: var(--wc-logo-text);
    font-size: 13px;
    line-height: 1.2;
}

.wc-bank-transfer-process li em {
    color: var(--wc-logo-muted);
    font-size: 12px;
    font-style: normal;
    line-height: 1.45;
}

.wc-bank-transfer-note {
    margin: 12px 0 0;
    color: var(--wc-logo-muted);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.55;
}

.wc-bank-transfer-submit {
    min-height: 54px;
    border-radius: 16px;
    text-transform: none;
}

.wc-affiliate-demo-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 168px;
    gap: 18px;
    align-items: stretch;
    margin-top: 14px;
    padding: 18px;
    min-height: 168px;
    overflow: hidden;
    border: 1px solid rgba(45, 114, 255, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(24, 178, 68, 0.13) 0%, rgba(255, 255, 255, 0) 44%),
        linear-gradient(225deg, rgba(45, 114, 255, 0.12) 0%, rgba(255, 255, 255, 0) 46%),
        #f9fcff;
    box-shadow: 0 16px 34px rgba(28, 38, 52, 0.1);
}

.wc-affiliate-demo-banner__content {
    display: grid;
    align-content: center;
    gap: 10px;
    min-width: 0;
}

.wc-affiliate-demo-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(24, 178, 68, 0.1);
    color: #129d3c;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.wc-affiliate-demo-banner__content strong {
    color: #17223a;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 900;
    line-height: 1.12;
}

.wc-affiliate-demo-banner__content p {
    max-width: 680px;
    margin: 0;
    color: #516078;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.55;
}

.wc-affiliate-demo-banner__content code {
    display: block;
    max-width: 100%;
    width: fit-content;
    padding: 8px 10px;
    overflow: hidden;
    border: 1px solid rgba(45, 114, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.84);
    color: #2456d6;
    font-family: "Plus Jakarta Sans", "Be Vietnam Pro", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wc-affiliate-demo-banner__visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 132px;
    border: 1px solid rgba(24, 178, 68, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, #18b244 0%, #2d72ff 72%, #ff9d42 100%);
    color: #ffffff;
}

.wc-affiliate-demo-banner__visual i {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 28px;
}

.wc-affiliate-demo-banner__badge,
.wc-affiliate-demo-banner__visual em {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #17223a;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}

.wc-affiliate-demo-banner__badge {
    top: 12px;
    left: 12px;
}

.wc-affiliate-demo-banner__visual em {
    right: 12px;
    bottom: 12px;
}

.wc-card-exchange-page[data-card-exchange-tab="withdraw"] .wc-orders-titlebar,
.wc-affiliate-page .wc-orders-titlebar {
    background:
        linear-gradient(135deg, var(--wc-logo-violet) 0%, var(--wc-logo-blue) 54%, var(--wc-logo-cyan) 100%);
    color: #ffffff;
    box-shadow: var(--wc-logo-glow);
}

@media (max-width: 900px) {
    .wc-bank-transfer-hero {
        grid-template-columns: 1fr;
    }

    .wc-bank-transfer-balance {
        min-height: 112px;
    }

    .wc-affiliate-demo-banner {
        grid-template-columns: 1fr;
    }

    .wc-affiliate-demo-banner__visual {
        min-height: 96px;
    }
}

@media (max-width: 640px) {
    .wc-bank-transfer-account {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
    }

    .wc-bank-transfer-account__icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 18px;
    }

    .wc-bank-transfer-hero h2 {
        font-size: 21px;
    }

    .wc-bank-transfer-balance strong {
        font-size: 22px;
    }

    .wc-bank-transfer-process li {
        grid-template-columns: 30px minmax(0, 1fr);
        padding: 10px;
    }

    .wc-bank-transfer-process li span {
        width: 30px;
        height: 30px;
    }

    .wc-affiliate-demo-banner {
        padding: 14px;
        min-height: 0;
    }

    .wc-affiliate-demo-banner__content strong {
        font-size: 22px;
    }

    .wc-affiliate-demo-banner__content p {
        font-size: 13px;
    }

    .wc-affiliate-demo-banner__content code {
        width: 100%;
    }
}
