#portfolio-sidebar-popup-button {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: #fff;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    padding: 14px 32px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
}

#portfolio-sidebar-popup {
    display: none;
    position: fixed;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 350px;
    width: 92vw;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.23);
    border-radius: 16px;
    z-index: 10000;
    animation: sodaSidebarFadeIn 0.35s;
}

@keyframes sodaSidebarFadeIn {
    from { opacity: 0; transform: translateX(-50%) scale(0.98);}
    to { opacity: 1; transform: translateX(-50%) scale(1);}
}

.portfolio-sidebar-popup-inner {
    padding: 18px 16px 24px 16px;
    max-height: 70vh;
    overflow-y: auto;
}

#portfolio-sidebar-popup-close-button {
    position: absolute;
    top: 11px;
    right: 14px;
    font-size: 26px;
    color: #333;
    text-decoration: none;
    background: transparent;
}

.portfolio-sidebar-popup-buttons {
    margin-top: 18px;
    text-align: right;
}

#portfolio-widgets-ul {
    margin: 0;
    padding: 0;
}
#portfolio-widgets-ul li {
    cursor: pointer;
    transition: background 0.1s;
    padding: 8px 0;
    list-style: none;
    margin: 0;
}

#portfolio-widgets-ul li:hover {
    background: #f6f6f6;
}

.elementor-filter-btn {
    position: relative;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
    outline: none;
    width: 100%;
}

.elementor-filter-btn .normal-text,
.elementor-filter-btn .hover-text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.elementor-filter-btn .normal-text {
    transform: translatey(0px);
    position: absolute;
    transition: transform .6s ease;
}

.elementor-filter-btn .hover-text {
    transition: transform .6s ease;
}

.elementor-filter-btn:hover .normal-text {
    position: absolute;
    transition: transform .6s ease;
}

.elementor-filter-btn:hover .hover-text {
    position: absolute;
    transform: translatey(0px) !important;
    transition: transform .6s ease;
}

span.button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
