.featured {
    padding: var(--section-pad) 0;
    background: var(--off-white);
}

.featured__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.featured__viewall {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s ease;
    flex-shrink: 0;
}
.featured__viewall:hover { gap: 0.7rem; }
.featured__viewall svg { width: 16px; height: 16px; }

.featured__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}
.product-card:hover {
    border-color: var(--border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.product-card__img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: var(--cream);
}
.product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card__img img {
    transform: scale(1.05);
}

.product-card__tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.65rem;
    border-radius: 2px;
}
.product-card__tag--best { background: var(--red); color: var(--white); }
.product-card__tag--new  { background: var(--navy); color: var(--white); }
.product-card__tag--nsf  { background: var(--green); color: var(--white); }

.product-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.product-card__cat {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.product-card__name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.65rem;
    line-height: 1.3;
    transition: color 0.2s ease;
}
.product-card:hover .product-card__name { color: var(--red); }

.product-card__specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}
.product-card__spec {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}
.product-card__spec strong {
    color: var(--gray-600);
    font-weight: 500;
}

.product-card__actions {
    display: flex;
    gap: 0.6rem;
}

.product-card__btn {
    flex: 1;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--gray-600);
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    display: block;
}
.product-card__btn:hover {
    border-color: var(--navy);
    color: var(--navy);
}
.product-card__btn--primary {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}
.product-card__btn--primary:hover {
    background: var(--red-hover);
    border-color: var(--red-hover);
}

@media (max-width: 1024px) {
    .featured__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .featured__header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
@media (max-width: 480px) {
    .featured__grid { grid-template-columns: 1fr; }
}
