.feat-wrapper {
    padding: 20px;
    background: #f8f8f8;
}

.feat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.feat-header h2 {
    color: #04042f;
    font-size: 28px;
    font-weight: 700;
}

.see-all-link {
    color: #0056ff;
    font-size: 15px;
    text-decoration: none;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    grid-gap: 30px;
}

.feat-item {
    display: block;
    text-decoration: none;
    color: #000;
}

.feat-img-wrap {
    width: 100%;
    height: 230px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

.feat-img-wrap img {
    max-height: 200px;
    object-fit: contain;
}

.feat-title {
    margin-top: 12px;
    color: #0a0a4d;
    font-weight: 600;
    font-size: 16px;
}

.feat-sku {
    color: #444;
    font-size: 14px;
    margin-top: 5px;
}

.feat-desc {
    color: #222;
    font-size: 14px;
    margin-top: 6px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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