.pcard-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pcard {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #FFF;
    border: 1px solid #E7E7E7;
    border-radius: 10px;
    padding: 16px;
    font-family: Inter, Arial, sans-serif;
    transition: .3s all ease;
}

.pcard:hover {
    border-color: #2BAAE6;
    box-shadow: 0 10px 24px rgba(44, 44, 44, 0.10);
}

.pcard .hid {
    display: none;
}

.pcard__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pcard__badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    color: #FFF;
}

.pcard__badge--hit {
    background: #DC3235;
}

.pcard__badge--recommend {
    background: #3DA001;
}

.pcard__badge--discount {
    background: #2BAAE6;
}

.pcard__badge--gift {
    background: #F2994A;
}

.pcard__media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170px;
    margin: 0 0 14px 0;
}

.pcard__media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: .3s all ease;
}

.pcard:hover .pcard__media img {
    transform: scale(1.04);
}

.pcard__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 130%;
    color: #2C2C2C;
    margin: 0 0 8px 0;
}

.pcard__descr {
    font-size: 13px;
    line-height: 145%;
    color: #6B6B6B;
    margin: 0 0 14px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.pcard__descr p {
    margin: 0;
}

.pcard__prices {
    margin: auto 0 12px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pcard__price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
}

.pcard__price-ttl {
    font-size: 13px;
    color: #6B6B6B;
}

.pcard__price-val {
    font-size: 18px;
    font-weight: 700;
    color: #2C2C2C;
    white-space: nowrap;
}

.pcard__note {
    font-size: 11px;
    line-height: 140%;
    color: #9E9E9E;
    margin: 0 0 12px 0;
}

.pcard__note .tt {
    color: inherit;
}

.pcard__actions {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.pcard__btn {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 14px;
    background: #2BAAE6;
    color: #FFF;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border-radius: 6px;
    transition: .3s all ease;
}

.pcard__btn:hover {
    background: #1D96D0;
    color: #FFF;
}

.pcard__btn-sub {
    font-weight: 400;
}

.pcard__extra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 12px 0 0 0;
    font-size: 13px;
}

.pcard__reviews a {
    color: #BABABA;
    transition: .3s all ease;
}

.pcard__reviews a:hover {
    color: #2BAAE6;
}

.pcard__share {
    font-size: 13px;
}

@media (max-width: 767px) {
    .pcard-list {
        grid-template-columns: 1fr;
    }
}
