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

/* Video Background */
.featured-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.featured-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Light overlay so video is visible beneath products */
    z-index: 1;
}

/* Ensure content is above video */
.featured-products .container {
    position: relative;
    z-index: 2;
}

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

/* Update text colors for dark background */
.featured-header .section-tag {
    color: var(--accent-primary, #B8860B);
}

.featured-header .section-title-v2 {
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.featured-card {
    background: rgba(255, 255, 255, 0.95);
    /* Semi-transparent white to let video show through slightly */
    backdrop-filter: blur(10px);
    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.15);
}

.featured-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 0 1.5px var(--accent-primary, #B8860B);
}

.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;
    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, #B8860B);
    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;
}

/* Clickable category link in featured products */
.featured-category {
    color: var(--text-secondary, #636366);
    text-decoration: none;
    transition: color 0.2s ease;
}

.featured-category:hover {
    color: var(--accent-primary, #B8860B);
    text-decoration: underline;
}

.view-more-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.view-more-container .btn {
    background: var(--accent-primary, #B8860B);
    color: #FFFFFF;
    border: 2px solid var(--accent-primary, #B8860B);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
}

.view-more-container .btn:hover {
    background: #FFFFFF;
    color: var(--accent-primary, #B8860B);
    box-shadow: 0 6px 25px rgba(184, 134, 11, 0.5);
}

/* ─── 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;
    }
}