* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(to right, #e8edf3, #d9e2ec);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: flex;
    gap: 40px;
}

.card {
    background: #f4f6f8;
    width: 280px;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.product-img {
    width: 100%;
    height: 180px;
    background: #dfe6ed;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card h2 {
    margin-top: 20px;
    font-size: 20px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

.status {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.in-stock {
    background: #d4f3e3;
    color: #1b7a3a;
}

.out-stock {
    background: #f8d7da;
    color: #b02a37;
}
