body {
    margin: 0;
    font-family: Georgia, serif;
    background: #fbf5ed;
    color: #4b4038;
}

header{
    background:#EBE3D7;
    text-align:center;
    padding:0;
}

h1 {
    font-size: 3.2rem;
    font-weight: normal;
    margin: 0;
    color: #80665a;
}

.subtitle {
    font-size: 1.2rem;
    margin-top: 15px;
}

nav{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:45px;
    padding:8px 20px;
    background:white;
    position:sticky;
    top:0;
    box-shadow:0 3px 15px rgba(0,0,0,.06);
    z-index:1000;
}

nav a{
    color:#80665a;
    text-decoration:none;
    font-size:1rem;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:.3s;
}

nav a:hover{

    color:#b58c74;

}

section {
    max-width: 1000px;
    margin: auto;
    padding: 50px 20px;
}

.intro {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.card {
    background: white;
    width: 260px;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(120, 90, 70, 0.12);
}

.card h2 {
    color: #927565;
    font-weight: normal;
}

footer {
    text-align: center;
    padding: 30px;
    background: #f5e8dc;
    color: #80665a;
}

.card img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:12px;
    margin-bottom:15px;
}

.card{
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.hero-logo{
    display:block;
    width:95vw;
    max-width:none;
    height:420px;
    object-fit:contain;
    margin:0 auto;
}

.hero{
    height:70vh;
    min-height:500px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:
        linear-gradient(rgba(245,237,228,.45), rgba(245,237,228,.45)),
        url("../images/hero.jpg");
    background-size:cover;
    background-position:center;
}

.hero-content{
    max-width:700px;
}

.hero h2{
    font-size:3rem;
    font-weight:normal;
    color:#80665a;

}

.hero p{
    font-size:1.2rem;
    line-height:1.8;
    margin:30px 0;
}

.hero-button{
    display:inline-block;
    padding:16px 34px;
    background:#80665a;
    color:white;
    text-decoration:none;
    border-radius:50px;
    transition:.3s;
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    margin-bottom:20px;

}

.card{
    transition:.3s;

}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.card-button{
    display:inline-block;
    margin-top:15px;
    color:#80665a;
    text-decoration:none;
    font-weight:bold;

}

.hero-button:hover{
    background:#a17f6e;
}

.values{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;

    max-width:1100px;
    margin:80px auto;

    padding:0 20px;
}

.value{
    flex:1;
    min-width:250px;

    background:white;

    padding:30px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 8px 25px rgba(120,90,70,.08);
}

.value h3{
    color:#80665a;
    font-weight:normal;
}

.value p{
    line-height:1.8;
}



/* ========================= */
/* PAGE AQUARELLES */
/* ========================= */

.page-title{
    text-align:center;
    padding:80px 20px 50px;
}

.page-title h1{
    font-size:3rem;
    font-weight:normal;
    color:#80665a;
    margin-bottom:10px;
}

.page-title p{
    font-size:1.1rem;
    color:#6d5a4f;
}

.products{
    max-width:1200px;
    margin:0 auto 100px;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

.product{
    background:white;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:0.3s;
}

.product:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.product img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.product h2{
    text-align:center;
    color:#80665a;
    font-weight:normal;
    margin-top:20px;
}

.price{
    text-align:center;
    font-size:1.3rem;
    color:#4b4038;
    margin:10px 0 25px;
}

.product a{
    display:block;
    width:180px;
    margin:0 auto 30px;
    padding:14px;
    text-align:center;
    background:#80665a;
    color:white;
    text-decoration:none;
    border-radius:40px;
    transition:.3s;
}

.product a:hover{
    background:#9a7d6c;
}

.tabs{
    display:flex;
    margin-bottom:30px;
}

.tab{
    flex:1;
    padding:15px;
    border:none;
    background:#f3ede8;
    color:#80665a;
    cursor:pointer;
    font-size:1rem;
    transition:.3s;
}

.tab.active{
    background:#80665a;
    color:white;
}

.tab:first-child{
    border-radius:12px 0 0 12px;
}

.tab:last-child{
    border-radius:0 12px 12px 0;
}

.product-options{
    margin:30px 0;
}

#reproduction select{
    width:100%;
    padding:12px;
    margin:20px 0;
    border-radius:10px;
    border:1px solid #ddd;
    font-size:1rem;
}

.buy-button{
    display:block;
    width:100%;
    padding:16px;
    margin-top:30px;

    background:#80665a;
    color:white;

    border:none;
    border-radius:50px;

    font-size:1rem;
    cursor:pointer;

    transition:.3s;
}

.buy-button:hover{
    background:#9a7d6c;
}


/* ========================= */
/* PAGE PRODUIT */
/* ========================= */

.product-page{

    display:flex;
    gap:50px;
    align-items:flex-start;

}

.product-image{

    flex:1;

}

.product-image img{

    width:100%;
    max-width:500px;
    height:auto;

    border-radius:18px;

    display:block;

}

.product-info{

    flex:1;

}


/* ========================= */
/* JAVA SCRIPT */
/* ========================= */

.tab-content{
    display:none;
}

.tab-content.active{
    display:block;
}


.quantity-controls{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin:15px 0;

}

.quantity-controls button{

    width:35px;
    height:35px;
    border:none;
    border-radius:50%;
    background:#80665a;
    color:white;
    cursor:pointer;
    font-size:1.2rem;
    transition:.3s;

}

.quantity-controls button:hover{
    background:#a17f6e;

}

.cart-item{

    display:flex;
    align-items:center;
    gap:20px;
    background:white;
    padding:20px;
    margin-bottom:20px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.cart-image{

    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:12px;

}


#cart-link{

    display:flex;
    align-items:center;
    gap:6px;

    font-weight:bold;

}

#cart-count{

    background:#80665a;
    color:white;

    width:22px;
    height:22px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:.85rem;

}


/* ========================= */
/* TOAST */
/* ========================= */

#toast{

    position:fixed;

    bottom:30px;
    right:30px;

    background:#80665a;
    color:white;

    padding:18px 28px;

    border-radius:12px;

    box-shadow:0 8px 25px rgba(0,0,0,.2);

    opacity:0;

    transform:translateY(30px);

    transition:.35s;

    pointer-events:none;

    z-index:9999;

}

#toast.show{

    opacity:1;

    transform:translateY(0);

}


/* ========================= */
/* MINI PANIER */
/* ========================= */

.mini-cart{

    position:fixed;

    top:80px;
    right:20px;

    width:320px;

    background:white;

    border-radius:18px;

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

    padding:20px;

    display:none;

    z-index:9999;

}

.mini-cart.open{

    display:block;

}

.mini-cart h3{

    margin-top:0;

    color:#80665a;

}

.mini-cart-button{

    display:block;

    margin-top:20px;

    text-align:center;

    padding:12px;

    background:#80665a;

    color:white;

    text-decoration:none;

    border-radius:30px;

}




