.sticky-mobile-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #FFFFFF;
    border-radius: 6px 6px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px 0 25px;
    font-family: "Monserrat", Sans-serif !important;
}

.sticky-mobile-menu-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.sticky-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    color: #2F2F2F;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 70px;
}

.sticky-menu-item:active {
    transform: scale(0.95);
}

.sticky-menu-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sticky-menu-icon svg,
.sticky-menu-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.sticky-menu-icon svg {
    stroke: #000000;
    stroke-width: 1.5;
    fill: none;
}

.sticky-menu-text {
    font-size: 10px;
    font-weight: 400;
    color: #000000;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Active state - show label and make icon bigger */
.sticky-menu-item.active .sticky-menu-text {
    opacity: 1;
    visibility: visible;
    max-height: 20px;
}

.sticky-menu-item.active .sticky-menu-icon {
    width: 28px;
    height: 28px;
}

/* Central Prices Button - positioned above menu, no link/redirect */
.sticky-menu-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
    width: 70px;
    height: 70px;
    background: #D1C5B5;
    border-radius: 6px;
    border: none;
    padding: 0;
    font: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
    text-decoration: none;
    color: #000000;
    transition: all 0.3s ease;
}

.sticky-menu-center:hover,
.sticky-menu-center:focus {
    background: #D1C5B5;
    color: #000000;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.sticky-menu-center:hover .sticky-menu-center-text,
.sticky-menu-center:focus .sticky-menu-center-text {
    color: #2F2F2F80;
}

.sticky-menu-center:active {
    transform: translateX(-50%) scale(0.95);
}

.sticky-menu-center-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 2px;
}

.sticky-menu-center-icon svg,
.sticky-menu-center-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sticky-menu-center-icon svg {
    stroke: #2F2F2F80;
    stroke-width: 1.5;
    fill: none;
}

.sticky-menu-center-text {
    font-size: 12px;
    font-weight: 500;
    color: #2F2F2F80;
}

/* Кликът винаги да остава върху бутона, не върху децата (избягваме редирект от други скриптове) */
.sticky-menu-center .sticky-menu-center-icon,
.sticky-menu-center .sticky-menu-center-text {
    pointer-events: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
    .sticky-mobile-menu {
        display: block;
        z-index: 99999;
    }
}
