/* CSS Document */
/* =========================
   SCROLL TO TOP BUTTON
========================= */

.scroll-top{
    position: fixed;
    right: 15px;
    bottom: 100px;

    width: 56px;
    height: 56px;

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

    border-radius: 50%;
    border: 2px solid #c8a96a;
    background: rgba(255,255,255,0.15);

    color: #c8a96a;
    font-size: 26px;
    font-weight: bold;

    text-decoration: none;

    z-index: 99999;
    backdrop-filter: blur(6px);
}
.scroll-top:hover{
    background:#c8a96a;
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(184,155,94,.35);
}

/* MOBILE */
@media (max-width: 768px){
    .scroll-top{
        width: 60px;
        height: 60px;
        font-size: 30px;
        bottom: 110px;
        right: 12px;
    }
}
/* =========================
   FLOATING BUTTONS
========================= */

.floating-buttons{
    position:fixed;
    right:18px;
    bottom:22px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

.float-btn{
    width:56px;
    height:56px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;

background:rgba(255,255,255,.18);
    border:2px solid #c8a96a;

    color:#7a6540;
    text-decoration:none;

    font-size:24px;
    font-weight:normal;

    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);

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

    transition:.3s ease;
}

.float-btn:hover{
    background:#c8a96a;
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(184,155,94,.35);
}

/* ????????? */

@media (max-width:768px){

    .floating-buttons{
        right:12px;
        bottom:16px;
        gap:10px;
    }

    .float-btn{
        width:52px;
        height:52px;
        font-size:22px;
    }

}
/* =========================
   FIX FLOATING BUTTONS MOBILE + DESKTOP
========================= */

.floating-buttons {
    position: fixed;
    right: 18px;
    bottom: 22px;
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    z-index: 999999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* MOBILE FIX (?????? ?? ????????!) */
@media (max-width: 768px) {

    .floating-buttons {
        display: flex !important;
        right: 12px;
        bottom: 16px;
        gap: 10px;
    }

    .float-btn {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
}

/* Video */
.video-box{
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 20px auto;
    aspect-ratio: 16/9;
}

.video-box iframe{
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
}
.video-box iframe{
    width:100%;
    max-width:100%;
}
html, body{
    overflow-x:hidden !important;
}
