
.woo-icon-toggle-btn {
    display: none;
    background: #000;
    color: #fff;
    padding: 10px 15px;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    margin: 10px;
    z-index: 1000;
}

.woo-icon-slidein, .woo-icon-overlay {
    display: none;
}

.woo-icon-slidein {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: left 0.3s ease-in-out;
    padding: 60px 20px 20px;
    overflow-y: auto;
}

.woo-icon-slidein.open {
    left: 0;
}

.woo-icon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}

.woo-icon-overlay.show {
    display: block;
}

.woo-icon-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

.woo-icon-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.woo-icon-item {
    width: 80px;
    text-align: center;
    color: #333;
    text-decoration: none;
}

.woo-icon-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin-bottom: 5px;
}

.woo-icon-section h3 {
    text-align: center;
    margin: 15px 0 10px;
}

@media (max-width: 768px) {
    .woo-icon-toggle-btn {
        display: block;
    }

    .woo-icon-slidein {
        display: block;
    }
}

@media (min-width: 769px) {
    .woo-icon-toggle-btn {
        display: none;
    }

    .woo-icon-slidein {
        position: static;
        display: block !important;
        padding: 0;
        background: none;
        overflow: visible;
    }

    .woo-icon-overlay, .woo-icon-close-btn {
        display: none !important;
    }

    .woo-icon-section {
        margin: 0 0 20px;
    }
}
