/* ── Pricing Table Widget ──────────────────────────────────────────────────── */

.dbw-pt {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 28px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    height: 100%;
    box-sizing: border-box;
}

.dbw-pt.is-highlighted {
    border-color: #7c3aed;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.15);
}

/* ── Badge ── */

.dbw-pt__badge-wrap {
    position: absolute;
    top: -13px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.dbw-pt__badge {
    display: inline-block;
    background: #7c3aed;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

/* ── Header ── */

.dbw-pt__header {
    text-align: center;
    margin-bottom: 24px;
}

.dbw-pt__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #f3eeff;
    color: #7c3aed;
    border-radius: 12px;
    font-size: 22px;
    margin-bottom: 14px;
}

.dbw-pt__icon svg,
.dbw-pt__icon i {
    font-size: inherit;
    color: inherit;
    width: 1em;
    height: 1em;
}

.dbw-pt__title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

.dbw-pt__desc {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* ── Price ── */

.dbw-pt__price-wrap {
    text-align: center;
    margin-bottom: 20px;
}

.dbw-pt__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    line-height: 1;
}

.dbw-pt__currency {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    padding-top: 6px;
}

.dbw-pt__amount {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -2px;
}

.dbw-pt__period {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
    align-self: flex-end;
    padding-bottom: 8px;
}

.dbw-pt__note {
    margin: 6px 0 0;
    font-size: 11px;
    color: #94a3b8;
}

/* ── Divider ── */

.dbw-pt__divider {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 0 0 20px;
}

/* ── Features ── */

.dbw-pt__features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.dbw-pt__feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dbw-pt__feature.is-excluded {
    opacity: 0.45;
}

.dbw-pt__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dbw-pt__feature-icon--yes {
    color: #16a34a;
    background: #dcfce7;
}

.dbw-pt__feature-icon--no {
    color: #dc2626;
    background: #fee2e2;
}

.dbw-pt__feature-text {
    font-size: 14px;
    color: #334155;
    line-height: 1.4;
}

/* ── Button ── */

.dbw-pt__btn-wrap {
    margin-top: auto;
}

.dbw-pt__btn-wrap.is-full {
    width: 100%;
}

.dbw-pt__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #7c3aed;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
    line-height: 1;
}

.dbw-pt__btn-wrap.is-full .dbw-pt__btn {
    width: 100%;
}

.dbw-pt__btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}
