.cps-showcase {
    --cps-bg: #f4f1e9;
    --cps-text: #3f4449;
    --cps-card: #ffffff;
    --cps-button: #3f4449;
    --cps-button-text: #ffffff;
    width: min(100%, 1240px);
    margin: 0 auto;
    padding: clamp(30px, 5vw, 70px) clamp(20px, 4vw, 50px);
    color: var(--cps-text);
    box-sizing: border-box;
}

.cps-showcase *,
.cps-showcase *::before,
.cps-showcase *::after {
    box-sizing: border-box;
}

.cps-product-row {
    display: grid;
    grid-template-columns: minmax(280px, 500px) minmax(0, 1fr);
    align-items: center;
    justify-content: center;
    gap: clamp(40px, 7vw, 90px);
    margin: 0 0 clamp(70px, 9vw, 115px);
}

.cps-product-row:last-child {
    margin-bottom: 0;
}

.cps-product-row.cps-row-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 500px);
}

.cps-row-reverse .cps-product-visual {
    order: 2;
}

.cps-row-reverse .cps-product-copy {
    order: 1;
}

.cps-product-visual {
    position: relative;
    display: block;
    width: 100%;
    max-width: 500px;
    justify-self: center;
    overflow: hidden;
    color: inherit;
    background: var(--cps-card);
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
}

.cps-image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #e8e8e8;
}

.cps-product-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.cps-product-visual:hover .cps-product-image,
.cps-product-visual:focus .cps-product-image {
    transform: scale(1.025);
}

.cps-image-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, .92);
    text-align: center;
    line-height: 1.25;
}

.cps-caption-title {
    font-size: 16px;
    font-weight: 800;
}

.cps-caption-category {
    margin-top: 3px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.cps-caption-category a {
    color: inherit;
    text-decoration: none;
}

.cps-caption-price {
    margin-top: 7px;
    font-size: 14px;
    font-weight: 800;
}

.cps-caption-price del {
    opacity: .6;
    margin-right: 5px;
}

.cps-product-copy {
    width: 100%;
    max-width: 560px;
    padding: clamp(6px, 1vw, 14px) 0;
}

.cps-product-title {
    margin: 0 0 14px;
    color: var(--cps-text);
    font-size: clamp(26px, 2.2vw, 36px);
    line-height: 1.12;
    font-weight: 800;
}

.cps-product-sku {
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 700;
}

.cps-product-description {
    font-size: 15px;
    line-height: 1.65;
    font-weight: 600;
}

.cps-product-description p {
    margin: 0 0 1em;
}

.cps-buy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 12px;
    padding: 10px 22px;
    border: 2px solid var(--cps-button);
    background: var(--cps-button);
    color: var(--cps-button-text) !important;
    text-decoration: none !important;
    font-weight: 800;
    transition: opacity .2s ease, transform .2s ease;
}

.cps-buy-button:hover,
.cps-buy-button:focus {
    opacity: .86;
    transform: translateY(-1px);
}

.cps-notice {
    padding: 14px 18px;
    background: #fff7d6;
    border-left: 4px solid #e2b600;
}

@media (max-width: 900px) {
    .cps-showcase {
        padding-inline: 24px;
    }

    .cps-product-row,
    .cps-product-row.cps-row-reverse {
        grid-template-columns: minmax(250px, 420px) minmax(0, 1fr);
        gap: 36px;
    }
}

@media (max-width: 700px) {
    .cps-showcase {
        padding: 30px 18px;
    }

    .cps-product-row,
    .cps-product-row.cps-row-reverse {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 72px;
    }

    .cps-row-reverse .cps-product-visual,
    .cps-row-reverse .cps-product-copy {
        order: initial;
    }

    .cps-product-visual {
        max-width: 460px;
    }

    .cps-product-copy {
        max-width: 560px;
        margin: 0 auto;
    }

    .cps-image-caption {
        bottom: 10%;
    }
}
