.pl-product-card {
    --pl-pc-radius: var(--pl-pc-radius-desktop, 20px);
    --pl-pc-padding-block: var(--pl-pc-padding-block-desktop, 20px);
    --pl-pc-padding-inline: var(--pl-pc-padding-inline-desktop, 10px);
    --pl-pc-image-height: var(--pl-pc-image-height-desktop, 300px);
    --pl-pc-border: rgba(196, 168, 130, 0.3);

    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--pl-pc-border);
    border-radius: var(--pl-pc-radius);
}

@media (width <=980px) {
    .pl-product-card {
        --pl-pc-radius: var(--pl-pc-radius-tablet, var(--pl-pc-radius-desktop, 20px));
        --pl-pc-padding-block: var(--pl-pc-padding-block-tablet, var(--pl-pc-padding-block-desktop, 20px));
        --pl-pc-padding-inline: var(--pl-pc-padding-inline-tablet, var(--pl-pc-padding-inline-desktop, 10px));
        --pl-pc-image-height: var(--pl-pc-image-height-tablet, var(--pl-pc-image-height-desktop, 300px));
    }
}

@media (width <=767px) {
    .pl-product-card {
        --pl-pc-radius: var(--pl-pc-radius-phone, var(--pl-pc-radius-tablet, var(--pl-pc-radius-desktop, 20px)));
        --pl-pc-padding-block: var(--pl-pc-padding-block-phone, var(--pl-pc-padding-block-tablet, var(--pl-pc-padding-block-desktop, 20px)));
        --pl-pc-padding-inline: var(--pl-pc-padding-inline-phone, var(--pl-pc-padding-inline-tablet, var(--pl-pc-padding-inline-desktop, 10px)));
        --pl-pc-image-height: var(--pl-pc-image-height-phone, var(--pl-pc-image-height-tablet, var(--pl-pc-image-height-desktop, 300px)));
    }
}

.pl-product-card__media {
    display: block;
    overflow: hidden;
    block-size: var(--pl-pc-image-height);
    background: var(--pl-pc-image-background, #e7f0f7);
}

/* The artwork carries its own background, so it fills the media area edge to
   edge. Image Area Height drives the crop -- set it to the asset's aspect ratio
   if you need the whole image visible. */
.pl-product-card__image {
    display: block;
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
}

.pl-product-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: center;
    padding: var(--pl-pc-padding-block) var(--pl-pc-padding-inline);
    text-align: center;
}

.pl-product-card__eyebrow {
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1.1px;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
}

.pl-product-card__badge {
    display: flex;
    align-items: center;
    margin-block-start: 14px;
    padding: 6px 16px;
    border-radius: 40px;
    background: var(--pl-pc-badge-background, #f2ebe4);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    line-height: normal;
}

.pl-product-card__price {
    margin-block-start: 14px;
    color: #000;
    font-size: 44px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}

.pl-product-card__compare {
    margin-block-start: 6px;
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    text-decoration-line: line-through;
}

.pl-product-card__cta {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    align-self: stretch;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    block-size: 60px;
    margin-block-start: 20px;
    padding: 16px;
    border-radius: 9999px;
    background: var(--pl-pc-accent, #f96900);
    color: var(--pl-pc-accent-text, #000);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease;
}

.pl-product-card__cta:hover,
.pl-product-card__cta:focus-visible {
    background: var(--pl-pc-accent-hover, #c75400);
}

.pl-product-card__disclaimer {
    margin-block-start: 14px;
    color: #0d1b2a;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}