.am-2a15ce93-nav-container {
    width: 100%;
    font-family: inherit;
}

.am-2a15ce93-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.am-2a15ce93-item {
    position: relative;
    list-style: none;
}

.am-2a15ce93-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
    color: inherit;
}

.am-2a15ce93-link:hover {
    background: rgba(0, 0, 0, 0.03);
}

.am-2a15ce93-title {
    font-weight: 600;
    color: #111;
    transition: color 0.3s ease;
    margin-bottom: 4px;
}

.am-2a15ce93-desc {
    font-size: 0.85em;
    color: #666;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(0);
}

.am-2a15ce93-link:hover .am-2a15ce93-desc {
    opacity: 1;
    transform: translateX(3px);
}

/* Dropdown */
.am-2a15ce93-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 12px;
    list-style: none;
    margin: 0;
    z-index: 99;
    
    /* Animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.98);
    transform-origin: top left;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.am-2a15ce93-item.has-dropdown:hover > .am-2a15ce93-dropdown,
.am-2a15ce93-item.has-dropdown:focus-within > .am-2a15ce93-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px) scale(1);
}

.am-2a15ce93-sub-item {
    list-style: none;
    margin-bottom: 5px;
}
.am-2a15ce93-sub-item:last-child {
    margin-bottom: 0;
}

.am-2a15ce93-sub-link {
    padding: 10px 14px;
}

.am-2a15ce93-sub-link:hover {
    background: rgba(0, 0, 0, 0.04);
}