/* ------------------------------------------------------------
   RESET
------------------------------------------------------------ */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'poppins', sans-serif;
}


/* ------------------------------------------------------------
   GLOBAL
------------------------------------------------------------ */

.container{
margin:auto;
padding:0 20px;
}

/* SECTION */

.fh-product{
padding:160px 20px;
background:white;
}

.fh-product-grid{
max-width:1400px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

/* IMAGE */

.fh-main-image{
width:100%;
border-radius:20px;
}

.fh-gallery-row{
display:flex;
gap:10px;
margin-top:15px;
}

.fh-thumb{
width:80px;
height:80px;
object-fit:cover;
border-radius:10px;
cursor:pointer;
opacity:0.6;
transition:0.25s;
}

.fh-thumb.active{
opacity:1;
outline:2px solid #113356;
}

/* TEXTE */

.fh-label{
font-size:12px;
letter-spacing:2px;
color:#F2B705;
margin-bottom:10px;
}

.fh-title{
font-size:2.5em;
color:#113356;
margin-bottom:20px;
}

.fh-text{
color:#555;
line-height:1.7;
margin-bottom:25px;
}

/* PRIX */

.fh-price{
font-size:2.5em;
font-weight:700;
color:#113356;
margin-bottom:25px;
}

.fh-hour{
font-size:0.45em;
color:#666;
}

/* DURATIONS */

.fh-durations{
display:flex;
gap:10px;
margin-bottom:30px;
}

.fh-duration{
padding:10px 16px;
border-radius:10px;
border:1px solid #ddd;
background:white;
cursor:pointer;
transition:0.25s;
}

.fh-duration.active{
background:#113356;
color:white;
}

/* BOUTONS */

.fh-actions{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.fh-btn{
padding:12px 22px;
border-radius:14px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.fh-btn-primary{
background:#113356;
color:white;
}

.fh-btn-primary:hover{
background:#F2B705;
color:#113356;
}

.fh-btn-secondary{
background:#F3F2F2;
color:#113356;
}

.fh-btn-secondary:hover{
background:#F2B705;
}

/* IMAGE WRAPPER */

.fh-image-wrapper{
position:relative;
overflow:hidden;
border-radius:20px;
}

/* IMAGE PRINCIPALE */

.fh-main-image{
width:100%;
display:block;
border-radius:20px;
transition:opacity .4s ease;
}

/* MINIATURES */

.fh-gallery-row{
display:flex;
justify-content:center;
gap:10px;
margin-top:15px;
flex-wrap:wrap;
}

.fh-thumb{
width:50px;
height:50px;
object-fit:cover;
border-radius:8px;
cursor:pointer;
opacity:0.6;
transition:.25s;
}

.fh-thumb.active{
opacity:1;
outline:2px solid #113356;
}

.fh-thumb:hover{
opacity:1;
transform:scale(1.05);
}

/* FLECHES */

.fh-arrow{

position:absolute;
top:50%;
transform:translateY(-50%);

background:rgba(0,0,0,0.00);
color:white;

border:none;

width:40px;
height:40px;

border-radius:50%;

cursor:pointer;

font-size:20px;

display:flex;
align-items:center;
justify-content:center;

transition:0.25s;

}

.fh-prev{
left:10px;
}

.fh-next{
right:10px;
}

/* ------------------------------------------------------------
TABLETTE
------------------------------------------------------------ */

@media(max-width:1024px){

.fh-product{
padding:120px 20px;
}

.fh-product-grid{
grid-template-columns:1fr;
gap:50px;
text-align:center;
}

.fh-title{
font-size:2.2em;
}

.fh-text{
max-width:650px;
margin:auto;
}

.fh-durations{
justify-content:center;
flex-wrap:wrap;
}

.fh-actions{
justify-content:center;
}

.fh-gallery-row{
justify-content:center;
}

}

/* ------------------------------------------------------------
TABLETTE
------------------------------------------------------------ */

@media (max-width:1024px){

.fh-product{
padding:120px 20px;
}

.fh-product-grid{
display:flex;
flex-direction:column;
gap:40px;
}

.fh-product-info{
text-align:center;
}

.fh-durations{
justify-content:center;
flex-wrap:wrap;
}

.fh-actions{
justify-content:center;
}

.fh-gallery-row{
justify-content:center;
}

}

/* ------------------------------------------------------------
MOBILE
------------------------------------------------------------ */

@media (max-width:600px){

.fh-title{
font-size:1.9em;
}

.fh-text{
font-size:0.95em;
}

.fh-price{
font-size:2em;
}

.fh-thumb{
width:50px;
height:50px;
}

.fh-actions{
flex-direction:column;
align-items:center;
gap:12px;
}

.fh-btn{
width:100%;
max-width:280px;
display:flex;
justify-content:center;
}

.fh-btn i{
display:none;
}

}

/* ------------------------------------------------------------
Flight step
------------------------------------------------------------ */

