body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
}

header {
    background: #6b4f4f;
    color: white;
    padding: 1rem;
    text-align: center;
}

.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.product {
    background: white;
    border: 1px solid #ccc;
    margin: 15px;
    padding: 10px;
    width: 250px;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

    .product img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

.size-select {
    margin: 10px 0;
}

button {
    background-color: #6b4f4f;
    color: white;
    padding: 10px 20px;
    border: none;
    margin-top: 20px;
    cursor: pointer;
}
