body {
    font-family: Arial;
    background: #fff3e0;
    margin: 0;
}

header {
    background: #af1e1e;
    color: white;
    text-align: center;
    padding: 20px;
}

.product-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px;
}

.product-card {
    background: white;
    width: 250px;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background: #0056b3;
}

.detail {
    background: white;
    width: 400px;
    margin: 30px auto;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.detail img {
    width: 100%;
    border-radius: 8px;
}
