/* =============================================================================
   STICKY DOCK NAVIGATION
   ============================================================================= */

/* Ascunse implicit (vor fi afișate doar pe mobil) */
.sticky-dock {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 99;
    pointer-events: none;
}

.sticky-dock--top {
    top: 0;
}

.sticky-dock--bottom {
    bottom: 0;
}

@media (max-width: 991.98px) {
    .sticky-dock {
        display: block;
    }

    body.sticky-dock-bottom-enabled {
        padding-bottom: 56px;
    }
}

.sticky-dock__wrap {
    box-shadow: 0 0 10px rgba(0, 0, 0, 1);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    max-height: 45vh;
    overflow: auto;
    background: #fff;
    pointer-events: auto;
    padding: 0;
}

.sticky-dock__btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 14px;
    font-size: 1.8rem;
    font-family: 'Segoe Script', cursive;
    font-weight: 700;
    background: #fff !important;
    color: #ff8400 !important;
    border: none;
    border-bottom: 1px dashed rgba(216, 116, 0, .25);
    text-decoration: none;
    letter-spacing: .2px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .7);
    cursor: pointer;
}

.sticky-dock__btn:hover {
    background: #fff !important;
    text-decoration: none;
    color: #ff8400 !important;
}

.sticky-dock--top .sticky-dock__btn.is-active {
    border-bottom: none;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .7);
    background: #fff !important;
}

html {
    scroll-behavior: smooth;
}

@media print {
    .sticky-dock {
        display: none !important;
    }
}
