.featured-section {
    padding: 80px 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.featured-card {
    background: linear-gradient(135deg, #1a1a1d 0%, #2a2a2f 100%);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
}

.featured-card:hover {
    transform: translateY(-5px);
}

.featured-image {
    height: 300px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.featured-card:hover .featured-image img {
    transform: scale(1.05);
}

.featured-content {
    padding: 25px;
}

.featured-title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.featured-desc {
    color: #888;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.featured-price {
    font-size: 28px;
    font-weight: 700;
    color: #4ade80;
}

.categories-section {
    padding: 60px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.category-card {
    background: #1a1a1d;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.category-card:hover {
    background: #2a2a2f;
    border-color: #4ade80;
}

.category-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.category-name {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.banner-section {
    padding: 60px 0;
}

.banner-card {
    background: linear-gradient(135deg, #2a2a2f 0%, #1a1a1d 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.banner-card h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
}

.banner-card p {
    color: #888;
    font-size: 16px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .featured-section {
        padding: 40px 0;
    }
    
    .featured-title {
        font-size: 20px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }
    
    .category-card {
        padding: 20px 15px;
    }
    
    .category-icon {
        font-size: 32px;
    }
    
    .banner-card h3 {
        font-size: 24px;
    }
}
