.hag-featured-products {
    margin: 32px 0;
}

.hag-featured-products__header {
    max-width: 780px;
    margin: 0 auto 22px;
    text-align: center;
}

.hag-featured-products__header h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.12;
}

.hag-featured-products__intro {
    color: #4b5563;
    font-size: 17px;
}

.hag-featured-products__intro p {
    margin: 0;
}

.hag-featured-products__grid {
    display: grid;
    gap: 22px;
}

.hag-featured-products--cols-1 .hag-featured-products__grid { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.hag-featured-products--cols-2 .hag-featured-products__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hag-featured-products--cols-3 .hag-featured-products__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hag-featured-products--cols-4 .hag-featured-products__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hag-featured-products--cols-5 .hag-featured-products__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.hag-featured-products--cols-6 .hag-featured-products__grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.hag-featured-products__card {
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.hag-featured-products__image {
    display: block;
    background: #f3f4f6;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.hag-featured-products__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 180ms ease;
}

.hag-featured-products__card:hover .hag-featured-products__image img {
    transform: scale(1.035);
}

.hag-featured-products__content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hag-featured-products__content h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.3;
}

.hag-featured-products__content h3 a {
    color: inherit;
    text-decoration: none;
}

.hag-featured-products__content h3 a:hover {
    text-decoration: underline;
}

.hag-featured-products__price {
    font-weight: 700;
    margin-bottom: 8px;
}

.hag-featured-products__price del {
    opacity: 0.55;
    font-weight: 400;
}

.hag-featured-products__excerpt {
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 14px;
}

a.hag-featured-products__button,
a.hag-featured-products__button:link,
a.hag-featured-products__button:visited,
a.hag-featured-products__button:hover,
a.hag-featured-products__button:focus,
a.hag-featured-products__button:active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: auto;
    padding: 11px 14px;
    border-radius: 999px;
    background: #3d6c89 !important;
    background-color: #3d6c89 !important;
    border: 1px solid #3d6c89 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.1;
    box-shadow: none;
}

a.hag-featured-products__button:hover,
a.hag-featured-products__button:focus {
    background: #2f5870 !important;
    background-color: #2f5870 !important;
    border-color: #2f5870 !important;
    color: #ffffff !important;
    filter: none;
}

.hag-featured-products__disclosure {
    margin: 14px 0 0;
    color: #6b7280;
    font-size: 13px;
    text-align: center;
}

.hag-fpm-missing {
    padding: 12px 14px;
    background: #fff8e5;
    border: 1px solid #f0c36d;
    border-radius: 8px;
}

@media (max-width: 1100px) {
    .hag-featured-products--cols-5 .hag-featured-products__grid,
    .hag-featured-products--cols-6 .hag-featured-products__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .hag-featured-products__grid,
    .hag-featured-products--cols-3 .hag-featured-products__grid,
    .hag-featured-products--cols-4 .hag-featured-products__grid,
    .hag-featured-products--cols-5 .hag-featured-products__grid,
    .hag-featured-products--cols-6 .hag-featured-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .hag-featured-products {
        margin: 24px 0;
    }

    .hag-featured-products__grid,
    .hag-featured-products--cols-2 .hag-featured-products__grid,
    .hag-featured-products--cols-3 .hag-featured-products__grid,
    .hag-featured-products--cols-4 .hag-featured-products__grid,
    .hag-featured-products--cols-5 .hag-featured-products__grid,
    .hag-featured-products--cols-6 .hag-featured-products__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
