.pcs-cp-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: inherit;
}

.pcs-cp-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2rem;
}

.pcs-cp-tab {
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #c8bfb8;
    background: transparent;
    color: #6b5e54;
    transition: all 0.15s ease;
    font-family: inherit;
    line-height: 1;
}

.pcs-cp-tab:hover {
    background: #f5eeea;
    border-color: #a8968b;
}

.pcs-cp-tab.active {
    background: #764d4b;
    color: #f5e8e8;
    border-color: #764d4b;
}

.pcs-cp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.pcs-cp-card {
    background: #fff;
    border: 1px solid #e8ddd8;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.15s ease;
}

.pcs-cp-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.pcs-cp-card--featured {
    border: 2px solid #5c3a38;
}

.pcs-cp-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 6px;
    align-self: flex-start;
    letter-spacing: 0.02em;
}

.pcs-cp-badge--vivi {
    background: #f5e8e8;
    color: #764d4b;
}

.pcs-cp-badge--named {
    background: #EAF3DE;
    color: #3B6D11;
}

.pcs-cp-badge--risma {
    background: #E1F5EE;
    color: #0F6E56;
}

.pcs-cp-badge--popular {
    background: #5c3a38;
    color: #f5e8e8;
}

.pcs-cp-name {
    font-size: 17px;
    font-weight: 600;
    color: #2a1f1a;
    line-height: 1.3;
}

.pcs-cp-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.pcs-cp-price {
    font-size: 26px;
    font-weight: 700;
    color: #2a1f1a;
}

.pcs-cp-currency {
    font-size: 13px;
    color: #8c7b72;
}

.pcs-cp-coverage {
    font-size: 12px;
    color: #6b5e54;
    background: #f8f2ef;
    padding: 6px 10px;
    border-radius: 6px;
}

.pcs-cp-desc {
    font-size: 13px;
    color: #6b5e54;
    line-height: 1.6;
    margin: 0;
}

.pcs-cp-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.pcs-cp-features li {
    font-size: 13px;
    color: #4a3f38;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.pcs-cp-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #1D9E75;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.pcs-cp-cta {
    display: block;
    text-align: center;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid #c8bfb8;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    color: #2a1f1a;
    text-decoration: none;
    transition: all 0.15s ease;
    font-family: inherit;
    margin-top: auto;
}

.pcs-cp-cta:hover {
    background: #f5eeea;
    border-color: #a8968b;
    color: #2a1f1a;
    text-decoration: none;
}

.pcs-cp-cta--primary {
    background: #764d4b;
    color: #fff !important;
    border-color: #764d4b;
}

.pcs-cp-cta--primary:hover {
    background: #5c3a38;
    border-color: #5c3a38;
    color: #fff !important;
}

.pcs-cp-card.pcs-hidden {
    display: none;
}

@media (max-width: 600px) {
    .pcs-cp-grid {
        grid-template-columns: 1fr;
    }

    .pcs-cp-tab {
        font-size: 13px;
        padding: 7px 14px;
    }
}
