*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f4f1ec;
}

/* ===== HEADER ===== */
header{
    background:#6b4f2d;
    color:white;
    padding:20px;
    text-align:center;
}

/* ===== NAV ===== */
nav ul{
    list-style:none;
    background:#8b6b3f;
    display:flex;
    justify-content:center;
}

nav ul li a{
    color:white;
    text-decoration:none;
    padding:12px 16px;
    display:block;
}

nav ul li a:hover{
    background:#6b4f2d;
}

/* ===== SEARCH ===== */
.search-box{
    text-align:center;
    margin:20px 0;
}

.search-box input{
    width:300px;
    padding:10px;
    font-size:16px;
    border-radius:6px;
    border:1px solid #ccc;
}

/* ===== PRODUCT LIST ===== */
.product-list{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    padding:30px;
}

.product-card{
    background:white;
    width:230px;
    margin:15px;
    padding:15px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 18px rgba(0,0,0,0.25);
}

.product-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:8px;
}

/* ===== PRICE ===== */
.price{
    color:#c0392b;
    font-weight:bold;
    margin:10px 0;
}

/* ===== BUTTON (ÉP ĐÈ BOOTSTRAP) ===== */
.button{
    background:#6b4f2d !important;
    color:white !important;
    padding:10px;
    border:none;
    border-radius:6px;
    cursor:pointer;
    display:inline-block;
}

.button:hover{
    background:#8b6b3f !important;
}

/* ===== FOOTER ===== */
footer{
    background:#6b4f2d;
    color:white;
    text-align:center;
    padding:10px;
}

/* ===== MOBILE ===== */
@media(max-width:600px){
    .product-card{
        width:90%;
    }

    .search-box input{
        width:90%;
    }
}