* {margin:0;padding:0;box-sizing:border-box}

body {
    font-family: Arial;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px
}

.card {
    width: 250px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center
}

.card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block
}

.card h1 {
    font-size: 14px;
    color: black;
    margin: 12px 0 4px;
    text-transform: uppercase
}

.card h2 {
    font-size: 22px;
    color: black;
    margin-bottom: 12px
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px
}

.old {
    color: #666;
    text-decoration: line-through;
    font-size: 15px
}

.new {
    color: red;
    font-size: 20px;
    font-weight: bold
}

button {
    width: 100%;
    padding: 12px;
    background: black;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer
}

button:hover {
    background: #333
}

@media (max-width: 768px) {
    body {padding: 10px}
    .card {width: 100%;max-width: 340px}
    .card img {height: 260px}
}