@charset "UTF-8";

/* ==========================================================================
   Pricing Table Cards
   ========================================================================== */
.cptpt-pricing-wrapper {
    margin: 40px auto;
}

.cptpt-plan {
    border: 1px solid #1f2937;
    border-radius: 25px;
    padding: 18px;
}

.cptpt-plan-title {
    margin-top: 0;
}

.cptpt-price-sec {
    font-size: 2.5em;
    font-weight: 400;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.cptpt-price {
    font-size: 1.6em;
    color: #13c06f;
    line-height: 0.7;
    margin: 0;
}

.cptpt-duration {
    font-size: 13px;
    color: black;
}

.cptpt-contacts {
    font-size: 1em;
    line-height: 0.7;
    margin: 10px 0 0 0;
    color: black;
}

/* ==========================================================================
   Plan Content (features list)
   ========================================================================== */
.cptpt-content {
    padding: 12px 24px 36px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    color: black;
}

.cptpt-content ul {
    list-style: none;
    padding-left: 0;
    padding-top: 15px;
}

.cptpt-content ul li {
    display: flex;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0;
    margin-top: 10px;
}

.cptpt-content ul li::before {
    content: '✔';
    color: #fff;
    display: inline-flex;
    background-color: #13c06f;
    height: 19px;
    width: 19px;
    padding: 5px;
    border-radius: 30px;
    margin-right: 10px;
    margin-top: 3px;
    justify-content: center;
    font-size: 12px;
    line-height: 12px;
    align-items: center;
    flex-shrink: 0;
}

/* ==========================================================================
   Variation Dropdown
   ========================================================================== */
.cptpt-plan select.cptpt-variation {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* ==========================================================================
   CTA Button
   ========================================================================== */
.cptpt-continue {
    display: block;
    text-align: center;
    padding: 12px;
    background: #0073aa;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cptpt-continue:hover {
    background: #005f8a;
    color: #fff;
    transform: translateY(-2px);
}

/* ==========================================================================
   My Subscriptions (frontend shortcode)
   ========================================================================== */
.cptpt-my-subscriptions .cptpt-subscription-item {
    padding: 12px 0;
}

.cptpt-my-subscriptions hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 12px 0;
}

.cptpt-my-subscriptions table {
    width: 100%;
}

.cptpt-sub-actions .button {
    margin-right: 6px;
    margin-bottom: 4px;
}

.btn-danger {
    color: #a00 !important;
    border-color: #a00 !important;
}

.btn-danger:hover {
    background: #a00 !important;
    color: #fff !important;
}

/* ==========================================================================
   Upgrade Dropdown
   ========================================================================== */
.cptpt-upgrade-wrap {
    margin-top: 8px;
}

.cptpt-upgrade-wrap select {
    margin-right: 6px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media screen and (max-width: 768px) {
    .cptpt-pricing-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .cptpt-plan {
        min-width: auto;
        max-width: 100%;
        width: 100%;
    }

    .cptpt-my-subscriptions table,
    .cptpt-my-subscriptions table tr,
    .cptpt-my-subscriptions table td {
        display: block;
        width: 100%;
    }

    .cptpt-my-subscriptions table td {
        padding: 4px 0;
    }
}
