/* ══════════════════════════════════════════════════════════════════════════
   DC Pro Checkout — Dark Theme
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Pro Checkout: Dark Theme ──────────────────────────────────────────── */
.dc-pro-checkout-page { padding: 0; background: #080c0e; color: rgba(255,255,255,0.85); }

/* ── Overview Header ───────────────────────────────────────────────────── */
.dc-pro-checkout-overview { max-width: 1290px; margin: 0 auto; padding: 80px 36px 60px; }
.dc-pro-checkout-overview__header { text-align: center; margin-bottom: 48px; }
.dc-pro-checkout-overview__title { color: #fff; font-size: 2.2rem; font-weight: 800; margin: 0 0 12px; }
.dc-pro-checkout-overview__subtitle { color: rgba(255,255,255,0.55); font-size: 1.05rem; margin: 0 auto; max-width: 620px; line-height: 1.6; }

.dc-pro-checkout-overview__active { text-align: center; margin-bottom: 40px; }
.dc-pro-checkout-overview__active-title { color: rgba(255,255,255,0.45); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 10px; }
.dc-pro-checkout-overview__active-list { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.dc-pro-checkout-overview__active-badge { background: rgba(184,150,78,0.12); color: #BF9B30; font-size: 0.78rem; font-weight: 600; padding: 4px 12px; border-radius: 4px; border: 1px solid rgba(184,150,78,0.25); }

/* ── Catalog Layout ────────────────────────────────────────────────────── */
.dc-pro-catalog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
@media (max-width: 1024px) { .dc-pro-catalog-layout { grid-template-columns: 1fr; } }

/* ── Catalog Sections ──────────────────────────────────────────────────── */
.dc-pro-catalog-section { margin-bottom: 48px; }
.dc-pro-catalog-section__header { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 16px; }
.dc-pro-catalog-section__title { color: #fff; font-size: 1.4rem; font-weight: 700; margin: 0 0 6px; }
.dc-pro-catalog-section__desc { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin: 0; line-height: 1.5; max-width: 560px; }
.dc-pro-catalog-section__link { color: #BF9B30; font-size: 0.85rem; font-weight: 600; text-decoration: none; white-space: nowrap; padding-top: 4px; }
.dc-pro-catalog-section__link:hover { text-decoration: underline; }
.dc-pro-catalog-section__note { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin-bottom: 12px; line-height: 1.5; }
.dc-pro-catalog-section__note a { color: #BF9B30; text-decoration: none; }
.dc-pro-catalog-section__note a:hover { text-decoration: underline; }
.dc-pro-catalog-section__all { display: inline-block; margin-top: 8px; color: rgba(255,255,255,0.5); font-size: 0.85rem; text-decoration: none; }
.dc-pro-catalog-section__all:hover { color: #BF9B30; }
.dc-pro-catalog-section__toggle { display: inline-block; margin-top: 8px; background: none; border: none; color: rgba(255,255,255,0.5); font-size: 0.85rem; cursor: pointer; padding: 0; }
.dc-pro-catalog-section__toggle:hover { color: #BF9B30; }
.dc-pro-catalog-items--expandable { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }

/* ── Catalog Items ─────────────────────────────────────────────────────── */
.dc-pro-catalog-items { display: flex; flex-direction: column; gap: 8px; }
.dc-pro-catalog-item {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px; padding: 16px 20px;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.dc-pro-catalog-item:hover { border-color: rgba(255,255,255,0.14); background: rgba(255,255,255,0.05); }
.dc-pro-catalog-item--active { border-color: rgba(184,150,78,0.25); background: rgba(184,150,78,0.04); }
.dc-pro-catalog-item--locked { opacity: 0.5; }
.dc-pro-catalog-item--selected { border-color: #BF9B30; background: rgba(184,150,78,0.08); }

.dc-pro-catalog-item__info { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.dc-pro-catalog-item__name { color: #fff; font-size: 0.95rem; font-weight: 600; margin: 0; }
.dc-pro-catalog-item__billing { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.dc-pro-catalog-item__save { background: rgba(34,197,94,0.12); color: #22c55e; font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: 3px; }
.dc-pro-catalog-item__requires { color: rgba(255,255,255,0.35); font-size: 0.78rem; font-style: italic; }

.dc-pro-catalog-item__action { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.dc-pro-catalog-item__price { color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 600; white-space: nowrap; }
.dc-pro-catalog-item__badge { font-size: 0.78rem; font-weight: 600; padding: 4px 12px; border-radius: 4px; }
.dc-pro-catalog-item__badge:not(.dc-pro-catalog-item__badge--locked) { background: rgba(184,150,78,0.15); color: #BF9B30; border: 1px solid rgba(184,150,78,0.3); }
.dc-pro-catalog-item__badge--locked { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.08); }

.dc-pro-catalog-item__add {
    background: #BF9B30; color: #fff; border: 2px solid #BF9B30;
    padding: 6px 20px; border-radius: 4px; font-size: 0.85rem; font-weight: 700;
    cursor: pointer; transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.dc-pro-catalog-item__add:hover { background: #4a5568; border-color: #4a5568; color: #BF9B30; }
.dc-pro-catalog-item__add--added { background: transparent; border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); }
.dc-pro-catalog-item__add--added:hover { background: #e74c3c; border-color: #e74c3c; color: #fff; }
.dc-pro-catalog-item__add:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Cart Sidebar ──────────────────────────────────────────────────────── */
.dc-pro-cart { position: sticky; top: 100px; }
@media (max-width: 1024px) {
    .dc-pro-cart { position: fixed; bottom: 0; left: 0; right: 0; top: auto; z-index: 999; max-height: 50vh; overflow-y: auto; }
}
.dc-pro-cart__inner {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; padding: 24px;
}
.dc-pro-cart__title { color: #fff; font-size: 1rem; font-weight: 700; margin: 0 0 16px; }
.dc-pro-cart__empty p { color: rgba(255,255,255,0.4); font-size: 0.85rem; line-height: 1.5; margin: 0; }
.dc-pro-cart__items { display: flex; flex-direction: column; gap: 8px; }
.dc-pro-cart__item {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(184,150,78,0.06); border: 1px solid rgba(184,150,78,0.15);
    border-radius: 4px; padding: 10px 12px;
}
.dc-pro-cart__item-name { color: rgba(255,255,255,0.85); font-size: 0.82rem; font-weight: 600; }
.dc-pro-cart__item-price { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.dc-pro-cart__item-remove {
    background: none; border: none; color: rgba(255,255,255,0.3); cursor: pointer;
    font-size: 1.1rem; padding: 0 4px; line-height: 1;
}
.dc-pro-cart__item-remove:hover { color: #e74c3c; }
.dc-pro-cart__footer { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.dc-pro-cart__note { color: rgba(255,255,255,0.4); font-size: 0.78rem; line-height: 1.5; margin: 0 0 12px; }
.dc-pro-cart__checkout {
    width: 100%; padding: 12px; background: #BF9B30; color: #fff; border: 2px solid #BF9B30;
    border-radius: 4px; font-size: 0.95rem; font-weight: 700; cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.dc-pro-cart__checkout:hover { background: #4a5568; border-color: #4a5568; color: #BF9B30; }

/* ── Checkout Mode (legacy PMPro — kept for compatibility) ────────────── */
.dc-pro-checkout-wrap { display: grid; grid-template-columns: 1fr; min-height: 80vh; max-width: 100%; padding: 0; }
@media (min-width: 900px) { .dc-pro-checkout-wrap { grid-template-columns: 340px 1fr; } }
.dc-pro-checkout-context { background: #0a0e11; color: #fff; padding: 2.5rem 2rem; border-right: 1px solid rgba(255,255,255,0.06); }
.dc-pro-checkout-context__inner { position: sticky; top: 2rem; }
.dc-pro-checkout-context__back { display: inline-block; color: rgba(255,255,255,0.5); font-size: 0.875rem; text-decoration: none; margin-bottom: 2rem; transition: color 0.15s; }
.dc-pro-checkout-context__back:hover { color: #fff; }
.dc-pro-checkout-context__brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 2rem; }
.dc-pro-checkout-context__logo { font-size: 1.25rem; font-weight: 900; color: #fff; }
.dc-pro-checkout-context__pro-badge { background: #BF9B30; color: #080c0e; font-size: 0.7rem; font-weight: 900; padding: 0.15rem 0.4rem; border-radius: 3px; letter-spacing: 0.05em; text-transform: uppercase; }
.dc-pro-checkout-context__label { margin: 0 0 0.25rem; font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.dc-pro-checkout-context__product-name { margin: 0 0 1.5rem; font-size: 1.2rem; font-weight: 700; color: #fff; line-height: 1.3; }
.dc-pro-checkout-context__note { background: rgba(184,150,78,0.08); border-left: 3px solid #BF9B30; padding: 0.75rem 1rem; border-radius: 0 4px 4px 0; font-size: 0.875rem; color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; line-height: 1.5; }
.dc-pro-checkout-context__active { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.dc-pro-checkout-context__active-label { color: rgba(255,255,255,0.4); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 8px; }
.dc-pro-checkout-context__active-badge { display: inline-block; background: rgba(184,150,78,0.12); color: #BF9B30; font-size: 0.78rem; font-weight: 600; padding: 3px 10px; border-radius: 3px; margin: 0 6px 6px 0; border: 1px solid rgba(184,150,78,0.25); }
.dc-pro-checkout-context__queue { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.dc-pro-checkout-context__queue-note { color: rgba(255,255,255,0.35); font-size: 0.75rem; margin: 8px 0 0; font-style: italic; }
.dc-pro-checkout-context__trust { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.dc-pro-checkout-context__trust-item { font-size: 0.85rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 0.5rem; }
.dc-pro-checkout-context__trust-item svg { flex-shrink: 0; opacity: 0.6; }
.dc-pro-checkout-context__trust-item a { color: #BF9B30; text-decoration: none; }

.dc-pro-checkout-form-wrap { padding: 2.5rem 2rem; background: #0d1117; }
@media (min-width: 900px) { .dc-pro-checkout-form-wrap { padding: 3rem 3.5rem; } }

.dc-pro-checkout-ticker-field { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 1.5rem; margin-bottom: 2rem; }
.dc-pro-checkout-ticker-field__heading { margin: 0 0 0.5rem; font-size: 1rem; font-weight: 700; color: #fff; }
.dc-pro-checkout-ticker-field__optional { font-weight: 400; color: rgba(255,255,255,0.4); font-size: 0.875rem; }
.dc-pro-checkout-ticker-field__desc { margin: 0 0 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.dc-pro-checkout-ticker-field__textarea { width: 100%; box-sizing: border-box; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; padding: 0.6rem 0.75rem; font-size: 0.875rem; font-family: monospace; color: #fff; resize: vertical; }
.dc-pro-checkout-ticker-field__textarea:focus { outline: none; border-color: #BF9B30; }

.dc-pro-pmpro-wrap { color: rgba(255,255,255,0.85); }
.dc-pro-pmpro-wrap label { color: rgba(255,255,255,0.7); }
.dc-pro-pmpro-wrap .pmpro_checkout-fields input[type="text"],
.dc-pro-pmpro-wrap .pmpro_checkout-fields input[type="email"],
.dc-pro-pmpro-wrap .pmpro_checkout-fields input[type="password"],
.dc-pro-pmpro-wrap .pmpro_checkout-fields select {
    width: 100%; box-sizing: border-box; background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; padding: 0.6rem 0.75rem; font-size: 0.9rem; color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}
.dc-pro-pmpro-wrap .pmpro_checkout-fields input:focus,
.dc-pro-pmpro-wrap .pmpro_checkout-fields select:focus { outline: none; border-color: #BF9B30; box-shadow: 0 0 0 2px rgba(184,150,78,0.2); }
.dc-pro-pmpro-wrap input[type="submit"], .dc-pro-pmpro-wrap .pmpro_btn {
    background: #BF9B30 !important; color: #fff !important; border: 2px solid #BF9B30 !important;
    border-radius: 4px !important; padding: 0.75rem 1.5rem !important; font-weight: 700 !important; font-size: 1rem !important; cursor: pointer !important;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease !important;
}
.dc-pro-pmpro-wrap input[type="submit"]:hover, .dc-pro-pmpro-wrap .pmpro_btn:hover {
    background: #4a5568 !important; border-color: #4a5568 !important; color: #BF9B30 !important;
}
.dc-pro-pmpro-wrap .pmpro_checkout-section-header { font-size: 1rem; font-weight: 700; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.5rem; margin-bottom: 1rem; }
.dc-pro-pmpro-wrap .pmpro_message { background: rgba(184,150,78,0.1); border: 1px solid rgba(184,150,78,0.3); color: rgba(255,255,255,0.85); border-radius: 4px; padding: 0.75rem 1rem; }

.dc-pro-checkout-blocked { text-align: center; padding: 3rem 2rem; }
.dc-pro-checkout-blocked__heading { margin: 0 0 0.75rem; font-size: 1.4rem; color: #fff; }
.dc-pro-checkout-blocked__text { margin: 0 0 1.5rem; color: rgba(255,255,255,0.5); max-width: 480px; margin-left: auto; margin-right: auto; }
.dc-pro-checkout-blocked__actions .dc-pro-btn {
    background: #BF9B30; color: #fff; border: 2px solid #BF9B30; padding: 8px 20px; border-radius: 4px; font-weight: 600; text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease; display: inline-block;
}
.dc-pro-checkout-blocked__actions .dc-pro-btn:hover { background: #4a5568; border-color: #4a5568; color: #BF9B30; }

@media (max-width: 899px) {
    .dc-pro-checkout-context { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .dc-pro-checkout-context__inner { position: static; }
    .dc-pro-checkout-overview { padding: 48px 20px; }
}


/* ══════════════════════════════════════════════════════════════════════════
   Checkout State (State 2)
   ══════════════════════════════════════════════════════════════════════════ */

.dc-pco-checkout { max-width: 560px; margin: 0 auto; padding: 80px 24px 60px; }
.dc-pco-checkout__back { display: inline-block; color: rgba(255,255,255,0.5); font-size: 0.875rem; text-decoration: none; margin-bottom: 2rem; transition: color 0.15s; }
.dc-pco-checkout__back:hover { color: #fff; }

.dc-pco-checkout__summary { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 24px; margin-bottom: 24px; }
.dc-pco-checkout__summary-title { color: rgba(255,255,255,0.45); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 16px; font-weight: 700; }
.dc-pco-checkout__summary-item { display: flex; justify-content: space-between; padding: 8px 0; color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.dc-pco-checkout__summary-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 12px 0; }
.dc-pco-checkout__summary-total { display: flex; justify-content: space-between; font-weight: 700; color: #fff; font-size: 1rem; }
.dc-pco-checkout__summary-note { color: rgba(255,255,255,0.35); font-size: 0.78rem; margin: 12px 0 0; line-height: 1.5; }

/* Form */
.dc-pco-checkout__form { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 24px; margin-bottom: 24px; }
.dc-pco-checkout__form-title { color: rgba(255,255,255,0.45); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 20px; font-weight: 700; }
.dc-pco-checkout__field { margin-bottom: 16px; }
.dc-pco-checkout__field label { display: block; color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 6px; font-weight: 600; }
.dc-pco-checkout__field input[type="email"],
.dc-pco-checkout__field input[type="text"],
.dc-pco-checkout__field input[type="password"] {
    width: 100%; box-sizing: border-box; background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.12); border-radius: 4px;
    padding: 10px 12px; font-size: 0.9rem; color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}
.dc-pco-checkout__field input:-webkit-autofill,
.dc-pco-checkout__field input:-webkit-autofill:hover,
.dc-pco-checkout__field input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0 1000px rgba(255,255,255,0.05) inset !important;
    box-shadow: 0 0 0 1000px rgba(255,255,255,0.05) inset !important;
    transition: background-color 5000s ease-in-out 0s;
}
.dc-pco-checkout__field input::placeholder { color: rgba(255,255,255,0.35) !important; -webkit-text-fill-color: rgba(255,255,255,0.35) !important; }
.dc-pco-checkout__field input:focus { outline: none; border-color: #BF9B30; box-shadow: 0 0 0 2px rgba(184,150,78,0.2); }
.dc-pco-checkout__field-error { color: #e74c3c; font-size: 0.78rem; margin-top: 4px; display: block; }
.dc-pco-checkout__password-wrap { position: relative; }
.dc-pco-checkout__password-wrap input { padding-right: 60px; }
.dc-pco-checkout__show-pw { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); background: none; border: none; color: rgba(255,255,255,0.5); font-size: 0.8rem; cursor: pointer; }
.dc-pco-checkout__show-pw:hover { color: #fff; }

.dc-pco-checkout__agree { margin-bottom: 8px; }
.dc-pco-checkout__agree label { display: block; color: rgba(255,255,255,0.6); font-size: 0.82rem; margin-bottom: 8px; cursor: pointer; }
.dc-pco-checkout__agree a { color: #BF9B30; text-decoration: none; }
.dc-pco-checkout__agree a:hover { text-decoration: underline; }

.dc-pco-checkout__logged-in { text-align: center; color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 16px; }
.dc-pco-checkout__logged-in strong { color: #fff; }

/* Pay button */
.dc-pco-checkout__pay { text-align: center; }
.dc-pco-checkout__pay-btn {
    width: 100%; padding: 14px; background: #BF9B30; color: #fff; border: 2px solid #BF9B30;
    border-radius: 4px; font-size: 1rem; font-weight: 700; cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.dc-pco-checkout__pay-btn:hover:not(:disabled) { background: #4a5568; border-color: #4a5568; color: #BF9B30; }
.dc-pco-checkout__pay-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.dc-pco-checkout__payment-note { display: flex; align-items: flex-start; gap: 10px; background: rgba(191,155,48,0.06); border: 1px solid rgba(191,155,48,0.18); border-radius: 8px; padding: 14px 16px; margin-bottom: 20px; }
.dc-pco-checkout__payment-note svg { flex-shrink: 0; color: #BF9B30; margin-top: 2px; }
.dc-pco-checkout__payment-note p { margin: 0; color: rgba(255,255,255,0.6); font-size: 0.82rem; line-height: 1.55; }
.dc-pco-checkout__payment-note strong { color: rgba(255,255,255,0.85); }
.dc-pco-checkout__trust { margin-top: 12px; color: rgba(255,255,255,0.4); font-size: 0.82rem; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* Loading */
.dc-pco-checkout__loading { text-align: center; padding: 24px; color: rgba(255,255,255,0.6); }
.dc-pco-checkout__spinner { width: 32px; height: 32px; border: 3px solid rgba(255,255,255,0.1); border-top-color: #BF9B30; border-radius: 50%; animation: dc-spin 0.8s linear infinite; margin: 0 auto 12px; }
@keyframes dc-spin { to { transform: rotate(360deg); } }

/* Error */
.dc-pco-checkout__error { background: rgba(231,76,60,0.1); border: 1px solid rgba(231,76,60,0.3); color: #e74c3c; padding: 12px 16px; border-radius: 4px; font-size: 0.875rem; margin-top: 16px; }


/* ══════════════════════════════════════════════════════════════════════════
   Confirmation State (State 3)
   ══════════════════════════════════════════════════════════════════════════ */

.dc-pco-confirmation { max-width: 560px; margin: 0 auto; padding: 80px 24px 60px; text-align: center; }
.dc-pco-confirmation__icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.8rem; font-weight: 700; }
.dc-pco-confirmation__icon--success { background: rgba(34,197,94,0.12); color: #22c55e; border: 2px solid rgba(34,197,94,0.3); }
.dc-pco-confirmation__icon--error { background: rgba(231,76,60,0.12); color: #e74c3c; border: 2px solid rgba(231,76,60,0.3); }
.dc-pco-confirmation__title { color: #fff; font-size: 1.6rem; font-weight: 800; margin: 0 0 24px; }

.dc-pco-confirmation__results { text-align: left; margin-bottom: 24px; }
.dc-pco-confirmation__item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 6px; margin-bottom: 8px; flex-wrap: wrap; }
.dc-pco-confirmation__item--success { background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.15); }
.dc-pco-confirmation__item--failed { background: rgba(231,76,60,0.06); border: 1px solid rgba(231,76,60,0.15); }
.dc-pco-confirmation__item-error { width: 100%; font-size: 0.78rem; color: rgba(231,76,60,0.7); margin-top: 4px; padding-left: 28px; }
.dc-pco-confirmation__item-icon { font-size: 1.1rem; font-weight: 700; flex-shrink: 0; }
.dc-pco-confirmation__item--success .dc-pco-confirmation__item-icon { color: #22c55e; }
.dc-pco-confirmation__item--failed .dc-pco-confirmation__item-icon { color: #e74c3c; }
.dc-pco-confirmation__item-name { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 600; flex: 1; }
.dc-pco-confirmation__item-status { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.dc-pco-confirmation__item--success .dc-pco-confirmation__item-status { color: #22c55e; }
.dc-pco-confirmation__item--failed .dc-pco-confirmation__item-status { color: #e74c3c; }

.dc-pco-confirmation__message { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin: 0 0 24px; }
.dc-pco-confirmation__message--warn { color: #f59e0b; }

.dc-pco-confirmation__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.dc-pco-btn { padding: 10px 24px; border-radius: 4px; font-weight: 700; font-size: 0.9rem; text-decoration: none; display: inline-block; transition: background 0.15s, color 0.15s, border-color 0.15s; }
.dc-pco-btn--primary { background: #BF9B30; color: #fff; border: 2px solid #BF9B30; }
.dc-pco-btn--primary:hover { background: #4a5568; border-color: #4a5568; color: #BF9B30; }
.dc-pco-btn--secondary { background: transparent; color: rgba(255,255,255,0.7); border: 2px solid rgba(255,255,255,0.15); }
.dc-pco-btn--secondary:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
