:root{
--cyan:#00b7ff;
--cyan-dark:#0098d6;
--light:#f4fbff;
--dark:#16354b;
}
{
margin:0;
padding:0;
box-sizing:border-box;
font-family:-apple-system,BlinkMacSystemFont,sans-serif;
}
body{
background:var(--light);
color:var(--dark);
}
/* CONTAINER */
.container{
max-width:430px;
margin:auto;
background:white;
min-height:100vh;
}
/* HEADER */
.topbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px;
background:white;
position:sticky;
top:0;
z-index:100;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}
/* PANIER HEADER */
.topbar div span{
font-weight:bold;
}
/* PHONE BUTTON */
.phone{
text-decoration:none;
color:white;
background:var(--cyan);
padding:10px 14px;
border-radius:25px;
font-weight:bold;
}
/* HERO */
.hero{
position:relative;
}
.hero img{
width:100%;
height:360px;
object-fit:cover;
display:block;
}
.overlay{
position:absolute;
bottom:0;
left:0;
right:0;
padding:25px;
background:linear-gradient(transparent,rgba(0,0,0,.85));
color:white;
}
.overlay h1{
font-size:26px;
font-weight:800;
}
.price{
font-size:28px;
font-weight:900;
margin-top:8px;
color:#00ffcc;
}
/* BADGES */
.badges{
display:flex;
justify-content:space-around;
padding:15px;
text-align:center;
}
.badge{
font-size:13px;
font-weight:700;
}
/* INFO BOXES */
.counter,
.reward{
margin:12px;
padding:12px;
background:#e9f9ff;
border-radius:12px;
font-weight:600;
text-align:center;
}
/* SECTION */
.section{
padding:18px;
}
.section-title{
text-align:center;
margin-bottom:15px;
font-size:20px;
font-weight:800;
}
/* REVIEWS */
.review{
background:white;
padding:15px;
border-radius:12px;
box-shadow:0 0 10px rgba(0,0,0,.08);
margin-bottom:12px;
}
.review strong{
display:block;
margin-bottom:5px;
}
/* STARS DISPLAY */
.stars{
display:flex;
justify-content:center;
gap:6px;
font-size:24px;
cursor:pointer;
margin:10px 0;
}
.star{
color:#ccc;
transition:0.2s;
}
.star.active{
color:gold;
}
/* INPUTS */
form{
padding:18px;
}
input,
select,
textarea{
width:100%;
padding:12px;
margin-top:6px;
margin-bottom:12px;
border-radius:10px;
border:1px solid #ccc;
font-size:15px;
outline:none;
}
label{
font-weight:700;
}
/* BUTTON */
.submit-btn{
width:100%;
padding:16px;
background:var(--cyan);
color:white;
font-size:18px;
font-weight:bold;
border:none;
border-radius:12px;
cursor:pointer;
transition:0.2s;
}
.submit-btn:hover{
background:var(--cyan-dark);
}
/* BUY ME COFFEE */
.coffee{
text-align:center;
margin-top:12px;
padding-bottom:20px;
}
.coffee a{
color:var(--cyan);
font-weight:bold;
text-decoration:none;
font-size:15px;
}
/* IMAGE PREVIEW */
#preview{
display:none;
width:100%;
border-radius:10px;
margin-top:10px;
}
/* FOOTER */
.footer{
text-align:center;
padding:20px;
font-size:12px;
color:#777;
}