.pcp-table-wrapper {
    width: 100%;
    margin: 40px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.pcp-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

/* Toggle Switch Styles */
.pcp-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.pcp-toggle-label {
    font-size: 16px;
    font-weight: 600;
    color: #444;
}

.pcp-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.pcp-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pcp-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.pcp-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .pcp-slider {
    background-color: var(--pcp-accent);
}

input:focus + .pcp-slider {
    box-shadow: 0 0 1px var(--pcp-accent);
}

input:checked + .pcp-slider:before {
    transform: translateX(26px);
}

.pcp-slider.round {
    border-radius: 34px;
}

.pcp-slider.round:before {
    border-radius: 50%;
}

.pcp-pricing-col {
    background: #f0f0f0;
    border-radius: 8px;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.pcp-pricing-col:hover {
    transform: translateY(-5px);
}

.pcp-pricing-col.pcp-popular {
    border: 2px solid var(--pcp-primary);
}

.pcp-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pcp-accent);
    color: #fff;
    padding: 4px 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 0 0 4px 4px;
    z-index: 10;
}

.pcp-col-header {
    background: var(--pcp-primary);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pcp-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.pcp-price-box {
    margin-bottom: 15px;
}

.pcp-price, .pcp-price-sale {
    font-size: 36px;
    font-weight: 700;
    display: block;
}

.pcp-price-original {
    font-size: 20px;
    text-decoration: line-through;
    opacity: 0.7;
    display: block;
    margin-bottom: 5px;
}

.pcp-description {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
}

.pcp-col-body {
    padding: 20px;
    flex-grow: 1;
}

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

.pcp-features li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    text-align: center;
    font-size: 15px;
    color: #444;
}

.pcp-features li:last-child {
    border-bottom: none;
}

.pcp-col-footer {
    padding: 20px;
    text-align: center;
    background: #d1d5db;
}

.pcp-button {
    display: inline-block;
    background: var(--pcp-button);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: opacity 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.pcp-button:hover {
    opacity: 0.9;
    color: #fff;
}

@media (max-width: 768px) {
    .pcp-pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    .pcp-pricing-col {
        max-width: 100%;
    }
}

