.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.title {
    text-align: center;
    margin-bottom: 50px;
}

.title h1 {
    margin: 0;
    font-size: 32px;
}

.products {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139,92,246,0.25);
}

.featured {
    border: 3px solid #8b5cf6;
    transform: scale(1.05);
}

.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.card h2 {
    margin-bottom: 10px;
}

.card p {
    color: #555;
    min-height: 50px;
}

.price {
    font-size: 34px;
    font-weight: bold;
    margin: 20px 0;
}

.discount {
    color: #7c3aed;
    font-weight: bold;
    margin-bottom: 20px;
}

button {
    background: #8b5cf6;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    width: 100%;
}

button:hover {
    background: #7c3aed;
}

/* 📱 Планшеты */
@media (max-width: 1024px) {
    .container {
        justify-content: center;
    }

    .card {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

/* 📱 Мобильные */
@media (max-width: 768px) {
    .card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .featured {
        transform: none;
    }

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