body {
    background: #f5f5f5;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.cards-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.card {
    background: white;
    width: 280px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}

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

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.card h2 {
    color: #333;
    margin: 15px 0 10px;
}

.card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    flex-grow: 1;
}

.card-footer {
    margin-top: auto;
}

.card-footer .price {
    font-size: 24px;
    font-weight: bold;
    color: #e67e22;
    margin: 15px 0;
}

.card-footer button {
    background: #e67e22;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.card-footer button:hover {
    background: #d35400;
}