.pg-283a8f46-grid {
    display: grid;
    gap: 24px;
    width: 100%;
}

.pg-283a8f46-cols-1 .pg-283a8f46-grid { grid-template-columns: 1fr; }
.pg-283a8f46-cols-2 .pg-283a8f46-grid { grid-template-columns: repeat(2, 1fr); }
.pg-283a8f46-cols-3 .pg-283a8f46-grid { grid-template-columns: repeat(3, 1fr); }
.pg-283a8f46-cols-4 .pg-283a8f46-grid { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .pg-283a8f46-cols-3 .pg-283a8f46-grid,
    .pg-283a8f46-cols-4 .pg-283a8f46-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .pg-283a8f46-grid {
        grid-template-columns: 1fr !important;
    }
}

.pg-283a8f46-card {
    border-radius: 24px;
    overflow: hidden;
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pg-283a8f46-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.pg-283a8f46-img-container {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background-color: #eee;
}

.pg-283a8f46-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pg-283a8f46-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pg-283a8f46-badge i,
.pg-283a8f46-badge svg {
    color: #111;
    font-size: 14px;
    width: 14px;
    height: 14px;
}

.pg-283a8f46-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-top: 20px;
}

.pg-283a8f46-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.pg-283a8f46-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.pg-283a8f46-price {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    white-space: nowrap;
}

.pg-283a8f46-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin: 12px 0 20px 0;
    flex-grow: 1;
}

.pg-283a8f46-btn {
    border: none;
    border-radius: 20px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.1s ease;
    width: 100%;
}

.pg-283a8f46-btn:hover {
    filter: brightness(0.95);
}

.pg-283a8f46-btn:active {
    transform: scale(0.98);
}

.pg-283a8f46-btn-icon i,
.pg-283a8f46-btn-icon svg {
    font-size: 13px;
    width: 13px;
    height: 13px;
    fill: currentColor;
}
