.card {
    width: 300px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    padding: 1rem;
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.card-content {
    padding: 20px;
}

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

.card-description {
    color: #666;
    margin-bottom: 15px;
}

.card-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.card-buttons {
    display: flex;
    justify-content: space-between;
    padding: 0 20px 20px 20px;
}

.button {
    flex-grow: 1;
    padding: 10px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-primary {
    background-color: #3498db;
}

.button-secondary {
    background-color: #e74c3c;
}

.button:hover {
    background-color: #2c3e50;
}