.wc-widget {
    --wc-accent: #8e3d68;
    --wc-accent-dark: #6f294f;
    --wc-accent-soft: #f8edf3;
    --wc-success: #287a52;
    --wc-success-soft: #e9f6ef;
    --wc-warning: #8a5b12;
    --wc-warning-soft: #fff7df;
    --wc-danger: #a33c3c;
    --wc-danger-soft: #fff0f0;
    --wc-info: #356a91;
    --wc-info-soft: #edf6fc;
    --wc-text: #2f2430;
    --wc-muted: #706770;
    --wc-border: #e8dfe5;
    --wc-surface: #ffffff;
    --wc-surface-soft: #faf7f9;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin: 14px 0;
    padding: 18px;
    overflow: hidden;
    color: var(--wc-text);
    font: inherit;
    line-height: 1.45;
    background: var(--wc-surface);
    border: 1px solid var(--wc-border);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(63, 35, 51, 0.07);
}

.wc-widget *,
.wc-widget *::before,
.wc-widget *::after {
    box-sizing: border-box;
}

.wc-widget [hidden] {
    display: none !important;
}

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

.wc-widget__heading {
    min-width: 0;
}

.wc-widget__eyebrow {
    margin: 0 0 4px;
    color: var(--wc-accent);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-widget__title {
    margin: 0;
    color: var(--wc-text);
    font: inherit;
    font-size: clamp(23px, 3vw, 28px);
    font-weight: 750;
    line-height: 1.15;
}

.wc-widget__intro {
    max-width: 650px;
    margin: 7px 0 0;
    color: var(--wc-muted);
    font-size: 13px;
}

.wc-widget__intro strong {
    color: var(--wc-text);
}

.wc-status {
    flex: 0 0 auto;
    max-width: 230px;
    padding: 6px 9px;
    color: var(--wc-accent-dark);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    background: var(--wc-accent-soft);
    border-radius: 999px;
}

.wc-widget[data-wc-tone="success"] .wc-status,
.wc-widget[data-wc-tone="positive"] .wc-status,
.wc-widget[data-wc-tone="green"] .wc-status {
    color: var(--wc-success);
    background: var(--wc-success-soft);
}

.wc-widget[data-wc-tone="warning"] .wc-status,
.wc-widget[data-wc-tone="attention"] .wc-status,
.wc-widget[data-wc-tone="yellow"] .wc-status {
    color: var(--wc-warning);
    background: var(--wc-warning-soft);
}

.wc-widget[data-wc-tone="danger"] .wc-status,
.wc-widget[data-wc-tone="negative"] .wc-status,
.wc-widget[data-wc-tone="red"] .wc-status {
    color: var(--wc-danger);
    background: var(--wc-danger-soft);
}

.wc-widget[data-wc-tone="info"] .wc-status,
.wc-widget[data-wc-tone="blue"] .wc-status {
    color: var(--wc-info);
    background: var(--wc-info-soft);
}

.wc-progress-card {
    margin-top: 14px;
    padding: 13px;
    background: var(--wc-surface-soft);
    border: 1px solid var(--wc-border);
    border-radius: 12px;
}

.wc-progress-card__topline {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 7px;
}

.wc-progress-card__label {
    color: var(--wc-muted);
    font-size: 13px;
    font-weight: 650;
}

.wc-progress-card__percent {
    color: var(--wc-accent-dark);
    font-size: 17px;
}

.wc-progress {
    display: block;
    width: 100%;
    height: 10px;
    overflow: hidden;
    appearance: none;
    color: var(--wc-accent);
    background: #eadfe5;
    border: 0;
    border-radius: 999px;
}

.wc-progress::-webkit-progress-bar {
    background: #eadfe5;
    border-radius: 999px;
}

.wc-progress::-webkit-progress-value {
    background: linear-gradient(90deg, var(--wc-accent), #bd638e);
    border-radius: 999px;
    transition: width 280ms ease;
}

.wc-progress::-moz-progress-bar {
    background: linear-gradient(90deg, var(--wc-accent), #bd638e);
    border-radius: 999px;
    transition: width 280ms ease;
}

.wc-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin: 10px 0 0;
}

.wc-metric {
    min-width: 0;
    padding: 8px;
    background: var(--wc-surface);
    border-radius: 11px;
}

.wc-metric dt {
    margin: 0 0 2px;
    color: var(--wc-muted);
    font-size: 10.5px;
}

.wc-metric dd {
    margin: 0;
    overflow-wrap: anywhere;
    color: var(--wc-text);
    font-size: 15px;
    font-weight: 750;
}

.wc-price {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
    gap: 10px;
    margin-top: 12px;
    padding: 12px;
    color: var(--wc-text);
    background: #fff;
    border: 1px solid var(--wc-border);
    border-radius: 12px;
}

.wc-price > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.wc-price__label {
    color: var(--wc-muted);
    font-size: 11px;
    line-height: 1.3;
}

.wc-price__base {
    color: var(--wc-text);
    font-size: 14px;
    font-weight: 650;
}

.wc-price__cut,
.wc-price__total {
    overflow-wrap: anywhere;
    color: var(--wc-accent-dark);
    font-size: 16px;
}

.wc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin-top: 13px;
    color: var(--wc-muted);
    font-size: 12px;
}

.wc-cut-summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2px 10px;
    align-items: baseline;
    margin-top: 10px;
    padding: 10px 11px;
    background: var(--wc-surface);
    border: 1px solid var(--wc-border);
    border-radius: 10px;
}

.wc-cut-summary__label {
    color: var(--wc-muted);
    font-size: 11px;
    font-weight: 650;
}

.wc-cut-summary__value {
    color: var(--wc-accent-dark);
    font-size: 16px;
    font-variant-numeric: tabular-nums;
    overflow-wrap: anywhere;
    text-align: right;
}

.wc-cut-summary__hint {
    grid-column: 1 / -1;
    color: var(--wc-muted);
    font-size: 10.5px;
}

.wc-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.wc-meta__item::before {
    width: 5px;
    height: 5px;
    content: "";
    background: var(--wc-accent);
    border-radius: 50%;
}

.wc-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
    padding: 12px 14px;
    font-size: 13px;
    border-radius: 12px;
}

.wc-notice--warning {
    color: var(--wc-warning);
    background: var(--wc-warning-soft);
    border: 1px solid #f1d89a;
}

.wc-notice__icon {
    display: inline-grid;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    place-items: center;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid currentColor;
    border-radius: 50%;
}

.wc-how {
    margin-top: 18px;
}

.wc-how__title {
    margin: 0 0 13px;
    color: var(--wc-text);
    font: inherit;
    font-size: 16px;
    font-weight: 750;
}

.wc-stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wc-stage {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
    padding: 12px;
    background: var(--wc-surface-soft);
    border: 1px solid var(--wc-border);
    border-radius: 12px;
}

.wc-stage__number {
    display: inline-grid;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    place-items: center;
    color: var(--wc-muted);
    font-size: 13px;
    font-weight: 800;
    background: var(--wc-surface);
    border: 1px solid var(--wc-border);
    border-radius: 50%;
}

.wc-stage__body {
    display: block;
    min-width: 0;
}

.wc-stage__body strong,
.wc-stage__body span {
    display: block;
}

.wc-stage__body strong {
    color: var(--wc-text);
    font-size: 13px;
    line-height: 1.3;
}

.wc-stage__body span {
    margin-top: 4px;
    color: var(--wc-muted);
    font-size: 11px;
    line-height: 1.4;
}

.wc-stage--current {
    background: var(--wc-accent-soft);
    border-color: #d9a9c1;
}

.wc-stage--current .wc-stage__number {
    color: #ffffff;
    background: var(--wc-accent);
    border-color: var(--wc-accent);
}

.wc-stage--done .wc-stage__number {
    color: transparent;
    background: var(--wc-success-soft);
    border-color: #a8d8be;
}

.wc-stage--done .wc-stage__number::after {
    color: var(--wc-success);
    content: "✓";
}

.wc-stage--upcoming {
    opacity: 0.72;
}

.wc-action {
    margin-top: 13px;
    padding: 13px;
    background: var(--wc-surface-soft);
    border-radius: 12px;
}

.wc-current {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2px 14px;
    margin-bottom: 14px;
    padding: 12px 14px;
    background: var(--wc-success-soft);
    border: 1px solid #b9ddc9;
    border-radius: 11px;
}

.wc-current__label {
    color: var(--wc-success);
    font-size: 13px;
    font-weight: 650;
}

.wc-current__value {
    grid-row: span 2;
    align-self: center;
    color: var(--wc-success);
    font-size: 18px;
}

.wc-current__hint {
    color: var(--wc-muted);
    font-size: 11px;
}

.wc-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    align-items: end;
}

.wc-field,
.wc-field__label,
.wc-field__hint {
    display: block;
}

.wc-field__label {
    margin-bottom: 6px;
    color: var(--wc-text);
    font-size: 13px;
    font-weight: 700;
}

.wc-field__control {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: var(--wc-surface);
    border: 1px solid #cfc2ca;
    border-radius: 10px;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.wc-field__control:focus-within {
    border-color: var(--wc-accent);
    box-shadow: 0 0 0 3px rgba(142, 61, 104, 0.14);
}

.wc-input {
    width: 100%;
    min-width: 0;
    height: 44px;
    padding: 8px 11px;
    color: var(--wc-text);
    font: inherit;
    font-size: 16px;
    font-weight: 650;
    background: transparent;
    border: 0;
    border-radius: 0;
    outline: 0;
}

.wc-field__unit {
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: var(--wc-muted);
    font-size: 13px;
    background: #f1ebef;
    border-left: 1px solid var(--wc-border);
}

.wc-field__hint {
    margin-top: 5px;
    color: var(--wc-muted);
    font-size: 11px;
}

.wc-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 17px;
    color: var(--wc-text);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    touch-action: manipulation;
    cursor: pointer;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.wc-button:hover {
    text-decoration: none;
}

.wc-button:active:not(:disabled) {
    transform: translateY(1px);
}

.wc-button:focus-visible,
.wc-input:focus-visible {
    outline: 3px solid rgba(142, 61, 104, 0.28);
    outline-offset: 2px;
}

.wc-button:disabled {
    cursor: wait;
    opacity: 0.62;
}

.wc-button--primary {
    color: #ffffff;
    background: var(--wc-accent);
    border-color: var(--wc-accent);
}

.wc-button--primary:hover:not(:disabled) {
    background: var(--wc-accent-dark);
    border-color: var(--wc-accent-dark);
}

.wc-button--primary[aria-busy="true"]::before {
    width: 14px;
    height: 14px;
    content: "";
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: wc-spin 700ms linear infinite;
}

.wc-button--secondary {
    color: var(--wc-accent-dark);
    background: var(--wc-surface);
    border-color: #cba5b9;
}

.wc-button--secondary:hover {
    background: var(--wc-accent-soft);
    border-color: var(--wc-accent);
}

.wc-button--quiet {
    min-height: 38px;
    padding: 7px 4px;
    color: var(--wc-muted);
    font-size: 12px;
}

.wc-button--quiet:hover:not(:disabled) {
    color: var(--wc-danger);
}

.wc-cancel {
    margin-top: 8px;
    text-align: right;
}

.wc-action__closed {
    margin: 0;
    color: var(--wc-muted);
    font-size: 14px;
}

.wc-guest {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.wc-guest__title {
    margin: 0;
    color: var(--wc-text);
    font: inherit;
    font-size: 16px;
    font-weight: 750;
}

.wc-guest__text {
    max-width: 520px;
    margin: 5px 0 0;
    color: var(--wc-muted);
    font-size: 13px;
}

.wc-guest__buttons {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.wc-feedback {
    margin-top: 12px;
    padding: 11px 13px;
    color: var(--wc-info);
    font-size: 13px;
    background: var(--wc-info-soft);
    border-radius: 10px;
}

.wc-feedback[data-state="success"] {
    color: var(--wc-success);
    background: var(--wc-success-soft);
}

.wc-feedback[data-state="error"] {
    color: var(--wc-danger);
    background: var(--wc-danger-soft);
}

.wc-widget__footnote {
    margin: 16px 0 0;
    color: var(--wc-muted);
    font-size: 11px;
}

.wc-disclosure {
    margin-top: 12px;
    border: 1px solid var(--wc-border);
    border-radius: 12px;
    background: var(--wc-surface);
}

.wc-disclosure__summary {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    color: var(--wc-accent-dark);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
    touch-action: manipulation;
}

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

.wc-disclosure__summary::marker {
    content: "";
}

.wc-disclosure__summary:hover {
    background: var(--wc-accent-soft);
}

.wc-disclosure__summary:focus-visible {
    outline: 3px solid rgba(142, 61, 104, 0.28);
    outline-offset: 2px;
    border-radius: 11px;
}

.wc-disclosure__icon {
    position: relative;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--wc-accent-soft);
}

.wc-disclosure__icon::before,
.wc-disclosure__icon::after {
    position: absolute;
    top: 10px;
    width: 7px;
    height: 1.5px;
    content: "";
    background: var(--wc-accent-dark);
    transition: transform 160ms ease;
}

.wc-disclosure__icon::before {
    left: 5px;
    transform: rotate(45deg);
}

.wc-disclosure__icon::after {
    right: 5px;
    transform: rotate(-45deg);
}

.wc-disclosure[open] .wc-disclosure__icon::before {
    transform: rotate(-45deg);
}

.wc-disclosure[open] .wc-disclosure__icon::after {
    transform: rotate(45deg);
}

.wc-disclosure__body {
    padding: 0 12px 14px;
    border-top: 1px solid var(--wc-border);
    animation: wc-disclosure-in 180ms ease-out;
}

.wc-details-section {
    padding-top: 14px;
}

.wc-details-section__title {
    margin: 0;
    color: var(--wc-text);
    font: inherit;
    font-size: 14px;
    font-weight: 750;
}

.wc-details-section__text {
    margin: 6px 0 0;
    color: var(--wc-muted);
    font-size: 12px;
}

@keyframes wc-disclosure-in {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 720px) {
    .wc-widget {
        margin: 18px 0;
        padding: 18px;
        border-radius: 16px;
    }

    .wc-widget__header,
    .wc-guest {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .wc-status {
        align-self: flex-start;
        max-width: 100%;
    }

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

    .wc-stage {
        min-height: 72px;
    }

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

    .wc-form .wc-button--primary,
    .wc-guest__buttons,
    .wc-guest__buttons .wc-button {
        width: 100%;
    }

    .wc-guest__buttons {
        flex-direction: column;
    }

    .wc-button,
    .wc-button--quiet {
        min-height: 44px;
    }
}

@media (max-width: 460px) {
    .wc-widget {
        padding: 15px;
    }

    .wc-progress-card,
    .wc-action {
        padding: 14px;
    }

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

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

    .wc-metric:last-child {
        grid-column: 1 / -1;
    }

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

    .wc-current__value {
        grid-row: auto;
        margin: 2px 0;
    }
}

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

.wc-my {
    max-width: 980px;
    margin: 0 auto;
    padding: 24px 16px 48px;
}

.wc-my__header {
    margin-bottom: 24px;
}

.wc-my__header h1,
.wc-my-card h2,
.wc-my__empty h2 {
    margin: 6px 0 8px;
    color: var(--wc-text, #25231f);
}

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

.wc-my-card,
.wc-my__empty {
    padding: 20px;
    border: 1px solid var(--wc-border, #e4dfd5);
    border-radius: 16px;
    background: var(--wc-surface, #fff);
}

.wc-my-card__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.wc-my-card__image {
    flex: 0 0 112px;
    width: 112px;
    height: 112px;
    overflow: hidden;
    border-radius: 16px;
    background: #f1edf2;
}

.wc-my-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wc-my-card__main > div:not(.wc-my-card__actions) {
    flex: 1 1 auto;
}

.wc-my-card__actions {
    display: flex;
    flex: 0 0 230px;
    flex-direction: column;
    gap: 8px;
}

.wc-my-card__price {
    margin: 8px 0 0;
    font-weight: 700;
}

.wc-my-card__meta {
    color: var(--wc-muted, #6f6a61);
    font-size: 0.92rem;
}

@media (max-width: 640px) {
    .wc-my-card__main {
        align-items: stretch;
        flex-direction: column;
    }

    .wc-my-card__image {
        width: 100%;
        height: 180px;
    }

    .wc-my-card__actions {
        flex-basis: auto;
    }
}

.wc-widget__title,
.wc-how__title,
.wc-guest__title,
.wc-my__header h1,
.wc-my-card h2 {
    text-wrap: balance;
}

.wc-progress-card__percent,
.wc-metric dd,
.wc-current__value {
    font-variant-numeric: tabular-nums;
}
.wc-confirm {
    max-width: 920px;
    margin: 24px auto 56px;
    padding: 0 16px;
}

.wc-confirm__card {
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid #e5dbe9;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(56, 24, 68, .08);
}

.wc-confirm__card h1 {
    margin: 6px 0 22px;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.08;
}

.wc-confirm__card h2 {
    margin: 0 0 18px;
    font-size: clamp(21px, 3vw, 30px);
}

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

.wc-confirm__facts div {
    padding: 14px 16px;
    border-radius: 14px;
    background: #f8f5f9;
}

.wc-confirm__facts dt {
    color: #746a79;
    font-size: 13px;
}

.wc-confirm__facts dd {
    margin: 5px 0 0;
    font-size: 18px;
    font-weight: 700;
}

.wc-confirm__deadline,
.wc-confirm__alert {
    margin: 20px 0;
    padding: 15px 17px;
    border-radius: 14px;
    line-height: 1.5;
}

.wc-confirm__deadline {
    border: 1px solid #f0d585;
    background: #fff8e4;
}

.wc-confirm__alert {
    border: 1px solid #efb5b5;
    background: #fff2f2;
    color: #8d2525;
}

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

.wc-confirm__muted {
    color: #746a79;
}

@media (max-width: 600px) {
    .wc-confirm__facts {
        grid-template-columns: 1fr;
    }

    .wc-confirm__actions .wc-button {
        width: 100%;
        text-align: center;
    }
}

/* Compact storefront widget: restore the familiar yellow CTA while keeping
   the current collection state machine and authenticated request form. */
.wc-widget--classic {
    --wc-accent: #5b176e;
    --wc-accent-dark: #3f0d50;
    --wc-accent-soft: #f6edf8;
    margin: 12px 0;
    padding: 14px;
    border-color: #e7dde9;
    border-radius: 15px;
    box-shadow: 0 8px 22px rgba(55, 24, 65, .06);
}

.wc-classic__topline,
.wc-classic__progress-line,
.wc-classic__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.wc-classic__eyebrow {
    display: block;
    margin-bottom: 2px;
    color: #8e3d68;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.wc-classic__title {
    display: block;
    color: #241b24;
    font-size: 19px;
    line-height: 1.15;
}

.wc-classic__progress-line {
    margin: 11px 0 12px;
    color: #746a74;
    font-size: 12px;
}

.wc-classic__progress-line .wc-progress {
    min-width: 0;
    margin: 0;
}

.wc-classic__progress-line > span {
    flex: 0 0 auto;
    white-space: nowrap;
}

.wc-classic__panel {
    margin: 0;
}

.wc-classic__summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 11px 18px;
    color: #201708;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    list-style: none;
    background: #ffbf13;
    border: 1px solid #ffb700;
    border-radius: 11px;
    box-shadow: 0 6px 14px rgba(190, 126, 0, .18);
    transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

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

.wc-classic__summary:hover {
    background: #ffc92f;
    box-shadow: 0 8px 18px rgba(190, 126, 0, .22);
    transform: translateY(-1px);
}

.wc-classic__summary:focus-visible {
    outline: 3px solid rgba(121, 43, 145, .28);
    outline-offset: 3px;
}

.wc-classic__summary-icon {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .18s ease;
}

.wc-classic__panel[open] .wc-classic__summary-icon {
    transform: rotate(225deg) translate(-1px, -1px);
}

.wc-classic__body {
    padding: 14px 2px 2px;
}

.wc-classic__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 10px;
}

.wc-classic__metrics > div {
    min-width: 0;
    padding: 9px 10px;
    background: #faf7fa;
    border: 1px solid #eee6ef;
    border-radius: 10px;
}

.wc-classic__metrics dt {
    color: #817681;
    font-size: 10px;
}

.wc-classic__metrics dd {
    margin: 3px 0 0;
    color: #241b24;
    font-size: 14px;
    font-weight: 750;
}

.wc-classic__price {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2px 10px;
    margin-bottom: 11px;
    padding: 10px 12px;
    color: #4d424d;
    background: #fff9e9;
    border: 1px solid #f0dfaa;
    border-radius: 10px;
}

.wc-classic__price strong {
    color: #2b1f10;
    text-align: right;
}

.wc-classic__price small {
    grid-column: 1 / -1;
    color: #7d6d50;
    font-size: 10px;
    line-height: 1.35;
}

.wc-widget--classic .wc-form {
    display: block;
}

.wc-widget--classic .wc-button--primary {
    width: 100%;
    margin-top: 10px;
    color: #fff;
    background: #6f1689;
    border-color: #6f1689;
}

.wc-order-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(112px, .9fr);
    gap: 10px;
    align-items: end;
}

.wc-order-row__total {
    display: flex;
    min-height: 70px;
    flex-direction: column;
    justify-content: center;
    padding: 8px 11px;
    background: #fff9e9;
    border: 1px solid #f0dfaa;
    border-radius: 10px;
}

.wc-order-row__total > span,
.wc-order-row__total small {
    color: #7d6d50;
    font-size: 10px;
    line-height: 1.25;
}

.wc-order-row__total strong {
    margin: 2px 0;
    color: #2b1f10;
    font-size: 16px;
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
}

.wc-order-row__hint {
    margin-top: 6px;
}

.wc-classic__footer {
    align-items: flex-start;
    margin-top: 10px;
    color: #7e747e;
    font-size: 10px;
    line-height: 1.35;
}

.wc-classic__footer a {
    flex: 0 0 auto;
    color: #64177a;
    font-weight: 750;
    text-decoration: none;
}

.wc-classic__footer a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .wc-widget--classic {
        padding: 12px;
    }

    .wc-classic__topline {
        align-items: flex-start;
    }

    .wc-classic__title {
        font-size: 18px;
    }

    .wc-classic__progress-line,
    .wc-classic__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .wc-classic__progress-line > span {
        white-space: normal;
    }

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

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

    .wc-classic__price strong {
        text-align: left;
    }

    .wc-order-row {
        grid-template-columns: minmax(0, 1fr) minmax(108px, .9fr);
    }
}

@media (max-width: 360px) {
    .wc-order-row {
        grid-template-columns: 1fr;
    }
}

/* Quiet storefront signals derived from the original Sibproject-era
   products__handmade progress, now backed by the current campaign model. */
.wc-classic__time-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px;
    align-items: center;
    margin: -5px 0 12px;
    color: #817783;
    font-size: 10px;
    line-height: 1.2;
}

.wc-classic__time-track,
.wc-card-progress__time-track {
    display: block;
    height: 3px;
    overflow: hidden;
    background: #ece8ed;
    border-radius: 999px;
}

.wc-classic__time-track i,
.wc-card-progress__time-track i {
    display: block;
    height: 100%;
    background: #66a082;
    border-radius: inherit;
    transition: width .2s ease;
}

.wc-time--warning .wc-classic__time-track i,
.wc-time--warning .wc-card-progress__time-track i {
    background: #d69a28;
}

.wc-time--critical .wc-classic__time-track i,
.wc-time--critical .wc-card-progress__time-track i {
    background: #d15c57;
}

.wc-time--pending .wc-classic__time-track i,
.wc-time--pending .wc-card-progress__time-track i {
    background: #b7aeb9;
}

.wc-time--ready .wc-classic__time-track i,
.wc-time--ready .wc-card-progress__time-track i {
    background: #4d9471;
}

.wc-widget[data-wc-fill-tone="near"] .wc-progress::-webkit-progress-value {
    background: #d69a28;
}

.wc-widget[data-wc-fill-tone="near"] .wc-progress::-moz-progress-bar {
    background: #d69a28;
}

.wc-widget[data-wc-fill-tone="ready"] .wc-progress::-webkit-progress-value {
    background: #4d9471;
}

.wc-widget[data-wc-fill-tone="ready"] .wc-progress::-moz-progress-bar {
    background: #4d9471;
}

.wc-card-progress {
    display: grid;
    gap: 5px;
    width: 100%;
    margin: 8px 0 2px;
    padding: 7px 8px;
    color: #776d79;
    font-size: 10px;
    line-height: 1.2;
    background: #faf8fb;
    border: 1px solid #eee8ef;
    border-radius: 9px;
    box-sizing: border-box;
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .products__item .wc-card-progress[data-wc-card-progress] {
        visibility: hidden;
    }

    .products__item:hover .wc-card-progress[data-wc-card-progress],
    .products__item:focus-within .wc-card-progress[data-wc-card-progress] {
        visibility: visible;
    }
}

.wc-card-progress__meta,
.wc-card-progress__time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.wc-card-progress__meta > span {
    color: #6d287a;
    font-weight: 750;
}

.wc-card-progress__meta strong {
    color: #403744;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.wc-card-progress__fill {
    display: block;
    height: 5px;
    overflow: hidden;
    background: #e8e2ea;
    border-radius: 999px;
}

.wc-card-progress__fill i {
    display: block;
    height: 100%;
    min-width: 2px;
    background: #8b5295;
    border-radius: inherit;
}

.wc-card-progress--near .wc-card-progress__fill i {
    background: #d69a28;
}

.wc-card-progress--ready .wc-card-progress__fill i {
    background: #4d9471;
}

.wc-card-progress__time {
    color: #8a818c;
    font-size: 9px;
}

.wc-card-progress__time-track {
    flex: 0 0 42%;
}

@media (max-width: 480px) {
    .wc-classic__time-line {
        grid-template-columns: 1fr;
    }
}

/* Standalone customer guide: /sovmestnye-pokupki/ */
.wc-guide {
    display: grid;
    gap: 24px;
    color: #241f24;
}

.wc-guide__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    gap: 28px;
    align-items: center;
    padding: clamp(24px, 4vw, 48px);
    overflow: hidden;
    background: linear-gradient(135deg, #fffaf0 0%, #fff 52%, #f1f8f4 100%);
    border: 1px solid #eadfe7;
    border-radius: 24px;
    box-shadow: 0 14px 36px rgba(46, 32, 44, .08);
}

.wc-guide__eyebrow {
    margin: 0 0 10px;
    color: #7b2a87;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.wc-guide__intro h1,
.wc-guide__intro h2 {
    margin: 0 0 14px;
    color: #211b21;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.03;
}

.wc-guide__lead {
    max-width: 760px;
    margin: 0;
    color: #5e545c;
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.55;
}

.wc-guide__price-card {
    padding: 22px;
    background: #fff;
    border: 1px solid #eadfe7;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(46, 32, 44, .08);
}

.wc-guide__price-card span,
.wc-guide__price-card small {
    display: block;
    color: #71676f;
}

.wc-guide__price-card strong {
    display: block;
    margin: 7px 0;
    color: #4d7f69;
    font-size: 25px;
    line-height: 1.2;
}

.wc-guide__section {
    padding: clamp(22px, 3vw, 34px);
    background: #fff;
    border: 1px solid #eadfe7;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(46, 32, 44, .06);
}

.wc-guide__section h2 {
    margin: 0 0 20px;
    font-size: clamp(24px, 3vw, 32px);
}

.wc-guide__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wc-guide__steps li {
    position: relative;
    min-width: 0;
    padding: 18px 16px 18px 54px;
    background: #faf8fa;
    border: 1px solid #eee7ed;
    border-radius: 14px;
}

.wc-guide__step-number {
    position: absolute;
    top: 16px;
    left: 16px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    background: #6f1689;
    border-radius: 50%;
}

.wc-guide__steps strong {
    display: block;
    margin-bottom: 5px;
}

.wc-guide__steps p,
.wc-guide__facts p {
    margin: 0;
    color: #6e646c;
    line-height: 1.5;
}

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

.wc-guide__fact {
    padding: 18px;
    background: #f5faf7;
    border: 1px solid #dcebe3;
    border-radius: 14px;
}

.wc-guide__fact strong {
    display: block;
    margin-bottom: 6px;
    color: #356a54;
}

.wc-guide__note {
    padding: 18px 20px;
    color: #5d4c28;
    line-height: 1.55;
    background: #fff8df;
    border: 1px solid #efdfa6;
    border-radius: 14px;
}

.wc-guide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wc-guide__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 20px;
    color: #211708;
    font-weight: 800;
    text-decoration: none;
    background: #ffbf13;
    border: 1px solid #ffb700;
    border-radius: 11px;
    box-shadow: 0 6px 14px rgba(190, 126, 0, .16);
}

.wc-guide__button:hover {
    color: #211708;
    background: #ffc92f;
}

.wc-guide__button--secondary {
    color: #5e176e;
    background: #fff;
    border-color: #ceb8d3;
    box-shadow: none;
}

.wc-guide__button--secondary:hover {
    color: #5e176e;
    background: #faf6fb;
}

@media (max-width: 900px) {
    .wc-guide__intro,
    .wc-guide__facts {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 560px) {
    .wc-guide {
        gap: 16px;
    }

    .wc-guide__intro,
    .wc-guide__section {
        padding: 18px;
        border-radius: 16px;
    }

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

    .wc-guide__actions,
    .wc-guide__button {
        width: 100%;
    }
}
