.products-showcase {
    --columns: 4;

    display: grid;
    grid-template-columns: repeat(var(--columns), 1fr);
    gap: 28px;

    width: 100%;
    margin: 20px auto !important;
    padding: 0 20px;
}

.products-showcase.columns-1 {
    --columns: 1;
    max-width: 380px;
}

.products-showcase.columns-2 {
    --columns: 2;
    max-width: 780px;
}

.products-showcase.columns-3 {
    --columns: 3;
    max-width: 1180px;
}

.products-showcase.columns-4 {
    --columns: 4;
    max-width: 1580px;
}

.products-showcase.columns-5 {
    --columns: 5;
    max-width: 1980px;
}

.products-showcase.columns-6 {
    --columns: 6;
    max-width: 2380px;
}

.product-card {
    position: relative;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #fff;
    border: 1px solid #d9e3ec;
    border-radius: 16px;

    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);

    transition: transform .2s ease, box-shadow .2s ease;

    text-decoration: none;
    color: inherit;

    height: 100%;
}

.product-card:hover,
.product-card:focus {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .14);

    text-decoration: none;
    color: inherit;
}

.product-card.featured {
    border: 2px solid #163b67;
}

.featured-badge {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);

    z-index: 10;

    background: #ffc400;
    color: #000;

    padding: 6px 14px;

    border-radius: 5px;

    font-size: .8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.card-header {
    background: linear-gradient(180deg, #4ca2ff 0%, #2e7dde 100%);
    color: #fff;

    padding: 42px 24px 28px;

    text-align: center;
}

.product-card.featured .card-header {
    background: #163b67;
}

.card-header h3 {
    margin: 0;

    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;

    color: #fff;
}

.card-header .price {
    margin-top: 12px;

    font-size: 2rem;
    font-weight: 400;
    color: #fff;
}

.card-header .price del,
.card-header .price ins,
.card-header .price bdi {
    color: inherit;
}

.card-header .price del {
    opacity: .7;
}

.card-body {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 32px 28px;
    min-height: 32px;

    text-align: center;
}

.product-attributes {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.product-attribute {
    text-align: center;
}

.product-attribute-label {
    margin-bottom: 4px;
    color: #777;
    font-size: .95rem;
}

.product-attribute-value {
    color: #222;
    font-size: 1.25rem;
    font-weight: 700;
}

.product-card .button {
    display: block;

    margin: 20px 28px 28px;

    text-align: center;

    pointer-events: none;
}

.product-card img {
    display: none;
}

@media (max-width: 768px) {

    .products-showcase {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: none !important;
    }

}

@media (max-width: 480px) {

    .products-showcase {
        grid-template-columns: 1fr !important;
        max-width: none !important;
    }

    .card-header {
        padding: 38px 20px 24px;
    }

    .card-header h3 {
        font-size: 1.6rem;
    }

    .card-header .price {
        font-size: 1.7rem;
    }

    .card-body {
        padding: 24px 20px;
        min-height: 24px;
    }

    .product-card .button {
        margin: 20px 20px 20px;
    }

}