.fc-mea-search-spotlight {
    margin: 0 0 1.25rem;
    padding: 1rem 1rem 0.35rem;
    border: 1px solid rgba(46, 130, 73, 0.22);
    border-radius: 14px;
    background: linear-gradient(180deg, #f7fcf8 0%, #ffffff 100%);
    box-shadow: 0 10px 24px rgba(46, 130, 73, 0.08);
}

.fc-mea-search-spotlight__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.fc-mea-search-spotlight__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: #e8f5ec;
    color: #2e8249;
}

.fc-mea-search-spotlight__eyebrow {
    margin: 0;
    color: #2e8249;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fc-mea-search-spotlight__title {
    margin: 0.15rem 0 0;
    color: #1f5d34;
    font-size: 1.05rem;
}

.fc-mea-search-spotlight__list .product-item {
    margin-bottom: 0.85rem;
}

@keyframes fc-mea-featured-glow {
    0%,
    100% {
        border-color: #2e8249;
        box-shadow:
            0 0 0 2px rgba(46, 130, 73, 0.45),
            0 0 14px rgba(46, 130, 73, 0.35),
            0 0 28px rgba(76, 175, 80, 0.18);
    }

    50% {
        border-color: #4caf50;
        box-shadow:
            0 0 0 4px rgba(58, 153, 89, 0.55),
            0 0 24px rgba(46, 130, 73, 0.55),
            0 0 44px rgba(76, 175, 80, 0.35);
    }
}

@keyframes fc-mea-featured-glow-ring {
    0%,
    100% {
        opacity: 0.75;
        box-shadow: 0 0 10px 2px rgba(46, 130, 73, 0.45);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 26px 8px rgba(76, 175, 80, 0.55);
    }
}

#js-product-list .product-item.is-featured,
#products .product-item.is-featured {
    position: relative;
    z-index: 0;
    overflow: visible;
    border: 2px solid #2e8249;
    background-color: #f3faf5;
    background-image: linear-gradient(180deg, #f3faf5 0%, #ffffff 100%);
    animation: fc-mea-featured-glow 2.2s ease-in-out infinite;
    will-change: box-shadow, border-color;
}

#js-product-list .product-item.is-featured::before,
#products .product-item.is-featured::before {
    content: "";
    position: absolute;
    inset: -3px;
    border: 2px solid rgba(46, 130, 73, 0.55);
    border-radius: 11px;
    pointer-events: none;
    z-index: -1;
    animation: fc-mea-featured-glow-ring 2.2s ease-in-out infinite;
}

#js-product-list .product-item.is-featured .product-header,
#products .product-item.is-featured .product-header {
    background: linear-gradient(90deg, #e8f5ec 0%, #f4fbf6 100%);
    color: #1f5d34;
    font-weight: 700;
}

#js-product-list .product-item.is-featured .h3.product-title,
#products .product-item.is-featured .h3.product-title {
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #1f5d34;
}

#js-product-list .product-item.is-featured .h3.product-title a,
#products .product-item.is-featured .h3.product-title a {
    color: #1b5330;
}

#js-product-list .product-item.is-featured .product-description-item,
#products .product-item.is-featured .product-description-item {
    color: #234d34;
    font-weight: 600;
}

#js-product-list .product-item.is-featured .detail-row,
#products .product-item.is-featured .detail-row {
    color: #2e8249;
}

#js-product-list .product-item.is-featured .detail-row .detail-text,
#products .product-item.is-featured .detail-row .detail-text {
    color: #1f5d34;
}

#js-product-list .product-item.is-featured .detail-row .detail-value,
#products .product-item.is-featured .detail-row .detail-value {
    color: #2b5f3f;
    font-weight: 600;
}

#js-product-list .product-item.is-featured .current-price-item,
#products .product-item.is-featured .current-price-item {
    color: #1f5d34;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

#js-product-list .product-item.is-featured .view-product-btn,
#products .product-item.is-featured .view-product-btn {
    background-color: #2e8249;
    font-weight: 700;
    letter-spacing: 0.02em;
}

@media (prefers-reduced-motion: reduce) {
    #js-product-list .product-item.is-featured,
    #products .product-item.is-featured {
        animation: none;
        box-shadow: 0 0 0 2px rgba(46, 130, 73, 0.35);
    }

    #js-product-list .product-item.is-featured::before,
    #products .product-item.is-featured::before {
        animation: none;
        box-shadow: none;
    }
}
