.revenco-featured-products,
.revenco-featured-products * {
    box-sizing: border-box;
}

.revenco-featured-products {
    width: 100%;
    max-width: none;
    position: relative;
    overflow: hidden;
    background: #fff;
    font-family: inherit;
}

.revenco-featured-products.revenco-fp-stretch {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.revenco-fp-inner {
    width: 100%;
    max-width: 1880px;
    margin: 0 auto;
}

.revenco-fp-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.revenco-fp-title-wrap {
    min-width: 0;
}

.revenco-fp-eyebrow {
    margin: 0 0 3px;
    color: #ef1721;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}

.revenco-fp-heading {
    margin: 0;
    color: #111;
    font-size: clamp(24px, 2vw, 38px);
    line-height: 1.08;
    font-weight: 800;
    text-transform: uppercase;
}

.revenco-fp-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex: 0 0 auto;
    color: #111;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
    white-space: nowrap;
    transition: color .2s ease;
}

.revenco-fp-view-arrow {
    color: #ef1721;
    font-size: 21px;
    line-height: 1;
}

.revenco-fp-grid {
    display: grid;
    grid-template-columns: repeat(var(--revenco-fp-cols-desktop, 6), minmax(0, 1fr));
    align-items: start;
    width: 100%;
    column-gap: 20px;
    row-gap: 20px;
}

.revenco-fp-card {
    width: 100%;
    min-width: 0;
    align-self: start;
    overflow: hidden;
    background: #fff;
}

.revenco-fp-image-link {
    display: block;
    width: 100%;
    text-decoration: none !important;
}

.revenco-fp-image {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    background: #f2f2f2;
    line-height: 0;
}

.revenco-fp-force-ratio .revenco-fp-image {
    aspect-ratio: var(--revenco-fp-aspect-ratio, 4 / 3);
}

.revenco-fp-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    border: 0;
}

.revenco-fp-force-ratio .revenco-fp-image img {
    width: 100%;
    height: 100%;
    object-fit: var(--revenco-fp-image-fit, contain);
    object-position: center;
}

.revenco-fp-card-body {
    width: 100%;
    padding: 13px 8px 15px;
    text-align: center;
    background: inherit;
}

.revenco-fp-product-title {
    margin: 0 0 13px;
    color: #111;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 700;
    text-transform: uppercase;
}

.revenco-fp-product-title a {
    color: inherit;
    text-decoration: none !important;
}

.revenco-fp-cta {
    display: inline-block;
    color: #ef1721;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: color .2s ease;
}

.revenco-fp-empty {
    padding: 24px;
    border: 1px dashed #ccc;
    text-align: center;
    color: #666;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .revenco-fp-grid {
        grid-template-columns: repeat(var(--revenco-fp-cols-tablet, 3), minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .revenco-fp-header {
        align-items: flex-end;
        gap: 12px;
    }

    .revenco-fp-eyebrow {
        font-size: 11px;
    }

    .revenco-fp-heading {
        font-size: clamp(19px, 6vw, 26px);
    }

    .revenco-fp-view-all {
        gap: 7px;
        font-size: 10px;
    }

    .revenco-fp-view-arrow {
        font-size: 16px;
    }

    .revenco-fp-grid {
        grid-template-columns: repeat(var(--revenco-fp-cols-mobile, 2), minmax(0, 1fr));
    }

    .revenco-fp-card-body {
        padding: 10px 5px 12px;
    }

    .revenco-fp-product-title {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .revenco-fp-cta {
        font-size: 10px;
    }
}

@media (max-width: 420px) {
    .revenco-fp-header {
        align-items: flex-start;
    }

    .revenco-fp-view-all {
        margin-top: 4px;
    }
}
