/* Общие стили */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
}

.card-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.card-info {
    padding: 15px 0;
}

.card-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.card-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 15px;
}

.card-price {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 15px;
}

.buy-button {
    display: inline-block;
    text-decoration: none;
    background-color: #28a745;
    color: white;
    padding: 12px 20px;
    font-size: 1.2em;
    border-radius: 5px;
    cursor: pointer;
}

.buy-button:hover {
    background-color: #218838;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 600px) {
    .card {
        width: 90%;
        padding: 15px;
    }

    .card-title {
        font-size: 1.3em;
    }

    .card-description {
        font-size: 0.9em;
    }

    .card-price {
        font-size: 1.1em;
    }

    .buy-button {
        font-size: 1em;
        padding: 10px 15px;
    }
}
