/* ===============================
   КОНТЕЙНЕР
================================ */

.catalog-container{
max-width:1200px;
margin:auto;
padding:20px;
}



/* ===============================
   ГОЛОВНЕ ФОТО
================================ */

.catalog-main-image img{
width:100%;
border-radius:6px;
}



/* ===============================
   ГАЛЕРЕЯ
================================ */

.catalog-gallery{
display:flex;
gap:10px;
margin-top:10px;
flex-wrap:wrap;
}

.catalog-gallery img{
width:120px;
border-radius:4px;
cursor:pointer;
}



/* ===============================
   ІКОНКИ СЕРВІСІВ
================================ */

.catalog-services{
display:flex;
gap:10px;
margin:20px 0;
}

.catalog-services img{
width:26px;
height:26px;
}



/* ===============================
   GRID
================================ */

.catalog-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:40px;
}



/* ===============================
   ПРАВА КОЛОНКА
================================ */

.catalog-box{
background:#f7f7f7;
padding:20px;
border-radius:6px;
margin-bottom:20px;
}



/* ===============================
   КНОПКИ
================================ */

.booking-btn{
display:block;
background:#0071c2;
color:white;
text-decoration:none;
padding:12px;
margin-top:10px;
text-align:center;
border-radius:4px;
}

/* ===============================
   ГАЛЕРЕЯ
================================ */

.catalog-gallery{
display:flex;
flex-wrap:wrap;
gap:10px;
margin:20px 0;
}

.catalog-gallery img{
width:150px;
height:auto;
border-radius:6px;
}

.catalog-gallery-main img{
width:100%;
border-radius:6px;
margin-bottom:10px;
}

.catalog-gallery-thumbs{
display:flex;
gap:10px;
flex-wrap:wrap;
}

.catalog-gallery-thumbs img{
width:120px;
cursor:pointer;
border-radius:4px;
transition:0.2s;
}

.catalog-gallery-thumbs img:hover{
opacity:0.7;
}


#catalog-lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

#catalog-lightbox img{
max-width:90%;
max-height:90%;
}

#catalog-lightbox-close{
position:absolute;
top:30px;
right:40px;
color:white;
font-size:40px;
cursor:pointer;
}

.catalog-thumb{
cursor:pointer;
}