.pt-grid-d318854c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding-top: 35px;
    font-family: Arial, sans-serif;
}

.pt-card-d318854c {
    background: #fff;
    border: 1px solid #c7af6a;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pt-badge-d318854c {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

.pt-header-d318854c {
    padding: 45px 20px 25px;
    text-align: center;
    border-radius: 8px 8px 0 0;
}

.pt-title-d318854c {
    margin: 0 0 15px;
    font-size: 22px;
    font-weight: 500;
    color: #000;
}

.pt-prices-d318854c {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pt-old-price-d318854c {
    text-decoration: line-through;
    color: #999;
    font-size: 1.4rem;
}

.pt-new-price-d318854c {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
}

.pt-subtext-d318854c {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 20px;
}

.pt-btn-d318854c {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #333;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    width: 80%;
    max-width: 250px;
    transition: background 0.3s;
}

.pt-btn-d318854c:hover {
    background: #444;
    color: #fff;
}

.pt-body-d318854c {
    padding: 25px 20px;
    flex-grow: 1;
}

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

.pt-features-list-d318854c li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.4;
    color: #222;
}

.pt-feat-icon-d318854c {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    color: #fff;
    margin-top: 2px;
}

.pt-feat-icon-d318854c.check {
    background-color: #28a745;
}

.pt-feat-icon-d318854c.cross {
    background-color: #d84545;
}

.pt-feat-text-d318854c strong {
    display: block;
    font-size: 14.5px;
    color: #000;
    margin-bottom: 4px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .pt-grid-d318854c {
        grid-template-columns: 1fr;
    }
}