/* ===== RESET ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    background:#fff8e7;
    color:#333;
}

/* ===== HEADER ===== */

header{
    background:#b8860b;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
}

header h1{
    color:white;
    font-size:28px;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    font-weight:bold;
}

nav a:hover{
    color:#ffe066;
}

/* ===== BANNER ===== */

.banner{
    position:relative;
}

.banner img{
    width:100%;
    height:350px;
    object-fit:cover;
}

.banner-text{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:white;
}

.banner-text h2{
    font-size:42px;
}

.banner button{
    margin-top:20px;
}

/* ===== BUTTON ===== */

button{
    background:#b8860b;
    color:white;
    border:none;
    padding:12px 25px;
    border-radius:5px;
    cursor:pointer;
}

button:hover{
    background:#8b6508;
}

/* ===== PRODUCTS ===== */

.products{
    padding:40px;
    text-align:center;
}

.product-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
}

.product{
    width:250px;
    background:white;
    border-radius:10px;
    padding:15px;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
}

.product img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:8px;
}

.product h3{
    margin:10px 0;
}

.product p{
    color:#b8860b;
    font-weight:bold;
}

/* ===== LOGIN ===== */

.login-page{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
}

.login-box{
    width:350px;
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
    text-align:center;
}

.login-box input,
select,
textarea{
    width:100%;
    padding:12px;
    margin:10px 0;
    border:1px solid #ccc;
    border-radius:5px;
}

/* ===== TABLE ===== */

table{
    width:95%;
    margin:30px auto;
    border-collapse:collapse;
    background:white;
}

th{
    background:#b8860b;
    color:white;
    padding:12px;
}

td{
    padding:12px;
    border:1px solid #ddd;
    text-align:center;
}

/* ===== FOOTER ===== */

.footer{
    background:#222;
    color:white;
    text-align:center;
    padding:30px 20px;
    margin-top:40px;
}

.footer h3{
    color:#d4af37;
    margin-bottom:15px;
}

.footer p{
    margin:8px 0;
}
.product-page{

display:flex;

flex-wrap:wrap;

gap:40px;

padding:40px;

}

.product-image{

flex:1;

text-align:center;

}

.product-image img{

width:100%;

max-width:400px;

border-radius:15px;

box-shadow:0 5px 15px rgba(0,0,0,.2);

}

.product-info{

flex:1;

background:white;

padding:30px;

border-radius:15px;

box-shadow:0 5px 15px rgba(0,0,0,.15);

}

.product-info h2{

font-size:32px;

margin-bottom:10px;

}

.product-info h3{

color:#b8860b;

font-size:30px;

margin-bottom:20px;

}

.product-info p{

line-height:30px;

margin-bottom:15px;

}

/* ===== LINKS ===== */

a{
    text-decoration:none;
}