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

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

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

.pcs-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    align-self: flex-start;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1;
}

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

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

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

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

.pcs-card__name {
    font-size: 18px;
    font-weight: 600;
    color: #2a1f1a;
    line-height: 1.3;
    margin: 0;
}

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

.pcs-card__price {
    font-size: 28px;
    font-weight: 700;
    color: #2a1f1a;
    line-height: 1;
}

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

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

.pcs-card__desc {
    font-size: 13px;
    color: #6b5e54;
    line-height: 1.65;
    margin: 0;
}

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

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

.pcs-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #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-cta {
    display: block;
    text-align: center;
    padding: 11px 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;
    margin-top: auto;
    line-height: 1;
}

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

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

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