.featured-products {
    padding: 100px 0;
    background: #F9F9FB;
    /* Light backdrop to make white cards pop */
    overflow: hidden;
    position: relative;
}

.featured-header {
    margin-bottom: 48px;
    text-align: center;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.featured-card {
    background: #FFFFFF;
    /* Pure white to match product image backgrounds */
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1.5px var(--accent-primary);
}

.featured-img-wrap {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    padding: 10px;
    position: relative;
}

/* Radial gradient spotlight removed for ultra-clean look */

.featured-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* mix-blend-mode: multiply ensures white backgrounds of images disappear */
    mix-blend-mode: multiply;
    z-index: 1;
    position: relative;
}

.featured-card:hover .featured-img-wrap img {
    transform: scale(1.1) translateY(-10px);
}

/* View overlay on hover (mirroring catalog card) */
.featured-img-wrap::after {
    content: 'View Details →';
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-primary);
    letter-spacing: 0.5px;
    transition: bottom 0.3s ease;
}

.featured-card:hover .featured-img-wrap::after {
    bottom: 0;
}

.featured-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.featured-info h3 {
    font-family: var(--font-display, 'Rajdhani', sans-serif);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary, #1C1C1E);
    margin-bottom: 6px;
    line-height: 1.3;
}

.featured-info p {
    font-size: 0.82rem;
    color: var(--text-secondary, #636366);
    line-height: 1.5;
    margin-bottom: 12px;
    flex-grow: 1;
}

.view-more-container {
    text-align: center;
}

/* ─── Reveal Animations ─── */
.reveal-element {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-from-bottom {
    transform: translateY(50px);
}

.reveal-from-left {
    transform: translateX(-50px);
}

.reveal-from-right {
    transform: translateX(50px);
}

.reveal-zoom-in {
    transform: scale(0.8);
}

.reveal-active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .featured-img-wrap {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
}