﻿

.store-admin-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(0,0,0,0.78);
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    font-weight: 600;
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

.store-admin-fab:hover {
    color: #fff;
    background: rgba(59,130,246,0.85);
    border-color: rgba(59,130,246,0.65);
    text-decoration: none;
}

.row-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.filter-gallery-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.menu-filter-gallery {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 4px 2px;
}

.menu-filter-btn,
.filter-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 14px;
    padding: 10px 10px 8px;
    cursor: pointer;
    transition: transform 0.18s ease;
    flex: 0 0 auto;
}

    .menu-filter-btn:hover,
    .filter-button:hover {
        transform: scale(1.05);
    }

.button-image {
    width: 92px;
    height: 92px;
    overflow: hidden;
    margin-bottom: 6px;
    border-radius: 14px;
}

    .button-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 14px;
        display: block;
    }

.menu-filter-btn span {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-top: 4px;
    white-space: nowrap;
}

.filter-button span {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-top: 4px;
    white-space: nowrap;
}

.menu-filter-btn.active span {
    color: #f39c12;
}

@media (max-width: 768px) {
    .menu-filter-gallery {
        gap: 10px;
    }

    .button-image {
        width: 86px;
        height: 86px;
        margin-bottom: 6px;
    }

    .menu-filter-btn,
    .filter-button {
        padding: 10px 10px 8px;
        border-radius: 14px;
    }

    .menu-filter-btn span,
    .filter-button span {
        display: block;
        font-size: 12px;
        font-weight: 700;
        margin-top: 2px;
        max-width: 92px;
        white-space: normal;
        line-height: 1.15;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}



