/* ============ Floating Design Switcher ============ */
.design-switcher {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    direction: rtl;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
}
.design-switcher .switcher-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13.5px;
    font-weight: 700;
    margin-left: 12px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}
.design-switcher .switcher-title i {
    color: #eab308;
}
.design-switcher .switcher-btn {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    white-space: nowrap;
}
.design-switcher .switcher-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
.design-switcher .switcher-btn.active {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    font-weight: 700;
}
@media (max-width: 900px) {
    .design-switcher {
        width: 95%;
        max-width: 500px;
        overflow-x: auto;
        border-radius: 20px;
        bottom: 16px;
        padding: 8px 12px;
        justify-content: flex-start;
    }
    .design-switcher::-webkit-scrollbar {
        display: none;
    }
    .design-switcher .switcher-title {
        display: none;
    }
}
