/* â”€â”€ Placement Store Membership Pricing Stylesheet â”€â”€ */

:root {
    --ps-primary: #3858e9;
    --ps-primary-hover: #2644cc;
    --ps-text: #2c3338;
    --ps-text-light: #646970;
    --ps-bg: #f6f7f7;
    --ps-white: #ffffff;
    --ps-success: #28a745;
    --ps-error: #dc3545;
    --ps-border: #dcdcde;
}

/* Pricing Grid container */
.paysure-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.ps-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
    margin-top: 30px;
}

/* Single Card */
.ps-pricing-card {
    background: var(--ps-white);
    border: 1px solid var(--ps-border);
    border-radius: 12px;
    padding: 35px 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
}

.ps-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.04);
}

/* Highlight Active Card */
.ps-active-card {
    border: 2px solid var(--ps-primary);
}

/* Active Badge */
.ps-active-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ps-primary);
    color: var(--ps-white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Header Section */
.ps-plan-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--ps-text);
    margin: 0 0 15px 0;
    text-align: center;
}

.ps-plan-price {
    text-align: center;
    margin-bottom: 20px;
}

.ps-currency {
    font-size: 24px;
    font-weight: 700;
    vertical-align: super;
    color: var(--ps-text);
}

.ps-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--ps-text);
    letter-spacing: -1px;
}

.ps-duration {
    font-size: 13px;
    color: var(--ps-text-light);
    font-weight: 500;
}

.ps-plan-desc {
    font-size: 14px;
    color: var(--ps-text-light);
    text-align: center;
    line-height: 1.5;
    margin: 0;
    min-height: 42px;
}

/* Body Section */
.ps-card-body {
    margin: 25px 0;
    flex-grow: 1;
}

.ps-plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ps-plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ps-text);
    margin-bottom: 12px;
    line-height: 1.4;
}

.ps-check-icon {
    color: var(--ps-success);
    font-weight: 900;
    font-size: 16px;
}

/* Footer & Buttons */
.ps-card-footer {
    text-align: center;
}

.ps-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color 0.2s ease, transform 0.1s ease;
    cursor: pointer;
}

.ps-btn-subscribe {
    background-color: var(--ps-primary);
    color: var(--ps-white);
    border: none;
}

.ps-btn-subscribe:hover {
    background-color: var(--ps-primary-hover);
}

.ps-btn-subscribe:active {
    transform: scale(0.98);
}

.ps-btn-active {
    background-color: #f1f3f5;
    color: #adb5bd;
    border: 1px solid #dee2e6;
    cursor: not-allowed;
}

/* Notifications Box */
.ps-notification {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.4;
}

.ps-success {
    background: #e6f4ea;
    border-left: 4px solid var(--ps-success);
    color: #137333;
}

.ps-error {
    background: #fce8e6;
    border-left: 4px solid var(--ps-error);
    color: #c5221f;
}

.ps-icon {
    font-size: 18px;
}
