
/* Style untuk navigasi produk auto toggle */
.auto-toggle-nav {
    position: fixed;
    right: 0;
    top: 150px;
    background-color: white;
    border-radius: 10px 0 0 10px;
    box-shadow: -2px 2px 15px rgba(0,0,0,0.1);
    z-index: 9999;
    border-left: 3px solid #34c3a6;
    overflow: hidden;
    transition: all 0.5s ease;
}

.auto-toggle-nav.collapsed .product-label {
    opacity: 0;
    width: 0;
    display: none;
}

.auto-toggle-nav.collapsed {
    width: 65px;
}

.auto-toggle-nav {
    width: 220px;
}

.product-nav-header {
    background: linear-gradient(135deg, #34c3a6 0%, #6a67ce 100%);
    color: white;
    padding: 12px 15px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.product-nav-links {
    display: flex;
    flex-direction: column;
}

.product-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #555;
    transition: all 0.2s;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
}

.product-link:hover {
    background-color: rgba(52, 195, 166, 0.1);
}

.product-link.active {
    background-color: rgba(52, 195, 166, 0.15);
    color: #34c3a6;
}

.product-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(52, 195, 166, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.product-icon i {
    font-size: 20px;
    color: #34c3a6;
}

.product-label {
    font-size: 14px;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

/* Responsif styling */
@media (max-width: 767px) {
    .auto-toggle-nav {
    width: 65px;
    }
    
    .auto-toggle-nav .product-label {
    display: none;
    }
}